[Flashcoders] to get last browsed web page before current

2007-02-07 Thread mac
Hello, Do you know how to get last browsed web page before current ? Is it possible to request it from web browser or it should be used any trick. Do you have any idea ? best regards Maciek ___ Flashcoders@chattyfig.figleaf.com To change your

RE: [Flashcoders] to get last browsed web page before current

2007-02-07 Thread Rost, Andrew
I'm not a huge JavaScript person, but we use: getURL(javascript:history.back();); Andrew -Original Message- From: Jim Berkey [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 2:43 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] to get last browsed web

Re: [Flashcoders] to get last browsed web page before current

2007-02-07 Thread Jason Boyd
This has disadvantage that if the user has javascript disabled, might fail silently. Though I know of no other way to do this. On 2/7/07, Jim Berkey [EMAIL PROTECTED] wrote: I've used this on a flash button embedded in an html page with success: on (release) {

Re: [Flashcoders] to get last browsed web page before current

2007-02-07 Thread Mick G
If you have access to PHP you can use http referrer (which isn't 100% effective, but one of the better solutions) $ENV{'HTTP_REFERER'} I'm not sure how well that will work with a Flash application but potentially you could send that to flash via a flashvar in PHP from your page. On 2/7/07,