On(press) refresh page

is there a way to refresh the browser window on press of a button?

I guess there is, try this :

[AS]on (release){
getURL(“java script:history.go();”);
}[/AS]

Remove the space between java & script
If this doesn’t work you could also use FSCommand :slight_smile:

nope, didn’t work

And how about using FSCommand ? That should work, and you can find a refresh page javascript everywhere on the internet :slight_smile:


on (release){
        getURL("java**script:history.go();");
}

should do it :-\

… you could also try


on (release){
	getURL("java**script:location.reload();");
}

Yep sen, was about to tell that too but couldn’t remember the code anymore :slight_smile: You could also try this:

[AS]on (release){
getURL(“java**script:window.location.replace(pageyouwanttorefresh);”)
}[/AS]

Again, remove the space between java & script.
Basically has the same effect as refreshing. [EDIT] Hey sen, how do you make it display javascript, when I type javascript it changes to about

because Im a mod and a genius! :beam:
:wink:

Hehe :slight_smile: Wondering if it worked out for shuga …

getURL("java****script:senocular();");

i’m not a mod, i’m not genius… then tell me why i can do that!? :stuck_out_tongue:

Yes, got it to work :beam: ! [EDIT] Hey sen, did you edit my post ? 'cause suddenly the space is gone :beam:

yeah I did :slight_smile: I thought maybe you would try to edit it to see whats changed (if not figure out for yourself or not quoting mine)

:beam:

i did get it to work … thanks for all the help =)