Can't get URL [Solved]
Posted: Fri Jan 22, 2016 7:47 am
Hi all,
I experimenting get url function. It is working as expected in Android and desktop platforms but it doesn't get any url in iOS. It only shows blank. here is my code..if it's a bug what LC version would be better option?
Tested device: iphone 5
xcode 7.1.1
LC 6.7.8
Cheers,
Louis
I experimenting get url function. It is working as expected in Android and desktop platforms but it doesn't get any url in iOS. It only shows blank. here is my code..if it's a bug what LC version would be better option?
Tested device: iphone 5
xcode 7.1.1
LC 6.7.8
Code: Select all
on mouseUp
local tURL, pConnectivity
put url "http://www.google.com" into tURL
if tURL is empty then
put false into pConnectivity---no connection
else
put true into pConnectivity--connected
end if
answer pConnectivity
end mouseUp
Louis