Error while using revBrowserOpen

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
shalu
Posts: 72
Joined: Fri Mar 20, 2015 1:05 pm

Error while using revBrowserOpen

Post by shalu » Fri Jun 26, 2015 9:48 am

I am beginner in livecode, while executing the following code "revBrowserOpen(the windowid of this stack,"") into myBrowser" error has occurred. How I solve this error, and I am using linux os

Code: Select all

   global myBrowser

        on browserOpen
                if myBrowser is empty then
                     put revBrowserOpen(the windowid of this stack,"") into myBrowser
                end if
                revBrowserSet myBrowser, "showborder","true"
                revBrowserSet myBrowser, "visible","true"
                revBrowserSet myBrowser, "rect",rect of image "bwin"
        end browserOpen

        on browserClose
                revBrowserClose myBrowser
                put empty into myBrowser
        end browserClose
--
Thanks
Shalu S

LCNeil
Livecode Staff Member
Livecode Staff Member
Posts: 1223
Joined: Wed Oct 03, 2012 4:07 pm

Re: Error while using revBrowserOpen

Post by LCNeil » Fri Jun 26, 2015 9:52 am

HI Shalu,

revBrowser has not yet been implemented on Linux. This is why you will be experiencing this error. The new LiveCode CEF browser framework is currently being ported to Linux, so this should resolve the issue in the near future

Kind Regards,

Neil Roger
--
LiveCode Support Team ~ http://www.livecode.com
-

shalu
Posts: 72
Joined: Fri Mar 20, 2015 1:05 pm

Re: Error while using revBrowserOpen

Post by shalu » Thu Sep 24, 2015 12:48 pm

Hi All,

I am using Linux system. IN the new version of Livecode 8 revBrowser available or not?

Thanks
Shalu
--
Thanks
Shalu S

Post Reply