Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Glen Pike

Hi,

  Sorry, my last email to the list had a typo:

  //Wrong!
 // == for comparison!!
 if (video1 *==* video){
this.videoLoader.gotoAndPlay(2);
 }

  //Right
  // == for comparison!!
 if (video1 == video){
this.videoLoader.gotoAndPlay(2);
 }

  Glen

Gustavo Duenas wrote:
it seems not to work and the flash told me that *= must be followed by 
an operand


would you write me the whole code, the one for the swfobject and the 
one for the flash...I'd appreciate.



Gustavo
On Jan 24, 2007, at 5:17 PM, Glen Pike wrote:


so.addVariable("myvar" is video)

Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be 
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar" 
is nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function 
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp 
examples on google)


look at the url then in flash i have sn and fe variables that will 
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that 
whatever.com/flash.swf?var1=value1&var2=value2&varn=valuen (its 
ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I 
use this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
 VALUE=false>  VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila" 
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___




___
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] passing url variables to flash movie

2007-01-24 Thread Hairy Dog Digital
Remove the asterisks (*) from before and after the double equals sign. The
line should be:

if (video1 == video) {

not

if (video1 *==* video) {

The asterisks were probably there to highlight the correction. That is, it
should be a double equal sign for an "is equal to" comparison; as opposed to
a single equal sign, which is used to assign a value.
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gustavo
Duenas
Sent: Wednesday, January 24, 2007 5:39 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] passing url variables to flash movie

thi is the message now is giving me

error!!

Operator '*=' must be followed by an operand


and this is the action script I'm using:

var video1 = nbc6;
var video = _root.video;
if (video1 *==* video){
   this.videoLoader.gotoAndPlay(2);
}



the link in the text said;


fullpage.html?video=nbc6


Thanks


Gustavo

___
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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
it seems not to work and the flash told me that *= must be followed  
by an operand


would you write me the whole code, the one for the swfobject and the  
one for the flash...I'd appreciate.



Gustavo
On Jan 24, 2007, at 5:17 PM, Glen Pike wrote:


so.addVariable("myvar" is video)

Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be  
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue 
("myurlvar" is nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in  
function that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many  
simple .asp examples on google)


look at the url then in flash i have sn and fe variables that  
will be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I  
use this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
 VALUE=false>  NAME=bgcolor VALUE=#FF> menu=false quality=high bgcolor=#FF  WIDTH="100%"  
HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___




___
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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas

thi is the message now is giving me

error!!

Operator '*=' must be followed by an operand


and this is the action script I'm using:

var video1 = nbc6;
var video = _root.video;
if (video1 *==* video){
  this.videoLoader.gotoAndPlay(2);
   }



the link in the text said;


fullpage.html?video=nbc6


Thanks


Gustavo

___
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] passing url variables to flash movie

2007-01-24 Thread Glen Pike

Hi,

   Apologies for the last email - overexcitable mouse finger...

   so.addVariable("video", getQueryParamValue("video"));

   ActionScript.

   // == for comparison!!
   if (video1 *==* video){
  this.videoLoader.gotoAndPlay(2);
   }
}
Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be 
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar" is 
nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function 
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp 
examples on google)


look at the url then in flash i have sn and fe variables that will 
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that 
whatever.com/flash.swf?var1=value1&var2=value2&varn=valuen (its ugly 
but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use 
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
  
  
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






 


Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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

Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Glen Pike

so.addVariable("myvar" is video)

Gustavo Duenas wrote:
thanks man, I'm using swfobject to have my swf ...this would be 
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar" is 
nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function 
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp 
examples on google)


look at the url then in flash i have sn and fe variables that will 
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that 
whatever.com/flash.swf?var1=value1&var2=value2&varn=valuen (its ugly 
but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use 
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
  
  
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






 


Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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



Gus

Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
thanks man, I'm using swfobject to have my swf ...this would be  
greatbut if my libnk is

fullpage.html?video=nbc6

the so.addVariable("myvar" is video), getQueryParamValue("myurlvar"  
is nbc6) right?



and it is correct the code ffor the action script ?


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}



regards





On Jan 24, 2007, at 4:29 PM, Geoff Stearns wrote:


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function  
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I  
use this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> quality=high bgcolor=#FF  WIDTH="100%" HEIGHT="100%"  
NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






__ 
__

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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
h

Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Thomas Fowler

Was wondering when Geoff would chime in on that ;)

- Original Message -
From: "Geoff Stearns" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, January 24, 2007 3:29 PM
Subject: Re: [Flashcoders] passing url variables to flash movie


wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function  
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila"  
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






___ 
_

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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.c

Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas

and which is the code to read those in flash...actionscript I mean.


Regards


Gustavo
On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila"  
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






___ 
_

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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] passing url variables to flash movie

2007-01-24 Thread Geoff Stearns

wow you are all making this much harder than it has to be.

If you use SWFObject to embed your swfs, it has a built in function  
that grabs vars from the url string.


an example:

var so = new SWFOBject("mymovie.swf", "mymovie", ...);
so.addVariable("myvar", getQueryParamValue("myurlvar"));
so.addVariable("myothervar", getQueryParamValue("myotherurlvar"));
so.write("target");

get it here:
http://blog.deconcept.com/swfobject/




On Jan 24, 2007, at 4:12 PM, iashido wrote:

dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will  
be filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=print $_GET['fe']; ?>"> 

...
   
 VALUE=#FF> bgcolor=#FF  WIDTH="100%" HEIGHT="100%" NAME="voila"  
ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






___ 
_

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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] passing url variables to flash movie

2007-01-24 Thread iashido
dont know in asp (but on my prev research i found many simple .asp  
examples on google)


look at the url then in flash i have sn and fe variables that will be  
filled onfly when u swf its loaded


http://www.iashido.com/test/test.php?sn=34&fe=var2

u can use get them in swf like that whatever.com/flash.swf? 
var1=value1&var2=value2&varn=valuen (its ugly but works :)

or javascript might save your day (search archives/google)







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:48 PM, Gustavo Duenas wrote:

I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
   
   
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






 


Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


___
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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
I don't  think this guys have the phpdo you know how can I use  
this in html?



regards

Gustavo
On Jan 24, 2007, at 3:41 PM, iashido wrote:


sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
   
   
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






_ 
___

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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


Re: [Flashcoders] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas

mind you tell me how, I'm out of my league...


Thanks


Gustavo
On Jan 24, 2007, at 3:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






__ 
__

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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] passing url variables to flash movie

2007-01-24 Thread iashido

sometime i use this ald allways work:

... VALUE="voila.swf?sn=&fe=$_GET['fe']; ?>"> 

...
   
   
WIDTH="100%" HEIGHT="100%" NAME="voila" ALIGN="" ...


then i changes the .html into .php

and i have whatever.php?sn=value1&fe=value2

and i have in flash variable sn and fe and amm as many as u want


hope this is what ur looking for







itseveryday.ro
iashido.com



On Jan 24, 2007, at 10:26 PM, Joshua Sera wrote:


You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:


Hi Guys, I'm really concerned for this, Iknow this
might be easy for
you, but I'm knocking my head against the wall.
This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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






__ 
__

Looking for earth-friendly autos?
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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] passing url variables to flash movie

2007-01-24 Thread Joshua Sera
You need to pass the variables in the GET query to
flashvars in the object tag. You'll have to use
JavaScript to write out the object tag, and insert the
variables in the right place.


--- Gustavo Duenas <[EMAIL PROTECTED]>
wrote:

> Hi Guys, I'm really concerned for this, Iknow this
> might be easy for  
> you, but I'm knocking my head against the wall.
> This is the code in the action script:
> 
> 
> var video1 = nbc6;
> var video = _root.video;
> if (video1 = video){
>   tellTarget(this.videoLoader){
>   gotoAndPlay(2);
>   }
> }
> 
> 
> and this is the link in the text message:
> 
> fullpage.html?video=nbc6
> 
> I'd appreciate your help.
> 
> 
> 
> Thanks
> 
> 
> Gustavo Duenas
> ___
> 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
> 



 

Looking for earth-friendly autos? 
Browse Top Cars by "Green Rating" at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
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] passing url variables to flash movie

2007-01-24 Thread Gustavo Duenas
Hi Guys, I'm really concerned for this, Iknow this might be easy for  
you, but I'm knocking my head against the wall.

This is the code in the action script:


var video1 = nbc6;
var video = _root.video;
if (video1 = video){
tellTarget(this.videoLoader){
gotoAndPlay(2);
}
}


and this is the link in the text message:

fullpage.html?video=nbc6

I'd appreciate your help.



Thanks


Gustavo Duenas
___
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