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 page before current

I've used this on a flash button embedded in an html page with success:

on (release) {
getURL(javascript:window.history.go(-1));
}

jimbo

*** REPLY SEPARATOR  ***

On 2/7/2007 at 9:11 PM mac wrote:

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 subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

7

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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) {
getURL(javascript:window.history.go(-1));
}

jimbo

*** REPLY SEPARATOR  ***

On 2/7/2007 at 9:11 PM mac wrote:

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 subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

7

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


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, Jason Boyd [EMAIL PROTECTED] wrote:


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) {
 getURL(javascript:window.history.go(-1));
 }

 jimbo

 *** REPLY SEPARATOR  ***

 On 2/7/2007 at 9:11 PM mac wrote:

 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 subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

 7

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com