How to Forward Click to External Browser?
Posted: Mon Mar 26, 2012 4:36 pm
Hello
I like to know how to forward the links in revbrowser to a external browser like safari, i don't have too much experience using runrev. any ideas are welcome,
Thank You
Ron
local sBrowserId
put the windowid of this stack into tWinID
-- Open the browser, using the windowId and initial url
put revBrowserOpen(tWinID,"myweb com") into sBrowserId
-- Set some basic properties for the browser
revBrowserSet sBrowserId, "scrollbars", "false"
revBrowserSet sBrowserId, "showborder","false"
revBrowserSet sBrowserId, "rect",rect of img "campo_web"
revBrowserSet sBrowserId, "contextmenu", "false"
revBrowserSet sBrowserId, "newwindow", "false"
revBrowserSet sBrowserId, "messages", "true"
wait 100
revBrowserStop sBrowserId
I like to know how to forward the links in revbrowser to a external browser like safari, i don't have too much experience using runrev. any ideas are welcome,
Thank You
Ron
local sBrowserId
put the windowid of this stack into tWinID
-- Open the browser, using the windowId and initial url
put revBrowserOpen(tWinID,"myweb com") into sBrowserId
-- Set some basic properties for the browser
revBrowserSet sBrowserId, "scrollbars", "false"
revBrowserSet sBrowserId, "showborder","false"
revBrowserSet sBrowserId, "rect",rect of img "campo_web"
revBrowserSet sBrowserId, "contextmenu", "false"
revBrowserSet sBrowserId, "newwindow", "false"
revBrowserSet sBrowserId, "messages", "true"
wait 100
revBrowserStop sBrowserId