Hoping for ideas why the revBrowser is working correctly in livecode but not in the saved standalone.
I am running the browser on a substack, with just one image as the placeholder for the browser.
Calling the substack from the top menu with simply :
Code: Select all
go stack "wardenHelp"
Code: Select all
local tBrowserId
on openStack
put revBrowserOpen(the windowId of this stack, "http://www.garysimpson.co.uk/websitewarden_faq/") into tBrowserId
revBrowserSet tBrowserId, "rect", the rect of image "browser"
end openStack
on closeStack
revBrowserClose tBrowserId
end closeStack
I tested this with a new project by:
creating main stack with button to call substack
put the same image and code on substack
saved as standalone, and it works..
So why wont the same thing work in my main project..? mystified....