如何在livecode 8.1x中的iOS网页浏览器中捕获URL

时间:2017-09-20 06:30:20

标签: ios livecode

我很想LiveCode尝试为iOS构建一个Web浏览器应用程序,只打开一个特定的域名/网站。

我发现在最新的LiveCode 8.1x中为iOS构建一个Web浏览器非常简单但无法弄清楚如何捕获在网页中点击的URL并将其发送到默认的Web浏览器(如果该URL不在域中)

有谁知道怎么做?

1 个答案:

答案 0 :(得分:1)

当浏览器的网址发生变化时,我会检查域名。

例如:

on browserDocumentLoadBegin pUrl
   #test if domain if https://livecode.com
   if char 1 to 20 of pURL is not "https://livecode.com" then
      alert "wrong domain"
      set the URL of me to "www.livecode.com"      
   end if
end browserDocumentLoadBegin