Looking through the Android release notes it seems like a browser control should be easy enough to create (I've already got an iPhone version of my app running, just trying to make an Android version now).
I've got an on card open script as follows:
Code: Select all
on preOpenCard
if the environment is not "mobile" then
exit preOpenCard
end if
-- Create our browser control and store the id
mobileControlCreate "browser"
put the result into sBrowserId
-- Native controls start off invisible
mobilecontrolset sBrowserId, "visible", "true"
-- Set up a suitable initial url
mobilecontroldo sBrowserId, "load", "http://www.google.com"
-- Make sure everything is the right size
resizeStack
end preOpenCard
Many thanks
Dale