ID:141313
 
I have made a Skin Interface Browser button..now i need to make the verb for the Button to work so whats the code to open the browser?

Im upto here..
whats the part i need to open the Browser???

mob/verb
BrowserButton()
set hidden= 1
Look up browse().

Also, do you have a browser control as well? Is it set to the default?
In response to Vermolius
where do i go to look up browse()?

and how do i know if i have a browser controller? and know if its set to default?
In response to CoolieZaheer
mob/var
is_shown

mob/verb
BrowserToggle()
set hidden = 1
if (usr.is_shown)
usr.is_shown = 0
winshow(usr,"window.id",0)//Hides the browser, put the name of the window the browser is in, and the browser id where it says "window.id".
else // If the browser isn't shown..
usr.is_shown = 1
winshow(usr,"window.id",1)