[Flashcoders] Looking specifically for a miami Flash Coder for a small project.

2007-05-29 Thread Tristan Sunnrunner
If anyone is interested please get back to me. 

Thanks,
T

___
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] TEST

2007-02-22 Thread Sunnrunner
TEST

___
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] gotoandlearn.com (what is he using to capture his input)

2007-01-31 Thread Sunnrunner
Can anyone tell me what they think/know Lee Brimelow is using to create
these tutorials in terms of capturing his input?

www.gotoandlearn.com

I thought he might be using Captivate but, it just doesn't feel the same.

Thanks ahead

___
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] How to give a swf loading priority on a page.

2006-12-05 Thread Sunnrunner
Hello,

I have a mediaPlaback component and a gallery on one page. The mediaPlayback
sucks up all the bandwidth while it's downloading the .flv while leaving my
gallery blank. Is there a way to give a separate swf on an HTML page loading
precedence over the rest? I want my gallery to load first.

Thanks ahead, T

___
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] Flash Query String More Problems

2006-07-17 Thread Sunnrunner
Hello,

I'm having a problem with my menu item labels showing up. Here is my code
below the link. I tried url encoding it but, no luck. The problem is random
but, consistently on the same buttons if that makes sense. Anyone have any
suggestions? Thanks, passing parameters into flash should not be such a
pain. Much appreciation, T.

http://www.todamax.com/index.php?c=50&d=27&a=6&w=2&r=Y

<<<<<<<<<<<>>>>>>>>>>>>>>>>>
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
b#version=7,0,19,0" width="150" height="20">



http://www.macromedia.com/go/getflashplayer";
type="application/x-shockwave-flash" width="150" height="20"
FlashVars="uri={$menu_link[menu]|urlencode}">

<<<<<<<<<<<>>>>>>>>>>>>>>>>>


<<<<<<<<<<>>>>>>>>>>>
myButtonLabel = _root.buttonLabel;
<<<<<<<<<<>>>>>>>>>>>>>>>



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tan
Sent: Sunday, July 16, 2006 3:13 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Flash Query String Problem

You might want to pass in escaped value for myURL before it is passed into
Flash so that Flash would not get confused.  Depending on how the URL is
generated, in javascript you can easily write it as escape(myURLvalue).

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sunnrunner
Sent: Sunday, July 16, 2006 5:04 PM
To: 'Flashcoders mailing list'
Subject: [Flashcoders] Flash Query String Problem

Hello,

I have a button flash file. This file needs two parameters that are passed
in through the query string. 

Here's my query string. 
navButtons.swf?myURL={$menu_channel_id[menu]}&buttonLabel={$menu_text[menu]}

here is the URL that is being passed in

domain.com/index.php?c=21&a=35&w=2&r=Y

the ampersands are making flash think these are separate variables to pass
into flash. Is there a way to make flash send in the above link as a whole
without chopping it up into several separate variables.

I would use some other method besides a query string but, I really need this
to work with it.

Hope that makes sense!

Thanks,
T



___
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] Flash Query String Problem

2006-07-16 Thread Sunnrunner
I'm also using this workaround for the activation problem

AC_FL_RunContent(
'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
cab#version=7,0,19,0','width','150','height','30','src','image_lib/navButton
s?myURL={$menu_channel_id[menu]}&buttonLabel={$menu_text[menu]}','quality','
high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','i
mage_lib/navButtons?myURL={$menu_channel_id[menu]}&buttonLabel={$menu_text[m
enu]}' ); //end AC code

Looking at this syntax can you show if this can be done on the
AC_FL_RunContent function.

Thanks ahead,
T

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tan
Sent: Sunday, July 16, 2006 3:13 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Flash Query String Problem

You might want to pass in escaped value for myURL before it is passed into
Flash so that Flash would not get confused.  Depending on how the URL is
generated, in javascript you can easily write it as escape(myURLvalue).

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sunnrunner
Sent: Sunday, July 16, 2006 5:04 PM
To: 'Flashcoders mailing list'
Subject: [Flashcoders] Flash Query String Problem

Hello,

I have a button flash file. This file needs two parameters that are passed
in through the query string. 

Here's my query string. 
navButtons.swf?myURL={$menu_channel_id[menu]}&buttonLabel={$menu_text[menu]}

here is the URL that is being passed in

domain.com/index.php?c=21&a=35&w=2&r=Y

the ampersands are making flash think these are separate variables to pass
into flash. Is there a way to make flash send in the above link as a whole
without chopping it up into several separate variables.

I would use some other method besides a query string but, I really need this
to work with it.

Hope that makes sense!

Thanks,
T



___
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] Flash Query String Problem

2006-07-16 Thread Sunnrunner
Hello,

I have a button flash file. This file needs two parameters that are passed
in through the query string. 

Here's my query string. 
navButtons.swf?myURL={$menu_channel_id[menu]}&buttonLabel={$menu_text[menu]}

here is the URL that is being passed in

domain.com/index.php?c=21&a=35&w=2&r=Y

the ampersands are making flash think these are separate variables to pass
into flash. Is there a way to make flash send in the above link as a whole
without chopping it up into several separate variables.

I would use some other method besides a query string but, I really need this
to work with it.

Hope that makes sense!

Thanks,
T



___
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: RE: [Flashcoders] OT: Junior Developer Flash/Flex Salary?

2006-06-20 Thread Sunnrunner
Oh and thanks for those who did reply, it made a difference in my decision
and attitude towards the whole thing.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks
| BLITZ
Sent: Tuesday, June 20, 2006 3:41 PM
To: Flashcoders mailing list
Subject: RE: RE: [Flashcoders] OT: Junior Developer Flash/Flex Salary?

> Please move this thread somewhere else. If 'OT' appears in 
> the subject line, that ought to be a clue to everyone that 
> the thread no longer belongs on Flashcoders. Intellectual 
> property and business practice discussions don't really belong here.

Not to mention it has been discussed to death here many times before.  
Check the archives.  Check the internet.  This is not some new topic.
If anything, this is further proof that Flashcoders has been infested 
with newbies.
___
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: RE: [Flashcoders] OT: Junior Developer Flash/Flex Salary?

2006-06-20 Thread Sunnrunner
> If anything, this is further proof that Flashcoders has been infested 
with newbies.

Ouch. I'm sorry. These lists are the only lists that I can usually get
accurate and "happy to help" information for the majority of the time I
guess. I just don't know if Monster or salary.com are good real world
examples. I was hoping to maybe get someone from Denver to reply. I feel
like I had a more specific question. Thread Closed.

=8o)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks
| BLITZ
Sent: Tuesday, June 20, 2006 3:41 PM
To: Flashcoders mailing list
Subject: RE: RE: [Flashcoders] OT: Junior Developer Flash/Flex Salary?

> Please move this thread somewhere else. If 'OT' appears in 
> the subject line, that ought to be a clue to everyone that 
> the thread no longer belongs on Flashcoders. Intellectual 
> property and business practice discussions don't really belong here.

Not to mention it has been discussed to death here many times before.  
Check the archives.  Check the internet.  This is not some new topic.
If anything, this is further proof that Flashcoders has been infested 
with newbies.
___
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] flash file to recognize SESSION or REQUESTvariables?

2006-04-10 Thread Sunnrunner
Thank you.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Grant Cox
Sent: Monday, April 10, 2006 11:00 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash file to recognize SESSION or
REQUESTvariables?

To get data into your swf, you will want to use the FlashVars embed 
tag.  This can be done very easily with FlashObject ( 
http://blog.deconcept.com/flashobject/ ), in fact it appears that 
FlashObject will automatically pass your request parameters (the 
attributes on the end of the URL) into your flash movie.

Now, I don't quite follow what your client means in their first URL, 
where they have some PHP code.  If that is meant to be PHP, then that's 
fine, and FlashObject will ensure that your SWF has variables p, m, 
dcwid and udfo2 available on the root timeline.  If he's just saying you 
need extra URL parameters passed to the server, well, that's nothing to 
do with flash.

Regards,
Grant Cox


Sunnrunner wrote:

>A client asked me this question. Does anyone know what it means or can
>someone explain and give me an answer. 
>
>Thanks. T
>
>How can we get the link in the URL of the flash file to recognize SESSION
or
>REQUEST variables? You know like GET or POST? I need to do something like.
>
>url =
>"https://secure.store.com/HousewivesUnleashed.306/buy.cfm?p=1000141&m=306&d
c
>wid=$_REQUEST['aid']&udfo2=$_REQUEST['sid']";
>
>as opposed to what we currently have.
>
>url = "https://secure.
>store.com/HousewivesUnleashed.306/buy.cfm?p=1000141&m=306";
>
>Thoughts?
>
>___
>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] flash file to recognize SESSION or REQUEST variables?

2006-04-10 Thread Sunnrunner
A client asked me this question. Does anyone know what it means or can
someone explain and give me an answer. 

Thanks. T

How can we get the link in the URL of the flash file to recognize SESSION or
REQUEST variables? You know like GET or POST? I need to do something like.

url =
"https://secure.store.com/HousewivesUnleashed.306/buy.cfm?p=1000141&m=306&dc
wid=$_REQUEST['aid']&udfo2=$_REQUEST['sid']";

as opposed to what we currently have.

url = "https://secure.
store.com/HousewivesUnleashed.306/buy.cfm?p=1000141&m=306";

Thoughts?

___
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