Re: [Flashcoders] Restoring class from .aso

2007-01-16 Thread Thomas Fowler

This last post may help you... might be worth a look...

http://www.actionscript.org/forums/showthread.php3?t=96538

- Original Message -
From: "Mike Pearce" <[EMAIL PROTECTED]>
To: "'Flashcoders mailing list'" 
Sent: Tuesday, January 16, 2007 10:10 PM
Subject: [Flashcoders] Restoring class from .aso


Went to compile a project in sepy, my machine crashed and the class I was
working on has been lost (got a .as file with correct kb's but wont open).

My machine must have crashed before the swf had compiled because I've got 
a

0kb swf - so I can't event decompile the swf.

Anyone know of an .aso decompiler? Otherwise I've just lost a day's
work...not fun.

Thanks,
Mike


Mike Pearce
Nectarine  +61 3 9687 7820
www.nectarine.com.au

___
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] Restoring class from .aso

2007-01-16 Thread Mike Pearce
Went to compile a project in sepy, my machine crashed and the class I was
working on has been lost (got a .as file with correct kb's but wont open).

My machine must have crashed before the swf had compiled because I've got a
0kb swf - so I can't event decompile the swf.

Anyone know of an .aso decompiler? Otherwise I've just lost a day's
work...not fun.

Thanks,
Mike


Mike Pearce
Nectarine  +61 3 9687 7820
www.nectarine.com.au

___
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] Loading .html as a String variable

2007-01-16 Thread T. Michael Keesey

Not necessary -- you can just use the LoadVars.onData event function.

data:LoadVars = new LoadVars();
data.onData = function(source:String):Void {
   // Do stuff with the raw string data (source).
}
data.load("someURL");

Normally onData calls onLoad, but, if you overwrite it per the above
code, onLoad will never fire.

On 1/16/07, Mick G <[EMAIL PROTECTED]> wrote:

If you had a server-side language like PHP you could create a script to add
&myString= to the start of the file then load it with loadvars.



On 1/16/07, Andrew Murphy <[EMAIL PROTECTED]> wrote:
>
> Hi.
>
> Does anyone know of a way to load an .html document as a simple String
> variable, so it can be parsed rather than displayed like a
> webpage?  There's
> the good-ol-XML object, but if the webpage you're loading isn't exactly
> XML
> compliant, it won't load, correct..?
>
> Thanks. :)
>
> -[a]-
>
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.432 / Virus Database: 268.16.13/632 - Release Date:
> 16/01/2007
> 4:36 PM
>
>
> ___
> 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




--
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry & Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
___
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] Loading international language XML into Flash

2007-01-16 Thread Alain Rousseau
Using system fonts is the best idea since people that will read in 
Chinese will have the Chinese language installed on their comp.
That's what I did for a multilanguage site i'm working on. For my part 
it's not XML but either text from a database or text file saved in UTF-8.


To test your movies you would need to install those languages on your 
system as well.


If you want to animate your text with alpha and tweening, then you'll 
definitely need to embed fonts for each language ... with the weight of 
your files increasing accordingly !


HTH

Alain


Mick G wrote:
I have a file that needs to be able to load various languages into the 
Flash

via XML (Chinese, Japanese, Russian, etc.)
Any tips?
- Is this as simple as using system fonts for all dynamic text fields
- If I want smooth fonts, do I just need to find a font to embed for each
language (in which case I would need a seperate SWF for each language)
___
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] Loading .html as a String variable

2007-01-16 Thread Steven Sacks | BLITZ
Can't you use LoadVars with the html file as the path?

BLITZ | Steven Sacks - 310-551-0200 x209
 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf 
> Of Andrew Murphy
> Sent: Tuesday, January 16, 2007 4:41 PM
> To: 'Flashcoders mailing list'
> Subject: [Flashcoders] Loading .html as a String variable
> 
> Hi.
> 
> Does anyone know of a way to load an .html document as a 
> simple String variable, so it can be parsed rather than 
> displayed like a webpage?  There's the good-ol-XML object, 
> but if the webpage you're loading isn't exactly XML 
> compliant, it won't load, correct..?
> 
> Thanks. :)
> 
> -[a]-
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.432 / Virus Database: 268.16.13/632 - Release 
> Date: 16/01/2007
> 4:36 PM
>  
> 
> ___
> 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] Loading .html as a String variable

2007-01-16 Thread Mick G

If you had a server-side language like PHP you could create a script to add
&myString= to the start of the file then load it with loadvars.



On 1/16/07, Andrew Murphy <[EMAIL PROTECTED]> wrote:


Hi.

Does anyone know of a way to load an .html document as a simple String
variable, so it can be parsed rather than displayed like a
webpage?  There's
the good-ol-XML object, but if the webpage you're loading isn't exactly
XML
compliant, it won't load, correct..?

Thanks. :)

-[a]-

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.13/632 - Release Date:
16/01/2007
4:36 PM


___
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] Loading .html as a String variable

2007-01-16 Thread Andrew Murphy
Hi.

Does anyone know of a way to load an .html document as a simple String
variable, so it can be parsed rather than displayed like a webpage?  There's
the good-ol-XML object, but if the webpage you're loading isn't exactly XML
compliant, it won't load, correct..?

Thanks. :)

-[a]-

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.13/632 - Release Date: 16/01/2007
4:36 PM
 

___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Thomas Fowler
Whoops... didn't see the part about Flash 6. Yup, Security.allowDomain will 
be the answer...


- Original Message -
From: "Mick G" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 5:44 PM
Subject: Re: [Flashcoders] crossdomain issues -- do they exist?


I thought the crossdomain policy file wasn't supported in Flash player 6??

You have to use:
System.security.allowDomain

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213

or if you have control of both servers, use a proxy file (or the shim
method) to load the file on the external domain into the same domain as 
the

SWF.
See here...
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16520



On 1/16/07, Thomas Fowler <[EMAIL PROTECTED]> wrote:


Is the server environment for sportsillustrated.cnn.com clustered/load
balanced? Maybe the crossdomain.xml file doesn't exist on one or more
machines in the cluster?

- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 4:01 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

I added it after David's email -- it didn't work with or without it.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas
Fowler
Sent: Tuesday, January 16, 2007 4:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] crossdomain issues -- do they exist?

You don't seem to be calling anything from the secure link on
i.a.cnn.net but your crossdomain.xml file has secure set to true for
that domain. Could that be the issue?

- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 3:43 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

Hmm, we have that file in place, and I still get the error message:

http://sportsillustrated.cnn.com/crossdomain.xml


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Brunswick
Sent: Tuesday, January 16, 2007 4:35 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

You need to have a crossdomain.xml file at the root of the server
hosting the swf

The file looks like so


  
- 
  
  

David Brunswick
Senior Multimedia Developer/OLP Administrator FedEx Customer Information
Services Customer Service Organizational Learning
901-434-6605


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:

- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C

I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Mick G

I thought the crossdomain policy file wasn't supported in Flash player 6??

You have to use:
System.security.allowDomain

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213

or if you have control of both servers, use a proxy file (or the shim
method) to load the file on the external domain into the same domain as the
SWF.
See here...
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16520



On 1/16/07, Thomas Fowler <[EMAIL PROTECTED]> wrote:


Is the server environment for sportsillustrated.cnn.com clustered/load
balanced? Maybe the crossdomain.xml file doesn't exist on one or more
machines in the cluster?

- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 4:01 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

I added it after David's email -- it didn't work with or without it.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas
Fowler
Sent: Tuesday, January 16, 2007 4:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] crossdomain issues -- do they exist?

You don't seem to be calling anything from the secure link on
i.a.cnn.net but your crossdomain.xml file has secure set to true for
that domain. Could that be the issue?

- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 3:43 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

Hmm, we have that file in place, and I still get the error message:

http://sportsillustrated.cnn.com/crossdomain.xml


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Brunswick
Sent: Tuesday, January 16, 2007 4:35 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

You need to have a crossdomain.xml file at the root of the server
hosting the swf

The file looks like so


  
- 
  
  

David Brunswick
Senior Multimedia Developer/OLP Administrator FedEx Customer Information
Services Customer Service Organizational Learning
901-434-6605


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:

- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C

I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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:/

[Flashcoders] remoting components / jsp

2007-01-16 Thread [p e r c e p t i c o n]

Hi all,

I'm wondering if anyone has experience with the remoting components and the
flashgateway.war file that's supposed to be part of the install?


here's what i'm trying to do.  first i created a servlet that let's me
upload a file to a server. then i use getURL to popup a page that calls that
servlet.  what i'd like to have happen is to have that servlet send some
info back to the swf i called getURL from...i'm also using loadvars to get a
result back...any ideas how to accomplish this?

thanks so much

p
___
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] Using XRay

2007-01-16 Thread John Grden

ifyou get true|true, that means the logger and controller LC connections
were made successfully.

Are you using it in an FLA by chance?  If so, find Xray in the library,
right click and choose linkageID - don't have hit export in first frame.
Then, if it's not on stage, put it on stage.

Then, in frame one, use:

_global.com.blitzagency.xray.Xray.initConnections();

That might do it.

On 1/16/07, slangeberg <[EMAIL PROTECTED]> wrote:


So, anyone ever see the XRay Connector component kill their app? I get the
following message, but nothing else:

(75) Connections: true | true

This application is a bit complex, loads external swf modules and
associates
classes with those.

Thanks,

-Scott

On 9/28/06, John Grden <[EMAIL PROTECTED]> wrote:
>
> all downloads:
> http://www.osflash.org/xray#downloads
>
> Latest interface:
>
>
http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/interface/Flex/Xray.zip?format=raw
>
> Connector:
>
>
http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.1.mxp?format=raw
>
> Just doubleclick to install the mxp, then you'll see xray in your
> components
> panel. You can drag it into your library and leave it or put it on stage
> for
> a quick/dirty FPS meter
>
> hth,
>
> jpg
>
> On 9/28/06, slangeberg <[EMAIL PROTECTED]> wrote:
> >
> > I've seen lots of people posting about XRay lately, but I haven't had
> luck
> > with it, yet.
> >
> > I do have the executable running, but I don't have the Connector to
the
> > Flash IDE. Can anyone post a link to download that? I have not been
able
> > to
> > find it!
> >
> > : : ) Scott
> > ___
> > 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
> >
>
>
>
> --
> [  JPG  ]
> ___
> 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
>



--

: : ) Scott
___
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





--
[  JPG  ]
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Thomas Fowler
Is the server environment for sportsillustrated.cnn.com clustered/load 
balanced? Maybe the crossdomain.xml file doesn't exist on one or more 
machines in the cluster?


- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 4:01 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

I added it after David's email -- it didn't work with or without it.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas
Fowler
Sent: Tuesday, January 16, 2007 4:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] crossdomain issues -- do they exist?

You don't seem to be calling anything from the secure link on
i.a.cnn.net but your crossdomain.xml file has secure set to true for
that domain. Could that be the issue?

- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 3:43 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

Hmm, we have that file in place, and I still get the error message:

http://sportsillustrated.cnn.com/crossdomain.xml


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Brunswick
Sent: Tuesday, January 16, 2007 4:35 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

You need to have a crossdomain.xml file at the root of the server
hosting the swf

The file looks like so


 
- 
 
 

David Brunswick
Senior Multimedia Developer/OLP Administrator FedEx Customer Information
Services Customer Service Organizational Learning
901-434-6605


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:

- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C

I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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
___
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 opti

Re: [Flashcoders] Using XRay

2007-01-16 Thread slangeberg

So, anyone ever see the XRay Connector component kill their app? I get the
following message, but nothing else:

(75) Connections: true | true

This application is a bit complex, loads external swf modules and associates
classes with those.

Thanks,

-Scott

On 9/28/06, John Grden <[EMAIL PROTECTED]> wrote:


all downloads:
http://www.osflash.org/xray#downloads

Latest interface:

http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/interface/Flex/Xray.zip?format=raw

Connector:

http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.1.mxp?format=raw

Just doubleclick to install the mxp, then you'll see xray in your
components
panel. You can drag it into your library and leave it or put it on stage
for
a quick/dirty FPS meter

hth,

jpg

On 9/28/06, slangeberg <[EMAIL PROTECTED]> wrote:
>
> I've seen lots of people posting about XRay lately, but I haven't had
luck
> with it, yet.
>
> I do have the executable running, but I don't have the Connector to the
> Flash IDE. Can anyone post a link to download that? I have not been able
> to
> find it!
>
> : : ) Scott
> ___
> 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
>



--
[  JPG  ]
___
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





--

: : ) Scott
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Perdue, Blake
I added it after David's email -- it didn't work with or without it. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas
Fowler
Sent: Tuesday, January 16, 2007 4:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] crossdomain issues -- do they exist?

You don't seem to be calling anything from the secure link on
i.a.cnn.net but your crossdomain.xml file has secure set to true for
that domain. Could that be the issue?

- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 3:43 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

Hmm, we have that file in place, and I still get the error message:

http://sportsillustrated.cnn.com/crossdomain.xml


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Brunswick
Sent: Tuesday, January 16, 2007 4:35 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

You need to have a crossdomain.xml file at the root of the server
hosting the swf

The file looks like so


  
- 
  
  

David Brunswick
Senior Multimedia Developer/OLP Administrator FedEx Customer Information
Services Customer Service Organizational Learning
901-434-6605


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:

- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C

I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Thomas Fowler
You don't seem to be calling anything from the secure link on i.a.cnn.net 
but your crossdomain.xml file has secure set to true for that domain. Could 
that be the issue?


- Original Message -
From: "Perdue, Blake" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 3:43 PM
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

Hmm, we have that file in place, and I still get the error message:

http://sportsillustrated.cnn.com/crossdomain.xml


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Brunswick
Sent: Tuesday, January 16, 2007 4:35 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

You need to have a crossdomain.xml file at the root of the server
hosting the swf

The file looks like so


 
- 
 
 

David Brunswick
Senior Multimedia Developer/OLP Administrator FedEx Customer Information
Services Customer Service Organizational Learning
901-434-6605


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:

- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C

I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Perdue, Blake
Hmm, we have that file in place, and I still get the error message:

http://sportsillustrated.cnn.com/crossdomain.xml
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Brunswick
Sent: Tuesday, January 16, 2007 4:35 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

You need to have a crossdomain.xml file at the root of the server
hosting the swf 

The file looks like so


  
- 
  
  

David Brunswick
Senior Multimedia Developer/OLP Administrator FedEx Customer Information
Services Customer Service Organizational Learning
901-434-6605
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:
 
- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C
 
I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread David Brunswick
You need to have a crossdomain.xml file at the root of the server hosting
the swf 

The file looks like so

 
   
- 
   
  

David Brunswick
Senior Multimedia Developer/OLP Administrator
FedEx Customer Information Services
Customer Service Organizational Learning
901-434-6605
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 3:22 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] crossdomain issues -- do they exist?

So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:
 
- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C
 
I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Perdue, Blake
So, this is the error message I get in Flash 6. Is there anyway around
this issue?

*** Security Sandbox Violation ***
Connection to
http://sportsillustrated.cnn.com/.element/swf/3.0/sect/MAIN/t1.xml?c=0.6
83000534772873 halted - not permitted from
http://i.a.cnn.net/si/.element/swf/3.0/sect/MAIN/t1_tall_v6.swf 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Perdue,
Blake
Sent: Tuesday, January 16, 2007 4:03 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] crossdomain issues -- do they exist?

We want to have this scenario for a homepage flash piece:
 
- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C
 
I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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] crossdomain issues -- do they exist?

2007-01-16 Thread Perdue, Blake
We want to have this scenario for a homepage flash piece:
 
- SWF is loaded off server A
- SWF loads an XML config file off of server B
- SWF loads images off of server C
 
I have built this scenario and tested and it works fine. Some have said
that this will not work due to crossdomain issues with Flash Player 6.
Is this true? Does anyone know what these issues may be?
___
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] Using XRay

2007-01-16 Thread John Grden

awesome!

\m/

On 1/16/07, slangeberg <[EMAIL PROTECTED]> wrote:


Yes, works for me too. Thanks a lot, John!

-Scott




[  JPG  ]
___
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] playheadUpdate

2007-01-16 Thread Webdevotion

Did you try other flv files ?
Maybe one that you didn't encode ( one from youtube for example ) ?

I don't think it has something to do with the Players but with
the flv encoding.
___
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] playheadUpdate

2007-01-16 Thread Serge Jespers

Thanks for your help!
I ended up embedding the video which is not the best thing to do but  
if the client is breathing down your neck, you do just about  
anything, right?


It's weird that the performance of the Flash player is now worse on a  
PC then on a Mac. It used to be the other way 'round.


S



I did a little test with an flv on a remote server.
win xp sp 2 with Opera 9, IE 7 and FF Gran Paradiso ( beta ).
Everything went smooth.

Can you pass the link of the online flv so I can check if it occurs  
with

your flv ?


___
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] overwriting a class

2007-01-16 Thread Merrill, Jason
>>because in some large systems you have to load a ton of swfs, 
>>classes get updated in ways you did not forsee, and thus you 
>>have different versions of the same class hanging around,

That's why I don't have "tons of swfs" in my projects, at least not ones
that all use the same class.  Why would you have tons of swfs in the
same project which all call the same class?  Wouldn't you just want to
have a base .swf that has all the class definitions?  I guess what
you're describing is a problem I haven't encountered before.  I usually
have one .swf which has class definititions, then load in other external
media as necessary.

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
___
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] Using XRay

2007-01-16 Thread Webdevotion

Allright.

Thanks for the effort you put into this project!
___
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] components in flash

2007-01-16 Thread Gustavo Duenas
hi, I did, but the error is still there, the movie is in a loader  
component, even it has a preloader component also,  how can I do?

any ideas?


Regards.


On Jan 16, 2007, at 1:37 PM, Hans Wichman wrote:


Hi,
yes, don't do anything at all until the whole movie is loaded.  
There is

probably a lot of info on this in the archive.

So in other words, as long as _root.getBytesLoaded > 4 and <  
getBytesTotal,

dont jump to frames, create components etc.
Only when getBytesLoaded==getBytesTotal, (or _framestotal ==  
_framesloaded),

it's safe to do so.

You can also wrap your movie into a loader movie, and have that  
loader movie

take care of things.

greetz,
JC


On 1/16/07, Gustavo Duenas <[EMAIL PROTECTED]> wrote:


any ideas about how can I fix it?

regards

Gustavo Duenas

On Jan 16, 2007, at 11:46 AM, Hans Wichman wrote:

> sounds like another preloading issue:)
>
> grtz
> JC
>
>
> On 1/16/07, Gustavo Duenas <[EMAIL PROTECTED]>  
wrote:

>>
>> Does anyone know why the components in flash don't always read  
well

>> and need to refresh the page.
>> The case is that I'm using a scrolling bar component attached to a
>> dynamic text, the first time the component is read , is white,  
then
>> when I do the refresh page in my browser it appears as is  
should be.

>> Any ideas?
>>
>>
>>
>> Regards
>>
>>
>> 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
>

Gustavo Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS LLC
1225 w. Beaver St. suite 119
Jacksonville, FL 32204
904 . 2650330
www.leftandrightsolutions.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



Gustavo Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS LLC
1225 w. Beaver St. suite 119
Jacksonville, FL 32204
904 . 2650330
www.leftandrightsolutions.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] Re: Flashcoders Digest, Vol 24, Issue 27

2007-01-16 Thread Dan Styles

I bought this thing.. MultiPowUpload - from element-it.com - and it uses the
Alert component.. yet nothing i seem to do to change the Alert window styles
seems to work.. no idea why.. it seems they did some fiddling with the
standard halo button code for some reason - would this affect the Alert
window styling? so annoyed right now

do i really have to open:
C:\Documents and Settings\USERNAME\Local Configuration\Application
Data\Macromedia\Flash 8\en\Configuration\Classes\mx\controls\Alert.as

and then the movieclip names... create my own and export with the new names
i used in the edited Alert.as ?>?? hope that made sense.
grrr
___
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] playheadUpdate

2007-01-16 Thread Webdevotion

I did a little test with an flv on a remote server.
win xp sp 2 with Opera 9, IE 7 and FF Gran Paradiso ( beta ).
Everything went smooth.

Can you pass the link of the online flv so I can check if it occurs with
your flv ?
___
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] Using XRay

2007-01-16 Thread slangeberg

Yes, works for me too. Thanks a lot, John!

-Scott

On 1/16/07, John Grden <[EMAIL PROTECTED]> wrote:


yep got it!

One thing to note:  You WILL get a "no swf to connect to" message, but the
logging will still work.  Thats because Xray doesn't detect the
introspection LC that comes with the connector for doing snapshots.

On 1/16/07, Webdevotion <[EMAIL PROTECTED]> wrote:
>
> I've sent you my tiny project that I used as an example ;)
> ___
> 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
>



--
[  JPG  ]
___
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





--

: : ) Scott
___
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] Need help setting setMenuItemSelected in XML MenuBar.

2007-01-16 Thread Gareth Hudson
Hi everyone,

Hopefully this posting won't affect the layout of the code in this
message.  If the layout does get all messed up again can someone let me
know why that might be when posting a message?  My problem is described
again here.

I have a problem with my MenuBar in the fact that I can get
setMenuItemSelected to work. When items on the menu get a tick, I need
them them to stay that way to show a visited state within the menu. I
can't seem to address the correct item in the menu when using
setMenuItemSelected and so the items just untick when selected again.
Many thanks in advance to anyone who can help me fix this problem as
I've spent far too long trying to sort it out. Here's my code, the menu
uses and xml file to populate and everything else works fine:

// If we import the controls, we can then use createClassObject, as seen
// a few lines down, to create a MenuBar without actually having to
place
// a MenuBar component on the stage.
import mx.controls.MenuBar;
// 
// Create a MenuBar object on the screen
this.createClassObject(mx.controls.MenuBar, "xmlMenuBar", 25);
// XML
var myDP_xml:XML;
// Listener object
var fileListener:Object;
// 
// Set up tab index etc.
xmlMenuBar.tabEnabled = true;
xmlMenuBar.tabIndex = 1;
// 
//define styles for the ComboBox component
xmlMenuBar.setStyle("backgroundColor", 0xD8CCB6);
//xmlMenuBar.setStyle("alternatingRowColors", [0xE9E1D6, 0xCEBEA6]);
xmlMenuBar.setStyle("color", 0x66);
xmlMenuBar.setStyle("embedFonts", false);
xmlMenuBar.setStyle("textAlign", "left");
//xmlMenuBar.setStyle("fontStyle", "italic");
// 
myDP_xml = new XML();
myDP_xml.ignoreWhite = true;
myDP_xml.onLoad = function(success:Boolean) {
 if (success) {
  // Set the size and position of the menu using XML values
  xmlMenuBar._height =
myDP_xml.firstChild.nextSibling.attributes.menuHeight;
  xmlMenuBar._width =
myDP_xml.firstChild.nextSibling.attributes.menuWidth;
  xmlMenuBar._x = myDP_xml.firstChild.nextSibling.attributes.xPos;
  xmlMenuBar._y = myDP_xml.firstChild.nextSibling.attributes.yPos;
  //
  // set some of the style values from XML data
  xmlMenuBar.setStyle("fontFamily",
myDP_xml.firstChild.nextSibling.attributes.menuFont);
  xmlMenuBar.setStyle("fontSize",
myDP_xml.firstChild.nextSibling.attributes.menuFontSize);
  xmlMenuBar.setStyle("themeColor",
myDP_xml.firstChild.nextSibling.attributes.menuColour);
  //
  // populate the menu with the XML values
  xmlMenuBar.dataProvider = myDP_xml.firstChild;
  //trace(myDP_xml.firstChild);
 } else {
  trace("error loading XML file");
 }
};
myDP_xml.load("menuBarXML.xml");
//
// The listenered for the file menu (and submenus)
fileListener = new Object();
fileListener.change = function(eventObj:Object):Void  {
 trace("--");
 //trace(eventObj.menuItem.attributes.label);
 //
 var menuNum = eventObj.menu._name;
 trace(menuNum);
 //
 var menuItemNum = eventObj.menu.indexOf(eventObj.menuItem);
 //trace(menuItemNum);
 //
 eventObj.menu.TextArea.setStyle("fontStyle", "italic");
 //
 var myItem:mx.controls.Menu =
xmlMenuBar.getMenuItemAt(eventObj.menuItem);
 //trace(myItem);
 //trace(eventObj.menu);
 //trace("getMenuAt -> "+xmlMenuBar.getMenuAt(menuItemNum));
 var instName = eventObj.menuItem.attributes.instanceName;
 trace(eventObj.menuItem.menuNum);
 //
 xmlMenuBar.setMenuItemSelected(menuNum.menuItemNum, true);
 //
 switch(eventObj.menuItem.attributes.linkType) {
  case "web":
   //getURL(eventObj.menuItem.attributes.linkTo, "_blank");
   break;
  case "email":
   //getURL("mailto:"+eventObj.menuItem.attributes.linkTo  ,
"_blank");
   break;
  case "keyframe":
   //gotoAndPlay(eventObj.menuItem.attributes.linkTo);
   break;
 }
};
// register the listeners with the separate menus
xmlMenuBar.addEventListener("change", fileListener);
stop();


 

Kind Regards,

Gareth Hudson.

___
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] Using XRay

2007-01-16 Thread John Grden

right now, logging is all that you can do. I'm working on the snapshots ;)

On 1/16/07, Webdevotion <[EMAIL PROTECTED]> wrote:


Indeed, it works.

Can we make snapshots of our apps or can we only use the trace messages ?
___
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





--
[  JPG  ]
___
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] Using XRay

2007-01-16 Thread Webdevotion

Indeed, it works.

Can we make snapshots of our apps or can we only use the trace messages ?
___
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] overwriting a class

2007-01-16 Thread Thomas Fowler

Ha... beat me to it...

- Original Message -
From: "Merrill, Jason" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 12:34 PM
Subject: RE: [Flashcoders] overwriting a class


(I meant "method overriding" not "method overwriting")

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness





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

2007-01-16 Thread Serge Jespers

I am... but the client isn't.




Are you using the debug player on your windows machine ?
___
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] overwriting a class

2007-01-16 Thread Hans Wichman

Hi,

because in some large systems you have to load a ton of swfs, classes get
updated in ways you did not forsee, and thus you have different versions of
the same class hanging around, if you did not think about preventing this
upfront. That is different from an architecture in which you wish to add new
features by subclassing etc.

greetz
JC


On 1/16/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:


(I meant "method overriding" not "method overwriting")

Jason Merrill
Bank of America
Learning & Organizational Effectiveness




___
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] overwriting a class

2007-01-16 Thread slangeberg

I would suggest implementing interfaces, as a good practice:

interface ISpeakable
{
   function speak();
}

class myClass implements ISpeakable
{
   function speak() {}
}

this lets you pass around instances that implement your interface and to
change behaviors at runtime, such as:

class TestClass
{
   private var speaker:ISpeakable;

  public function setSpeaker( spkr:ISpeakable ) {
 speaker = spkr;
  }
}

Not sure it's close to what you're looking for, but can be good practice in
large apps.

-Scott

On 1/16/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:


>>Flash allows deleting classes. But maybe I am not
>>aware of some resulting problems.
>>Is is ok in terms of good programing practices ?

No, don't delete anything.  Why not use method overwriting?

class myBaseClass(){
function speak(){
trace("greeting)
}
}

class myHelloClass extends myBaseClass{
function speak(){
trace("Hello")
}
}

class myWhatsUpClass extends myBaseClass{
function speak(){
trace("What's Up?")
}
}

then create instances of the ones you want to use


Jason Merrill
Bank of America
Learning & Organizational Effectiveness







>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf
>>Of BlackMail
>>Sent: Tuesday, January 16, 2007 1:05 PM
>>To: flashcoders@chattyfig.figleaf.com
>>Subject: [Flashcoders] overwriting a class
>>
>>Hi,
>>
>>I am looking for advice about swapping classes of the same
>>name but using different methods.
>>
>>Let's consider three classes:
>>
>>class SomeClass
>>{
>>public function meth()
>>{
>>   trace("meth of skin SomeClass VERSION 0");
>>}
>>}
>>//
>>class SomeClass
>>{
>>public function meth()
>>{
>>trace("meth of skin SomeClass VERSION 1");
>>}
>>
>>}
>>//
>>class SomeClass
>>{
>>public function meth()
>>{
>>trace("meth of skin SomeClass VERSION 2");
>>someNewMethod();
>>
>>}
>>private function someNewMethod()
>>{
>>trace("something new...");
>>}
>>
>>}
>>
>>The first of those is imported into a main.swf file. I can make an
>>instance:
>>
>>var Q:SomeClass = new SomeClass();
>>Q.meth()   // traces :  meth of skin SomeClass VERSION 0
>>
>>The next two classes are imported in: one storage1.swf and
>>the other, storage2.swf
>>
>>Both .swf files are loaded into the main.swf. First the
>>storage1.swf and next storage2.swf. But before loading, I
>>delete the class:
>>
>>trace(SomeClass) // out: [type Function] delete SomeClass
>>trace(SomeClass) // out: undefined
>>
>>And after loading the storage1.swf I can make again an
>>instance of SomeClass:
>>
>>var Q1:SomeClass = new SomeClass();
>>Q1.meth() // traces:   meth of skin SomeClass VERSION 1
>>
>>It uses a new version of meth().
>>
>>Now I delete the SomeClass class:
>>
>>delete SomeClass
>>
>>... and load somewhere into the stage of main.swf the
>>storage2.swf file. After loading the first one I can make a
>>new instance of
>>SomeClass:
>>
>>var Q2:SomeClass = new SomeClass();
>>Q2.meth() // traces:   meth of skin SomeClass VERSION 2
>>  //   something new...
>>
>>
>>and so on, deleting an loading a new version
>>
>>Now the question:
>>The same class name, the same method name, eventually other,
>>new methods of the same class and deleting the class
>>Could this be a good way to overwrite classes ? I tested it
>>and works. Flash allows deleting classes. But maybe I am not
>>aware of some resulting problems.
>>Is is ok in terms of good programing practices ?
>>
>>Thanks,
>>
>>Greg
>>
>>
>>
>>
>>
>>
>>--
>>Lufa dla generala. Zobacz >> http://link.interia.pl/f19e1
>>
>>
>>___
>>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





--

: : ) Scott
___
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] overwriting a class

2007-01-16 Thread Thomas Fowler

Yes, but it's actually, overRIDING ;)

- Original Message -
From: "Merrill, Jason" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Tuesday, January 16, 2007 12:32 PM
Subject: RE: [Flashcoders] overwriting a class

Flash allows deleting classes. But maybe I am not 
aware of some resulting problems.

Is is ok in terms of good programing practices ?


No, don't delete anything.  Why not use method overwriting?

class myBaseClass(){
function speak(){
trace("greeting)
}
}

class myHelloClass extends myBaseClass{
function speak(){
trace("Hello")
}
}

class myWhatsUpClass extends myBaseClass{
function speak(){
trace("What's Up?")
}
}

then create instances of the ones you want to use


Jason Merrill
Bank of America 
Learning & Organizational Effectiveness









-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf 
Of BlackMail

Sent: Tuesday, January 16, 2007 1:05 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] overwriting a class

Hi,

I am looking for advice about swapping classes of the same 
name but using different methods.


Let's consider three classes:

class SomeClass
{
   public function meth()
   {
  trace("meth of skin SomeClass VERSION 0");
   }
}
//
class SomeClass
{
   public function meth()
   {
   trace("meth of skin SomeClass VERSION 1");
   }
   
}

//
class SomeClass
{
   public function meth()
   {
   trace("meth of skin SomeClass VERSION 2");
   someNewMethod();
   
   }

   private function someNewMethod()
   {
   trace("something new...");
   }
   
}


The first of those is imported into a main.swf file. I can make an
instance:

var Q:SomeClass = new SomeClass();
Q.meth()   // traces :  meth of skin SomeClass VERSION 0

The next two classes are imported in: one storage1.swf and 
the other, storage2.swf 

Both .swf files are loaded into the main.swf. First the 
storage1.swf and next storage2.swf. But before loading, I 
delete the class:


trace(SomeClass) // out: [type Function] delete SomeClass
trace(SomeClass) // out: undefined

And after loading the storage1.swf I can make again an 
instance of SomeClass:


var Q1:SomeClass = new SomeClass();
Q1.meth() // traces:   meth of skin SomeClass VERSION 1

It uses a new version of meth().

Now I delete the SomeClass class:

delete SomeClass

... and load somewhere into the stage of main.swf the 
storage2.swf file. After loading the first one I can make a 
new instance of

SomeClass:

var Q2:SomeClass = new SomeClass();
Q2.meth() // traces:   meth of skin SomeClass VERSION 2
 //   something new...


and so on, deleting an loading a new version

Now the question:
The same class name, the same method name, eventually other, 
new methods of the same class and deleting the class 
Could this be a good way to overwrite classes ? I tested it 
and works. Flash allows deleting classes. But maybe I am not 
aware of some resulting problems.

Is is ok in terms of good programing practices ?

Thanks,

Greg






--
Lufa dla generala. Zobacz >> http://link.interia.pl/f19e1


___
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] Using XRay

2007-01-16 Thread John Grden

yep got it!

One thing to note:  You WILL get a "no swf to connect to" message, but the
logging will still work.  Thats because Xray doesn't detect the
introspection LC that comes with the connector for doing snapshots.

On 1/16/07, Webdevotion <[EMAIL PROTECTED]> wrote:


I've sent you my tiny project that I used as an example ;)
___
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





--
[  JPG  ]
___
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] components in flash

2007-01-16 Thread Hans Wichman

Hi,
yes, don't do anything at all until the whole movie is loaded. There is
probably a lot of info on this in the archive.

So in other words, as long as _root.getBytesLoaded > 4 and < getBytesTotal,
dont jump to frames, create components etc.
Only when getBytesLoaded==getBytesTotal, (or _framestotal == _framesloaded),
it's safe to do so.

You can also wrap your movie into a loader movie, and have that loader movie
take care of things.

greetz,
JC


On 1/16/07, Gustavo Duenas <[EMAIL PROTECTED]> wrote:


any ideas about how can I fix it?

regards

Gustavo Duenas

On Jan 16, 2007, at 11:46 AM, Hans Wichman wrote:

> sounds like another preloading issue:)
>
> grtz
> JC
>
>
> On 1/16/07, Gustavo Duenas <[EMAIL PROTECTED]> wrote:
>>
>> Does anyone know why the components in flash don't always read well
>> and need to refresh the page.
>> The case is that I'm using a scrolling bar component attached to a
>> dynamic text, the first time the component is read , is white, then
>> when I do the refresh page in my browser it appears as is should be.
>> Any ideas?
>>
>>
>>
>> Regards
>>
>>
>> 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
>

Gustavo Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS LLC
1225 w. Beaver St. suite 119
Jacksonville, FL 32204
904 . 2650330
www.leftandrightsolutions.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] overwriting a class

2007-01-16 Thread Hans Wichman

Hi,
it works, it probably results in problems in the long run, and i don't think
it's good programming practice.
I had the same issue a while ago and the same solution, but in the end it's
probably better to compile using intrinsic classes or abstract interfaces
and loading a class library at runtime or something like that,

greetz
JC


On 1/16/07, BlackMail <[EMAIL PROTECTED]> wrote:


Hi,

I am looking for advice about swapping classes of the same name but
using different methods.

Let's consider three classes:

class SomeClass
{
   public function meth()
   {
  trace("meth of skin SomeClass VERSION 0");
   }
}
//
class SomeClass
{
   public function meth()
   {
   trace("meth of skin SomeClass VERSION 1");
   }

}
//
class SomeClass
{
   public function meth()
   {
   trace("meth of skin SomeClass VERSION 2");
   someNewMethod();

   }
   private function someNewMethod()
   {
   trace("something new...");
   }

}

The first of those is imported into a main.swf file. I can make an
instance:

var Q:SomeClass = new SomeClass();
Q.meth()   // traces :  meth of skin SomeClass VERSION 0

The next two classes are imported in: one storage1.swf and the other,
storage2.swf

Both .swf files are loaded into the main.swf. First the storage1.swf
and next storage2.swf. But before loading, I delete the class:

trace(SomeClass) // out: [type Function]
delete SomeClass
trace(SomeClass) // out: undefined

And after loading the storage1.swf I can make again an
instance of SomeClass:

var Q1:SomeClass = new SomeClass();
Q1.meth() // traces:   meth of skin SomeClass VERSION 1

It uses a new version of meth().

Now I delete the SomeClass class:

delete SomeClass

... and load somewhere into the stage of main.swf the storage2.swf
file. After loading the first one I can make a new instance of
SomeClass:

var Q2:SomeClass = new SomeClass();
Q2.meth() // traces:   meth of skin SomeClass VERSION 2
 //   something new...


and so on, deleting an loading a new version

Now the question:
The same class name, the same method name, eventually other, new
methods of the same class and deleting the class Could this be a
good way to overwrite classes ? I tested it and works. Flash allows
deleting classes. But maybe I am not aware of some resulting problems.
Is is ok in terms of good programing practices ?

Thanks,

Greg






--
Lufa dla generala. Zobacz >> http://link.interia.pl/f19e1


___
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] overwriting a class

2007-01-16 Thread Merrill, Jason
(I meant "method overriding" not "method overwriting")

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
___
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] overwriting a class

2007-01-16 Thread Merrill, Jason
>>Flash allows deleting classes. But maybe I am not 
>>aware of some resulting problems.
>>Is is ok in terms of good programing practices ?

No, don't delete anything.  Why not use method overwriting?

class myBaseClass(){
function speak(){
trace("greeting)
}
}

class myHelloClass extends myBaseClass{
function speak(){
trace("Hello")
}
}

class myWhatsUpClass extends myBaseClass{
function speak(){
trace("What's Up?")
}
}

then create instances of the ones you want to use


Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
 
 

>>-Original Message-
>>From: [EMAIL PROTECTED] 
>>[mailto:[EMAIL PROTECTED] On Behalf 
>>Of BlackMail
>>Sent: Tuesday, January 16, 2007 1:05 PM
>>To: flashcoders@chattyfig.figleaf.com
>>Subject: [Flashcoders] overwriting a class
>>
>>Hi,
>>
>>I am looking for advice about swapping classes of the same 
>>name but using different methods.
>>
>>Let's consider three classes:
>>
>>class SomeClass
>>{
>>public function meth()
>>{
>>   trace("meth of skin SomeClass VERSION 0");
>>}
>>}
>>//
>>class SomeClass
>>{
>>public function meth()
>>{
>>trace("meth of skin SomeClass VERSION 1");
>>}
>>
>>}
>>//
>>class SomeClass
>>{
>>public function meth()
>>{
>>trace("meth of skin SomeClass VERSION 2");
>>someNewMethod();
>>
>>}
>>private function someNewMethod()
>>{
>>trace("something new...");
>>}
>>
>>}
>>
>>The first of those is imported into a main.swf file. I can make an
>>instance:
>>
>>var Q:SomeClass = new SomeClass();
>>Q.meth()   // traces :  meth of skin SomeClass VERSION 0
>>
>>The next two classes are imported in: one storage1.swf and 
>>the other, storage2.swf 
>>
>>Both .swf files are loaded into the main.swf. First the 
>>storage1.swf and next storage2.swf. But before loading, I 
>>delete the class:
>>
>>trace(SomeClass) // out: [type Function] delete SomeClass
>>trace(SomeClass) // out: undefined
>>
>>And after loading the storage1.swf I can make again an 
>>instance of SomeClass:
>>
>>var Q1:SomeClass = new SomeClass();
>>Q1.meth() // traces:   meth of skin SomeClass VERSION 1
>>
>>It uses a new version of meth().
>>
>>Now I delete the SomeClass class:
>>
>>delete SomeClass
>>
>>... and load somewhere into the stage of main.swf the 
>>storage2.swf file. After loading the first one I can make a 
>>new instance of
>>SomeClass:
>>
>>var Q2:SomeClass = new SomeClass();
>>Q2.meth() // traces:   meth of skin SomeClass VERSION 2
>>  //   something new...
>>
>>
>>and so on, deleting an loading a new version
>>
>>Now the question:
>>The same class name, the same method name, eventually other, 
>>new methods of the same class and deleting the class 
>>Could this be a good way to overwrite classes ? I tested it 
>>and works. Flash allows deleting classes. But maybe I am not 
>>aware of some resulting problems.
>>Is is ok in terms of good programing practices ?
>>
>>Thanks,
>>
>>Greg
>>
>>
>>
>>
>>
>>
>>--
>>Lufa dla generala. Zobacz >> http://link.interia.pl/f19e1
>>
>>
>>___
>>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] playheadUpdate

2007-01-16 Thread Webdevotion

Are you using the debug player on your windows machine ?
___
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] playheadUpdate

2007-01-16 Thread Serge Jespers

Hey all,

Does anyone have a clue why the FLV playback component's  
playheadUpdate event gives different results on PC and Mac?
I have this FLV that I need to sync to an MC frame by frame so I'm  
using the playheadUpdate event to get the playheadTime and calculate  
the correct frame my MC needs to be on.


This works PERFECT on Mac (FireFox + FP9) but on PC (also Firefox 
+FP9) the result is totally wrong.


I found that while tracing the playheadTime from the playheadUpdate  
event, this goes really fast on a Mac but on a PC there are numerous  
hickups.


Anyone have any ideas on this?

Thanks,
Serge

PS: Nothing else is happening in the movie. It's just an FLV and an  
MC playing. 
___

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] Loading international language XML into Flash

2007-01-16 Thread Mick G

I have a file that needs to be able to load various languages into the Flash
via XML (Chinese, Japanese, Russian, etc.)
Any tips?
- Is this as simple as using system fonts for all dynamic text fields
- If I want smooth fonts, do I just need to find a font to embed for each
language (in which case I would need a seperate SWF for each language)
___
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] Using XRay

2007-01-16 Thread Webdevotion

I've sent you my tiny project that I used as an example ;)
___
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] overwriting a class

2007-01-16 Thread BlackMail
Hi,

I am looking for advice about swapping classes of the same name but
using different methods.

Let's consider three classes:

class SomeClass
{
public function meth()
{
   trace("meth of skin SomeClass VERSION 0");
}
}
//
class SomeClass
{
public function meth()
{
trace("meth of skin SomeClass VERSION 1");
}

}
//
class SomeClass
{
public function meth()
{
trace("meth of skin SomeClass VERSION 2");
someNewMethod();

}
private function someNewMethod()
{
trace("something new...");
}

}

The first of those is imported into a main.swf file. I can make an
instance:

var Q:SomeClass = new SomeClass();
Q.meth()   // traces :  meth of skin SomeClass VERSION 0

The next two classes are imported in: one storage1.swf and the other,
storage2.swf 

Both .swf files are loaded into the main.swf. First the storage1.swf
and next storage2.swf. But before loading, I delete the class:

trace(SomeClass) // out: [type Function]
delete SomeClass
trace(SomeClass) // out: undefined

And after loading the storage1.swf I can make again an
instance of SomeClass:

var Q1:SomeClass = new SomeClass();
Q1.meth() // traces:   meth of skin SomeClass VERSION 1

It uses a new version of meth().

Now I delete the SomeClass class:

delete SomeClass

... and load somewhere into the stage of main.swf the storage2.swf
file. After loading the first one I can make a new instance of
SomeClass:

var Q2:SomeClass = new SomeClass();
Q2.meth() // traces:   meth of skin SomeClass VERSION 2
  //   something new...


and so on, deleting an loading a new version

Now the question:
The same class name, the same method name, eventually other, new
methods of the same class and deleting the class Could this be a
good way to overwrite classes ? I tested it and works. Flash allows
deleting classes. But maybe I am not aware of some resulting problems.
Is is ok in terms of good programing practices ?

Thanks,

Greg






--
Lufa dla generala. Zobacz >> http://link.interia.pl/f19e1


___
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] Using XRay

2007-01-16 Thread John Grden

any chance I could get you to send me your files offlist so I could
diagnose?

The only thing I can think of is security, but that hasn't been an issue as
of yet.  My LC's use an underscore in the connection name etc etc and
shouldn't be a security issue.  But that's about all I can think that would
be the problem. Especially if there's no compile errors or runtime errors

On 1/16/07, Webdevotion <[EMAIL PROTECTED]> wrote:


It fails for me too in an AS3 project.  Tried with the online Flex tool,
tried the windows exe, in the stand alone debug player and in Opera.



package
{

import com.blitzagency.xray.logger.XrayLog;

public class Photobar extends Sprite
{
private var log:XrayLog;
public function Photobar ()
{
  ...
  log = new XrayLog();
  log.debug("string message",masksprite); // masksprite is constructed a
couple of lines earlier
  ...
}
}
___
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





--
[  JPG  ]
___
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] Using XRay

2007-01-16 Thread Webdevotion

I don't get to see any errors when compiling.

BTW: I tried both the Log and Logger class.
___
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] Using XRay

2007-01-16 Thread John Grden

bugger.  Let me see if I missed something.. Although, if I missed a class,
you should see a compile or runtime error.  I assume neither is happening?

On 1/16/07, Webdevotion <[EMAIL PROTECTED]> wrote:


It fails for me too in an AS3 project.  Tried with the online Flex tool,
tried the windows exe, in the stand alone debug player and in Opera.



package
{

import com.blitzagency.xray.logger.XrayLog;

public class Photobar extends Sprite
{
private var log:XrayLog;
public function Photobar ()
{
  ...
  log = new XrayLog();
  log.debug("string message",masksprite); // masksprite is constructed a
couple of lines earlier
  ...
}
}
___
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





--
[  JPG  ]
___
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] components in flash

2007-01-16 Thread Gustavo Duenas

any ideas about how can I fix it?

regards

Gustavo Duenas

On Jan 16, 2007, at 11:46 AM, Hans Wichman wrote:


sounds like another preloading issue:)

grtz
JC


On 1/16/07, Gustavo Duenas <[EMAIL PROTECTED]> wrote:


Does anyone know why the components in flash don't always read well
and need to refresh the page.
The case is that I'm using a scrolling bar component attached to a
dynamic text, the first time the component is read , is white, then
when I do the refresh page in my browser it appears as is should be.
Any ideas?



Regards


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



Gustavo Duenas
Creative Director
LEFT AND RIGHT SOLUTIONS LLC
1225 w. Beaver St. suite 119
Jacksonville, FL 32204
904 . 2650330
www.leftandrightsolutions.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] Using XRay

2007-01-16 Thread Webdevotion

It fails for me too in an AS3 project.  Tried with the online Flex tool,
tried the windows exe, in the stand alone debug player and in Opera.



package
{

import com.blitzagency.xray.logger.XrayLog;

public class Photobar extends Sprite
{
private var log:XrayLog;
public function Photobar ()
{
 ...
 log = new XrayLog();
 log.debug("string message",masksprite); // masksprite is constructed a
couple of lines earlier
 ...
}
}
___
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] Re:[ Ticket #1043 ] What is Zocoloco.com and wh y this ticket???

2007-01-16 Thread Ian Thomas

Thanks, Dave.

Ian

On 1/16/07, Dave Watts <[EMAIL PROTECTED]> wrote:


> Boyd,
>   I had the same problem. I suspect some fool has signed up
> an automated bug-reporting email address to the mailing list,
> and when you sned email to the group, it thinks it's got
> email from you and replies accordingly.

I've temporarily disabled the one account with a zocoloco.com domain,
until
this problem is resolved.

Dave Watts, CTO, Fig Leaf Software
http://www.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] Re:[ Ticket #1043 ] What is Zocoloco.com and wh y this ticket???

2007-01-16 Thread Dave Watts
> Boyd,
>   I had the same problem. I suspect some fool has signed up 
> an automated bug-reporting email address to the mailing list, 
> and when you sned email to the group, it thinks it's got 
> email from you and replies accordingly.

I've temporarily disabled the one account with a zocoloco.com domain, until
this problem is resolved.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

___
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] components in flash

2007-01-16 Thread Hans Wichman

sounds like another preloading issue:)

grtz
JC


On 1/16/07, Gustavo Duenas <[EMAIL PROTECTED]> wrote:


Does anyone know why the components in flash don't always read well
and need to refresh the page.
The case is that I'm using a scrolling bar component attached to a
dynamic text, the first time the component is read , is white, then
when I do the refresh page in my browser it appears as is should be.
Any ideas?



Regards


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] Using XRay

2007-01-16 Thread John Grden

that's where it's supposed to go alright - can you send me your code
offline?  Or maybe just one class/mxml that uses the log?  I just wanna
verify

On 1/16/07, slangeberg <[EMAIL PROTECTED]> wrote:


So where is this log info supposed to go? I tried catching it using the
Flex
XRay client, but it's not connecting:

http://www.rockonflash.com/xray/flex/Xray.html

-Scott

On 1/15/07, John Grden <[EMAIL PROTECTED]> wrote:
>
> http://www.rockonflash.com/xray/downloads/as3/logger/Xray_AS3_Logger.zip
>
> Pretty straight forward to use:
>
> import com.blitzagency.xray.logger.XrayLog;
>
> private var log:XrayLog = new XrayLog();
>
> // usage
>
> log.debug("string message"[, object]);
> log.info("string message"[, object]);
> log.warn("string message"[, object]);
> log.error("string message"[, object]);
> log.fatal("string message"[, object]);
>
> If you're using the flash9 debug player, it'll give you the full class
> path/method that made the call.  Otherwise, it'll just log your string
> message and object.
>
> // with debug:
> (297) com.somepackage.core::ClassName/::callingMethodName()
> testing logger
>
> // without debug:
> (297) testing logger
>
> talks to the usual Xray interface
>
> let me know how it goes!
>
> On 1/15/07, John Grden <[EMAIL PROTECTED]> wrote:
> >
> > OHHH yeah!  thanks for reminding me ;)
> >
> > On 1/15/07, slangeberg <[EMAIL PROTECTED]> wrote:
> > >
> > > How about XRay + Flex2/AS3/FP9? I believe that J Grden(?) was going
to
> > > post
> > > code to get the Logger working there? I tried on my own, but it was
a
> > > no-go!
> > >
> > > -Scott
> > >
> > > On 9/29/06, Hans Wichman < [EMAIL PROTECTED]> wrote:
> > > >
> > > > And once you have it running, you'll have the best weekend ever,
> throw
> > > a
> > > > party and won't understand how you every managed without it...  :)
> > > >
> > > >
> > > > On 9/28/06, Alain Rousseau <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > > Try this link,
> > > > >
> > > > > It has everything you need to know about XRay, including where
to
> > > > download
> > > > > !
> > > > >
> > > > > Enjoy !
> > > > >
> > > > > http://www.osflash.org/xray
> > > > >
> > > > > A
> > > > >
> > > > > -Original Message-
> > > > > From: slangeberg [mailto:[EMAIL PROTECTED]
> > > > > Sent: 28 septembre 2006 14:09
> > > > > To: Flashcoders mailing list; [EMAIL PROTECTED]
> > > > > Subject: [Flashcoders] Using XRay
> > > > >
> > > > > I've seen lots of people posting about XRay lately, but I
haven't
> > > had
> > > > luck
> > > > > with it, yet.
> > > > >
> > > > > I do have the executable running, but I don't have the Connector
> to
> > > the
> > > > > Flash IDE. Can anyone post a link to download that? I have not
> been
> > > able
> > > > > to
> > > > > find it!
> > > > >
> > > > > : : ) Scott
> > > > > ___
> > > > > 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
> > > >
> > >
> > >
> > >
> > > --
> > >
> > > : : ) Scott
> > > ___
> > > 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
> > >
> >
> >
> >
> > --
> > [  JPG  ]
>
>
>
>
> --
> [  JPG  ]
> ___
> 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
>



--

: : ) Scott

Re: [Flashcoders] Re:[ Ticket #1043 ] What is Zocoloco.com and why this ticket???

2007-01-16 Thread Ian Thomas

Boyd,
 I had the same problem. I suspect some fool has signed up an automated
bug-reporting email address to the mailing list, and when you sned email to
the group, it thinks it's got email from you and replies accordingly.

Cheers,
  Ian

On 1/16/07, BOYD SPEER <[EMAIL PROTECTED]> wrote:


[ Ticket #1043 ] [Flashcoders] Re: speech recognition in Flash?

What does this message mean - as a response to my inquiry about
translating a Director project to Flash? Do some - or all - questions get
sent to some server that is supposed to find an appropriate solution?? I see
other messages have also gotten this response.


___
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] Re:[ Ticket #1043 ] What is Zocoloco.com and why this ticket???

2007-01-16 Thread BOYD SPEER
[ Ticket #1043 ] [Flashcoders] Re: speech recognition in Flash?

What does this message mean - as a response to my inquiry about translating a 
Director project to Flash? Do some - or all - questions get sent to some server 
that is supposed to find an appropriate solution?? I see other messages have 
also gotten this response.

___
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] RE: Keyboard accessibility and sliders

2007-01-16 Thread Andrew Kirkpatrick
> As far as I can see, the only restriction introduced by this 
> solution is that one cannot navigate through the tabEnabled 
> controls anymore using the arrow keys. But I believe the TAB 
> / SHIFT+TAB keys are sufficient for this.

They are.  This limitation is expected for component-based applications,
such as with flex. 

AWK 
___
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] Announcement: FlexManiacs 2007 Conference Call for Papers

2007-01-16 Thread Steve Drucker
 
Join Fig Leaf Software, Adobe. and Carahsoft for the highly anticipated Flex
2 Developers Conference on June 25-26 in Washington, DC.

LEARN ABOUT DEVELOPING WEB 2.0 APPLICATIONS WITH FLEX 2, ACTIONSCRIPT 3, and
"APOLLO" !

With two full days of 60 minute lectures and 90 minute HANDS-ON practice
sessions dedicated to Flex 2 and developing Rich Internet Applications
(RIA), you're sure to get all of the information you need.

With sessions for project managers, beginner, intermediate, and advanced
developers, the FlexManiacs conference is poised to deliver maximum return
for your training dollar.


Confirmed FlexManiac speakers include:

Ted Patrick
Flex Evangelist, Adobe Systems

Dan Blackman
Certified Flex 2 Instructor, Fig Leaf Software

Mike Nimer
Former ColdFusion Engineer for Adobe, now a principal of Tapper, Nimer, and
Associates

Jeff Tapper
Certified Adobe Flex instructor and Author of Adobe Flex 2: Training from
the Source. Principal of Tapper, Nimer, and Associates

Jason Perry
Certified Adobe Flex instructor, Fig Leaf Software

Keenan Keeling
Certified Adobe Flex instructor, CEO, Automata Studios

Branden Hall
CTO, Automata Studios

Dave Watts
CTO and Certified Flex instructor, Fig Leaf Software

Find out more about the conference at http://flex2conference.figleaf.com


If you would like to speak at the conference, please fill out our call for
papers application at
http://flex2conference.figleaf.com/Sessions/callforpapers.cfm

Regards,
Steve Drucker
CEO
Fig Leaf Software
www.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] components in flash

2007-01-16 Thread Gustavo Duenas
Does anyone know why the components in flash don't always read well  
and need to refresh the page.
The case is that I'm using a scrolling bar component attached to a  
dynamic text, the first time the component is read , is white, then  
when I do the refresh page in my browser it appears as is should be.

Any ideas?



Regards


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: [ Ticket #1310 ] Re: [Flashcoders] Flash Tracer / FF2

2007-01-16 Thread slangeberg

I'm guessing that '[EMAIL PROTECTED]' can be removed from the list?

Moderators?

-Scott

On 1/16/07, John Grden <[EMAIL PROTECTED]> wrote:


I got the same email on 2 different posts form the list

On 1/16/07, slangeberg <[EMAIL PROTECTED]> wrote:
>
> Anyone know why zocoSites Support ( [EMAIL PROTECTED] ) is sending
me
> these support ticket emails, regarding messages sent to this forum??
>
> PS. I never submitted anything to any help desk!
>
> -Scott
>
>
___
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





--

: : ) Scott
___
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: [ Ticket #1310 ] Re: [Flashcoders] Flash Tracer / FF2

2007-01-16 Thread John Grden

I got the same email on 2 different posts form the list

On 1/16/07, slangeberg <[EMAIL PROTECTED]> wrote:


Anyone know why zocoSites Support ( [EMAIL PROTECTED] ) is sending me
these support ticket emails, regarding messages sent to this forum??

PS. I never submitted anything to any help desk!

-Scott



___
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: [ Ticket #1310 ] Re: [Flashcoders] Flash Tracer / FF2

2007-01-16 Thread Trevor Burton

i'm getting them too

T

On 1/16/07, slangeberg <[EMAIL PROTECTED]> wrote:


Anyone know why zocoSites Support ( [EMAIL PROTECTED] ) is sending me
these support ticket emails, regarding messages sent to this forum??

PS. I never submitted anything to any help desk!

-Scott

-- Forwarded message --
From: zocoSites Support <[EMAIL PROTECTED]>
Date: 16 Jan 2007 05:35:04 +
Subject: [ Ticket #1310 ] Re: [Flashcoders] Flash Tracer / FF2
To: [EMAIL PROTECTED]

A new ticket with ID 1310 has been submitted to the Help Desk by
slangeberg
from server1.zocoloco.com.
Please retain the ticket identification number for future references.
Below
is a copy of the ticket.
-
Where can I find info on the logger (flex 2/ as3)? is it available
publicly?



Thanks,



-Scott



On 1/9/07, John Grden <[EMAIL PROTECTED]> wrote:

>

> LOL, i'm getting there I promise!!

>

> I have Xray logger for Flex2 / as3 apps and have been using that for a

> while

> now.  But as for a connector that does the inspection, I'm working on it

> now.  There's been a lot of requests ;)

>

> On 1/9/07, slangeberg <[EMAIL PROTECTED]> wrote:

> >

> > Does XRay work with AS3 / Flex 2 apps?

> >

> > -Scott

> >

> > On 1/8/07, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote:

> > >

> > > There's a standalone debug executable available too at

> > >

> > > http://www.osflash.org/xray/

> > >

> > >

> > > BLITZ | Steven Sacks - 310-551-0200 x208

> > >

> > >

> > > > -Original Message-

> > > > From: [EMAIL PROTECTED]

> > > > [mailto:[EMAIL PROTECTED] On Behalf

> > > > Of [EMAIL PROTECTED]

> > > > Sent: Monday, January 08, 2007 3:54 PM

> > > > To: Flashcoders mailing list

> > > > Subject: Re: [Flashcoders] Flash Tracer / FF2

> > > >

> > > > I can do you one better. Download the XRay connector and

> > > > classes from Blitz agency and use this link

> > > > http://www.rockonflash.com/xray/flex/Xray.html and tell me

> > > > what you think ;)

> > > >

> > > > T

> > > >

> > > > - Original Message -

> > > > From: "Eric Lee" <[EMAIL PROTECTED]>

> > > > To: "'Flashcoders mailing list'" <
flashcoders@chattyfig.figleaf.com>

> > > > Sent: Monday, January 08, 2007 5:42 PM

> > > > Subject: [Flashcoders] Flash Tracer / FF2

> > > >

> > > > > For those of you who haven't used it, there's a cool FF

> > > > plugin called

> > > > > Flash

> > > > > Tracer (https://addons.mozilla.org/firefox/3469/) that lets

> > > > you view any

> > > > > traces generated by a SWF within firefox.

> > > > >

> > > > >

> > > > >

> > > > > My problem is that, since upgrading to FF2, I haven't been

> > > > able to get it

> > > > > to

> > > > > work properly. Has anyone had similar issues / know of a fix?

> > > > >

> > > > >

> > > > >

> > > > > Thanks!

> > > > >

> > > > > -Eric

> > > > >

> > > > >

> > > > >

> > > > > ___

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

> > >

> >

> >

> >

> > --

> >

> > : : ) Scott

> > ___

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

> >

>

>

>

> --

> [  JPG  ]

> ___

> 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

>







--



: : ) Scott


Re: [Flashcoders] Using XRay

2007-01-16 Thread slangeberg

So where is this log info supposed to go? I tried catching it using the Flex
XRay client, but it's not connecting:

http://www.rockonflash.com/xray/flex/Xray.html

-Scott

On 1/15/07, John Grden <[EMAIL PROTECTED]> wrote:


http://www.rockonflash.com/xray/downloads/as3/logger/Xray_AS3_Logger.zip

Pretty straight forward to use:

import com.blitzagency.xray.logger.XrayLog;

private var log:XrayLog = new XrayLog();

// usage

log.debug("string message"[, object]);
log.info("string message"[, object]);
log.warn("string message"[, object]);
log.error("string message"[, object]);
log.fatal("string message"[, object]);

If you're using the flash9 debug player, it'll give you the full class
path/method that made the call.  Otherwise, it'll just log your string
message and object.

// with debug:
(297) com.somepackage.core::ClassName/::callingMethodName()
testing logger

// without debug:
(297) testing logger

talks to the usual Xray interface

let me know how it goes!

On 1/15/07, John Grden <[EMAIL PROTECTED]> wrote:
>
> OHHH yeah!  thanks for reminding me ;)
>
> On 1/15/07, slangeberg <[EMAIL PROTECTED]> wrote:
> >
> > How about XRay + Flex2/AS3/FP9? I believe that J Grden(?) was going to
> > post
> > code to get the Logger working there? I tried on my own, but it was a
> > no-go!
> >
> > -Scott
> >
> > On 9/29/06, Hans Wichman < [EMAIL PROTECTED]> wrote:
> > >
> > > And once you have it running, you'll have the best weekend ever,
throw
> > a
> > > party and won't understand how you every managed without it...  :)
> > >
> > >
> > > On 9/28/06, Alain Rousseau <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Try this link,
> > > >
> > > > It has everything you need to know about XRay, including where to
> > > download
> > > > !
> > > >
> > > > Enjoy !
> > > >
> > > > http://www.osflash.org/xray
> > > >
> > > > A
> > > >
> > > > -Original Message-
> > > > From: slangeberg [mailto:[EMAIL PROTECTED]
> > > > Sent: 28 septembre 2006 14:09
> > > > To: Flashcoders mailing list; [EMAIL PROTECTED]
> > > > Subject: [Flashcoders] Using XRay
> > > >
> > > > I've seen lots of people posting about XRay lately, but I haven't
> > had
> > > luck
> > > > with it, yet.
> > > >
> > > > I do have the executable running, but I don't have the Connector
to
> > the
> > > > Flash IDE. Can anyone post a link to download that? I have not
been
> > able
> > > > to
> > > > find it!
> > > >
> > > > : : ) Scott
> > > > ___
> > > > 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
> > >
> >
> >
> >
> > --
> >
> > : : ) Scott
> > ___
> > 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
> >
>
>
>
> --
> [  JPG  ]




--
[  JPG  ]
___
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





--

: : ) Scott
___
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] loadMovie in a duplicated movieclip

2007-01-16 Thread Merrill, Jason
>>And could anyone explain why 
>>
>>this.[newName]._x = menu_ds.HorizontalPos;
>>
>>doesn't work?

Improper syntax.  Try:

this[newName]._x = menu_ds.HorizontalPos;

Also, would recommend against using eval() in this case and use the []
operator instead.

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
___
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] loadMovie in a duplicated movieclip

2007-01-16 Thread Don
Hi Group,

I'm having so much trouble with this duplicatemovie function!
I've gotten it to a point where it works, although I'm not too sure why it
works like this and not the other ways... Anyway...

I can't get a loadMovie function to work no matter what I've tried. Here's
my code at the moment...
I have image names and X Y coordinates coming from a dataset...


var i = 1;
if (_root.menu_ds.Type == 1) {
while (_root.menu_ds.hasNext()) {
newName = "button_"+i;
duplicateMovieClip(dupButton, newName, i);
eval(newName)._x = menu_ds.HorizontalPos;
eval(newName)._y = menu_ds.VerticalPos;
eval(newName).butState.up.loadMovie("up.jpg");
eval(newName).butState.down.loadMovie("down.jpg");

eval(newName).butState.disabled.loadMovie("disabled.jpg");
eval(newName).butState.onPress = function (){
this.gotoAndStop(2);
}
eval(newName).butState.onRelease = function (){
this.gotoAndStop(1);
}
++i;
menu_ds.next();
}
}

And could anyone explain why 

this.[newName]._x = menu_ds.HorizontalPos;

doesn't work?


Many thanks...

Don

___
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


Fwd: [ Ticket #1310 ] Re: [Flashcoders] Flash Tracer / FF2

2007-01-16 Thread slangeberg

Anyone know why zocoSites Support ( [EMAIL PROTECTED] ) is sending me
these support ticket emails, regarding messages sent to this forum??

PS. I never submitted anything to any help desk!

-Scott

-- Forwarded message --
From: zocoSites Support <[EMAIL PROTECTED]>
Date: 16 Jan 2007 05:35:04 +
Subject: [ Ticket #1310 ] Re: [Flashcoders] Flash Tracer / FF2
To: [EMAIL PROTECTED]

A new ticket with ID 1310 has been submitted to the Help Desk by slangeberg
from server1.zocoloco.com.
Please retain the ticket identification number for future references. Below
is a copy of the ticket.
-
Where can I find info on the logger (flex 2/ as3)? is it available publicly?



Thanks,



-Scott



On 1/9/07, John Grden <[EMAIL PROTECTED]> wrote:






LOL, i'm getting there I promise!!







I have Xray logger for Flex2 / as3 apps and have been using that for a



while



now.  But as for a connector that does the inspection, I'm working on it



now.  There's been a lot of requests ;)







On 1/9/07, slangeberg <[EMAIL PROTECTED]> wrote:



>



> Does XRay work with AS3 / Flex 2 apps?



>



> -Scott



>



> On 1/8/07, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote:



> >



> > There's a standalone debug executable available too at



> >



> > http://www.osflash.org/xray/



> >



> >



> > BLITZ | Steven Sacks - 310-551-0200 x208



> >



> >



> > > -Original Message-



> > > From: [EMAIL PROTECTED]



> > > [mailto:[EMAIL PROTECTED] On Behalf



> > > Of [EMAIL PROTECTED]



> > > Sent: Monday, January 08, 2007 3:54 PM



> > > To: Flashcoders mailing list



> > > Subject: Re: [Flashcoders] Flash Tracer / FF2



> > >



> > > I can do you one better. Download the XRay connector and



> > > classes from Blitz agency and use this link



> > > http://www.rockonflash.com/xray/flex/Xray.html and tell me



> > > what you think ;)



> > >



> > > T



> > >



> > > - Original Message -



> > > From: "Eric Lee" <[EMAIL PROTECTED]>



> > > To: "'Flashcoders mailing list'" 



> > > Sent: Monday, January 08, 2007 5:42 PM



> > > Subject: [Flashcoders] Flash Tracer / FF2



> > >



> > > > For those of you who haven't used it, there's a cool FF



> > > plugin called



> > > > Flash



> > > > Tracer (https://addons.mozilla.org/firefox/3469/) that lets



> > > you view any



> > > > traces generated by a SWF within firefox.



> > > >



> > > >



> > > >



> > > > My problem is that, since upgrading to FF2, I haven't been



> > > able to get it



> > > > to



> > > > work properly. Has anyone had similar issues / know of a fix?



> > > >



> > > >



> > > >



> > > > Thanks!



> > > >



> > > > -Eric



> > > >



> > > >



> > > >



> > > > ___



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



> >



>



>



>



> --



>



> : : ) Scott



> ___



> 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



>















--



[  JPG  ]



___



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












--



: : ) Scott

___

Flashcoders@chattyfig.figleaf.com

To change your subscription options or search

Re: [Flashcoders] MenuBar setMenuItemSelected problem.

2007-01-16 Thread [EMAIL PROTECTED]
The code ended up being squashed into paragraphs, hopefully this paste will 
sort that out so that you can read it. Once again, my problem is that I have a 
problem with my MenuBar in the fact that I can't get setMenuItemSelected to 
work. When items on the menu get a tick, I need them them to stay that way to 
show a visited state within the menu. I can't seem to address the correct item 
in the menu when using setMenuItemSelected and so the items just untick when 
selected again. // If we import the controls, we can then use 
createClassObject, as seen // a few lines down, to create a MenuBar without 
actually having to place // a MenuBar component on the stage. import 
mx.controls.MenuBar; // // Create a MenuBar object on the screen 
this.createClassObject(mx.controls.MenuBar, "xmlMenuBar", 25); // XML var 
myDP_xml:XML; // Listener object var fileListener:Object; // // Set up tab 
index etc. xmlMenuBar.tabEnabled = true; xmlMenuBar.tabIndex = 1; // //define 
styles for the ComboBox component xmlMenuBar.setStyle("backgroundColor", 
0xD8CCB6); //xmlMenuBar.setStyle("alternatingRowColors", [0xE9E1D6, 0xCEBEA6]); 
xmlMenuBar.setStyle("color", 0x66); xmlMenuBar.setStyle("embedFonts", 
false); xmlMenuBar.setStyle("textAlign", "left"); 
//xmlMenuBar.setStyle("fontStyle", "italic"); // myDP_xml = new XML(); 
myDP_xml.ignoreWhite = true; myDP_xml.onLoad = function(success:Boolean) { if 
(success) { // Set the size and position of the menu using XML values 
xmlMenuBar._height = myDP_xml.firstChild.nextSibling.attributes.menuHeight; 
xmlMenuBar._width = myDP_xml.firstChild.nextSibling.attributes.menuWidth; 
xmlMenuBar._x = myDP_xml.firstChild.nextSibling.attributes.xPos; xmlMenuBar._y 
= myDP_xml.firstChild.nextSibling.attributes.yPos; // // set some of the style 
values from XML data xmlMenuBar.setStyle("fontFamily", 
myDP_xml.firstChild.nextSibling.attributes.menuFont); 
xmlMenuBar.setStyle("fontSize", 
myDP_xml.firstChild.nextSibling.attributes.menuFontSize); 
xmlMenuBar.setStyle("themeColor", 
myDP_xml.firstChild.nextSibling.attributes.menuColour); // // populate the menu 
with the XML values xmlMenuBar.dataProvider = myDP_xml.firstChild; 
//trace(myDP_xml.firstChild); } else { trace("error loading XML file"); } }; 
myDP_xml.load("menuBarXML.xml"); // // The listenered for the file menu (and 
submenus) fileListener = new Object(); fileListener.change = 
function(eventObj:Object):Void { // var menuNum = eventObj.menu; // var 
menuItemNum = eventObj.menu.indexOf(eventObj.menuItem); // 
eventObj.menu.TextArea.setStyle("fontStyle", "italic"); // var 
myItem:mx.controls.Menu = xmlMenuBar.getMenuItemAt(eventObj.menuItem); var 
instName = eventObj.menuItem.attributes.instanceName; // 
xmlMenuBar.menuNum.setMenuItemSelected(instName, true); // 
switch(eventObj.menuItem.attributes.linkType) { case "web": 
//getURL(eventObj.menuItem.attributes.linkTo, "_blank"); break; case "email": 
//getURL("mailto:"+eventObj.menuItem.attributes.linkTo, _blank"); break; case 
"keyframe": //gotoAndPlay(eventObj.menuItem.attributes.linkTo); break; } }; // 
register the listeners with the separate menus 
xmlMenuBar.addEventListener("change", fileListener); stop(); > Original 
Message > From: [EMAIL PROTECTED] > Date: Jan 16, 2007 12:44:03 PM 
> To: flashcoders@chattyfig.figleaf.com > Subj: [Flashcoders] MenuBar 
setMenuItemSelected problem. > > Hi everyone, > I have a problem with 
my MenuBar in the fact that I can get setMenuItemSelected to work. When items 
on the menu get a tick, I need them them to stay that way to show a visited 
state within the menu. I can't seem to address the correct item in the menu 
when using setMenuItemSelected and so the items just untick when selected 
again. Many thanks in advance to anyone who can help me fix this problem as 
I've spent far too long trying to sort it out. > Here's my code, the menu 
uses and xml file to populate and everything else works fine: > // If we 
import the controls, we can then use createClassObject, as seen// a few lines 
down, to create a MenuBar without actually having to place// a MenuBar 
component on the stage.import mx.controls.MenuBar;// 
// Create a 
MenuBar object on the screenthis.createClassObject(mx.controls.MenuBar, 
"xmlMenuBar", 25);// XMLvar myDP_xml:XML;// Listener objectvar 
fileListener:Object;// 
// Set up 
tab index etc.xmlMenuBar.tabEnabled = true;xmlMenuBar.tabIndex = 1;// 
//define 
styles for the ComboBox componentxmlMenuBar.setStyle("backgroundColor", 
0xD8CCB6);//xmlMenuBar.setStyle("alternatingRowColors", [0xE9E1D6, 
0xCEBEA6]);xmlMenuBar.setStyle("color", 
0x66);xmlMenuBar.setStyle("embedFonts", 
false);xmlMenuBar.setStyle("textAlign", 
"left");//xmlMenuBar.setStyle("fontStyle", "italic");// 
===

RE: [Flashcoders] How to achieve this line "open/close" effect?

2007-01-16 Thread Andy Stone
There are many ways to do it. I'd script the tween and use a callback like
this...

Press > tween close> load movie > tween up

You can find docs on the tween engine here...

http://laco.wz.cz/tween/
http://www.mosessupposes.com/Fuse/



#include "lmc_tween.as"
//
var container:MovieClip = createEmptyMovieClip("container",
getNextHighestDepth());
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(this);
//
_btn.onPress = function() {
animateScreen("close", "file.jpg");
};
//
function animateScreen(pos, clp) {
//
var dur = .5;
var closeY = 500;
var openTopY = 450;
var openBottomY = 550;
var ease = "easeInOutExpo";
//
if (pos == "close") {
var callback = {func:loadImg, args:[clp]};
topBar_mc.tween("_y", closeY, dur, ease);
bottomBar_mc.tween("_y", closeY, dur, ease, 0, callback);
} else {
topBar_mc.tween("_y", openTopY, dur, ease);
bottomBar_mc.tween("_y", openBottomY, dur, ease);
}
}
function loadImg(clp) {
mcLoader.loadClip(clp, container);
}
function onLoadInit(mc:MovieClip) {
animateScreen("open");
}

Good luck 

-Andy Stone





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marcelo de
Moraes Serpa
Sent: Friday, January 12, 2007 8:18 PM
To: Flashcoders mailing list
Subject: [Flashcoders] How to achieve this line "open/close" effect?

Hello!

I'd like to achieve a masking effect similar to the one present on
this template:

http://www.templatehelp.com/preset/pr_preview.php?i=10712&pr_code=3Q2P7g93F4
eju93em4J52LUq1hYM59

The two horizontal lines that move vertically to show up the initial
background, then they "get together" and start moving in reverse to
show the picture
gallery.

But I'm confused on how to do it... firstly, do you think that it is
scripted or it is a timeline-only animation?

If it is to be scripted, I think that a mask MovieClip would have to
stretch its height to the current line _x position...

What do you think?

Thanks,

Marcelo.
___
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] ActionScript classes availability

2007-01-16 Thread Merrill, Jason
>>mm... so if you name an object, say, "stage" and use a "width"
>>element of it in your SWF5-compiled movie, can you expect it 
>>to work with any player ? [ it would clash with Stage class 
>>intruduced in player 6 ]

AFAIK in that case, it would clash with the respective version of the
Flash player.  

Jason Merrill
Bank of America 
Learning & Organizational Effectiveness
 
 
 
 
 
 
___
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] ActionScript classes availability

2007-01-16 Thread strk
On Thu, Jan 11, 2007 at 09:42:58AM -0500, Merrill, Jason wrote:

> >>Is availability of classes bound to *SWF* version or *player* 
> >>version ?
>
> Both.

mm... so if you name an object, say, "stage" and use a "width"
element of it in your SWF5-compiled movie, can you expect it
to work with any player ? [ it would clash with Stage class intruduced
in player 6 ]

--strk;

( unsolicited advertisement below this line, don't bother scrolling  )







































































___
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] MenuBar setMenuItemSelected problem.

2007-01-16 Thread [EMAIL PROTECTED]
Hi everyone,
I have a problem with my MenuBar in the fact that I can get setMenuItemSelected 
to work.  When items on the menu get a tick, I need them them to stay that way 
to show a visited state within the menu.  I can't seem to address the correct 
item in the menu when using setMenuItemSelected and so the items just untick 
when selected again.  Many thanks in advance to anyone who can help me fix this 
problem as I've spent far too long trying to sort it out.
Here's my code, the menu uses and xml file to populate and everything else 
works fine:
// If we import the controls, we can then use createClassObject, as seen// a 
few lines down, to create a MenuBar without actually having to place// a 
MenuBar component on the stage.import mx.controls.MenuBar;// 
// Create a 
MenuBar object on the screenthis.createClassObject(mx.controls.MenuBar, 
"xmlMenuBar", 25);// XMLvar myDP_xml:XML;// Listener objectvar 
fileListener:Object;// 
// Set up 
tab index etc.xmlMenuBar.tabEnabled = true;xmlMenuBar.tabIndex = 1;// 
//define 
styles for the ComboBox componentxmlMenuBar.setStyle("backgroundColor", 
0xD8CCB6);//xmlMenuBar.setStyle("alternatingRowColors", [0xE9E1D6, 
0xCEBEA6]);xmlMenuBar.setStyle("color", 
0x66);xmlMenuBar.setStyle("embedFonts", 
false);xmlMenuBar.setStyle("textAlign", 
"left");//xmlMenuBar.setStyle("fontStyle", "italic");// 
myDP_xml = 
new XML();myDP_xml.ignoreWhite = true;myDP_xml.onLoad = 
function(success:Boolean) { if (success) {  // Set the size and position of the 
menu using XML values  xmlMenuBar._height = 
myDP_xml.firstChild.nextSibling.attributes.menuHeight;  xmlMenuBar._width = 
myDP_xml.firstChild.nextSibling.attributes.menuWidth;  xmlMenuBar._x = 
myDP_xml.firstChild.nextSibling.attributes.xPos;  xmlMenuBar._y = 
myDP_xml.firstChild.nextSibling.attributes.yPos;  //  // set some of the style 
values from XML data  xmlMenuBar.setStyle("fontFamily", 
myDP_xml.firstChild.nextSibling.attributes.menuFont);  
xmlMenuBar.setStyle("fontSize", 
myDP_xml.firstChild.nextSibling.attributes.menuFontSize);  
xmlMenuBar.setStyle("themeColor", 
myDP_xml.firstChild.nextSibling.attributes.menuColour);  //  // populate the 
menu with the XML values  xmlMenuBar.dataProvider = myDP_xml.firstChild;  
//trace(myDP_xml.firstChild); } else {  trace("error loading XML file"); 
}};myDP_xml.load("menuBarXML.xml"); The listenered for the file menu (and 
submenus)fileListener = new Object();fileListener.change = 
function(eventObj:Object):Void  { trace("--"); 
//trace(eventObj.menuItem.attributes.label); // var menuNum = eventObj.menu; 
//trace(menuNum); // var menuItemNum = 
eventObj.menu.indexOf(eventObj.menuItem); //trace(menuItemNum); // 
eventObj.menu.TextArea.setStyle("fontStyle", "italic"); // var 
myItem:mx.controls.Menu = xmlMenuBar.getMenuItemAt(eventObj.menuItem); 
//trace(myItem); //trace(eventObj.menu); //trace("getMenuAt -> 
"+xmlMenuBar.getMenuAt(menuItemNum)); var instName = 
eventObj.menuItem.attributes.instanceName; trace(instName); // 
xmlMenuBar.menuNum.setMenuItemSelected(instName, true);  // 
switch(eventObj.menuItem.attributes.linkType) {  case "web":   
//getURL(eventObj.menuItem.attributes.linkTo, "_blank");   break;  case 
"email":   //getURL("mailto:"+eventObj.menuItem.attributes.linkTo, "_blank");   
break;  case "keyframe":   //gotoAndPlay(eventObj.menuItem.attributes.linkTo);  
 break;   }};// register the listeners with the separate 
menusxmlMenuBar.addEventListener("change", 
fileListener);stop();
And here's the xml test file used:
                              
         
        
Kind Regards,
Gareth Hudson.
___
Flashcoders@c

RE: [Flashcoders] flash movie don't load properly

2007-01-16 Thread Amandeep Singh
Preloader code is here:

var lod = this.getBytesLoaded();
var tot = this.getBytesTotal();
var per = (lod / tot) * 100;

if(per >= 100) {
// Jump to the desired frame 
} else {
// Jump to the desired frame
}



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gorka Guridi
Sent: Tuesday, January 16, 2007 5:46 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] flash movie don't load properly

It means the use of loadClip instead loadMovieNum?

Ok, I will try it.

Thanks

2007/1/16, Hans Wichman <[EMAIL PROTECTED]>:
>
> Hi,
> i might be missing something, but this looks like a version check to me,
> not
> a preloader?
>
> A preloader would wait until all bytes of the movie are loaded before
> doing
> stuff.
>
> greetz
> JC
>
>
> On 1/16/07, Gorka Guridi <[EMAIL PROTECTED]> wrote:
> >
> > I'm using a preloader, whose code is (one frame, one layer, without
> > classes
> > or components):
> >
> > var flashVersion = getVersion();
> > var upgradeFlashURL = 'http://www.macromedia.com/go/getflashplayer';
> > var arrayVersion = flashVersion.split( ' ' );  // For example: WIN
> 8,0,1,0
> > var arrayVersionMMR = arrayVersion[1].split( ',' );  // For example:
> > 8,0,1,0
> > var majorVersion = arrayVersionMMR[0];  // For example: 8
> > // _root.omv => Optimum Major Version parameter. For example: 8
> > var omv = 8;
> > // _root.mmv => Minimum Major Version parameter. For example: 7
> > var mmv = 7;
> >
> > //Get current path
> > var path = _url.split('/');
> > path.pop();
> > path = path.join('/');
> >
> > if( majorVersion >= _root.omv )
> > {
> >loadMovieNum( path + '/8.0/' + swf, 0, 'GET' );  // _root.mv_omv =>
> > flash movie for Optimum Major Version
> >//loadMovieNum( '
> >
> >
>
http://www.phemium.com/debug/private_zone/layouts/phemium/8.0/user_1.0.0.0.s
wf
> > ',
> > 0, 'GET' );
> > }
> > else if( majorVersion >= _root.mmv )
> > {
> >loadMovieNum( path + '/7.0/' + swf, 0, 'GET' );  // _root.mv_mmv =>
> > flash movie for Minimum Major Version
> > }
> > else
> > {
> >   // redirect to Macromedia upgrade flash version page
> >   getURL( "javascript:void(window.open('" + _root.upgradeFlashURL  +
> > "','popup','width=1024,height=768') )" );
> > }
> > stop();
> >
> > I have flash player 9 installed, and all test have been made with a
> flash
> > professional 8.0 movie (actionscript 2.0).
> >
> > Thanks for your interest.
> >
> > Best regards, Gorka.
> >
> > 2007/1/16, Amandeep Singh <[EMAIL PROTECTED]>:
> > >
> > > I think you must use a preloader to load your movie.
> > > As this happen because your file does not loads fully and executes
> till
> > > the
> > > point it loads. To over come this use a perloader.
> > >
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf Of Gorka
> > > Guridi
> > > Sent: Tuesday, January 16, 2007 4:14 PM
> > > To: flashcoders@chattyfig.figleaf.com
> > > Subject: [Flashcoders] flash movie don't load properly
> > >
> > > Hi all,
> > >
> > > I have a problem with a flash movie. All the code is inserted in first
> > > frame, but in different layers, many layers (it's my own organization
> > > system
> > > :P). Sometimes flash loads and code is executed properly, but
> sometimes
> > > not,
> > > and visual components are not showed at all (some buttons appear,
> other
> > > not,
> > > each time code seem to stop in a different line).
> > >
> > > I have removed all "stop();" functions inside code, and only have left
> > the
> > > last in each frame (I have two frames in my movie, but second not load
> > > until
> > > I press a button. I have problems with first frame only, just for
> load).
> > >
> > > Thanks a lot for any idea.
> > >
> > > Best regards, Gorka.
> > > ___
> > > 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
> > >
> >
> >
> >
> > --
> > Atentamente, Gorka
> > ___
> > 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 movie don't load properly

2007-01-16 Thread Gorka Guridi

It means the use of loadClip instead loadMovieNum?

Ok, I will try it.

Thanks

2007/1/16, Hans Wichman <[EMAIL PROTECTED]>:


Hi,
i might be missing something, but this looks like a version check to me,
not
a preloader?

A preloader would wait until all bytes of the movie are loaded before
doing
stuff.

greetz
JC


On 1/16/07, Gorka Guridi <[EMAIL PROTECTED]> wrote:
>
> I'm using a preloader, whose code is (one frame, one layer, without
> classes
> or components):
>
> var flashVersion = getVersion();
> var upgradeFlashURL = 'http://www.macromedia.com/go/getflashplayer';
> var arrayVersion = flashVersion.split( ' ' );  // For example: WIN
8,0,1,0
> var arrayVersionMMR = arrayVersion[1].split( ',' );  // For example:
> 8,0,1,0
> var majorVersion = arrayVersionMMR[0];  // For example: 8
> // _root.omv => Optimum Major Version parameter. For example: 8
> var omv = 8;
> // _root.mmv => Minimum Major Version parameter. For example: 7
> var mmv = 7;
>
> //Get current path
> var path = _url.split('/');
> path.pop();
> path = path.join('/');
>
> if( majorVersion >= _root.omv )
> {
>loadMovieNum( path + '/8.0/' + swf, 0, 'GET' );  // _root.mv_omv =>
> flash movie for Optimum Major Version
>//loadMovieNum( '
>
>
http://www.phemium.com/debug/private_zone/layouts/phemium/8.0/user_1.0.0.0.swf
> ',
> 0, 'GET' );
> }
> else if( majorVersion >= _root.mmv )
> {
>loadMovieNum( path + '/7.0/' + swf, 0, 'GET' );  // _root.mv_mmv =>
> flash movie for Minimum Major Version
> }
> else
> {
>   // redirect to Macromedia upgrade flash version page
>   getURL( "javascript:void(window.open('" + _root.upgradeFlashURL  +
> "','popup','width=1024,height=768') )" );
> }
> stop();
>
> I have flash player 9 installed, and all test have been made with a
flash
> professional 8.0 movie (actionscript 2.0).
>
> Thanks for your interest.
>
> Best regards, Gorka.
>
> 2007/1/16, Amandeep Singh <[EMAIL PROTECTED]>:
> >
> > I think you must use a preloader to load your movie.
> > As this happen because your file does not loads fully and executes
till
> > the
> > point it loads. To over come this use a perloader.
> >
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Gorka
> > Guridi
> > Sent: Tuesday, January 16, 2007 4:14 PM
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: [Flashcoders] flash movie don't load properly
> >
> > Hi all,
> >
> > I have a problem with a flash movie. All the code is inserted in first
> > frame, but in different layers, many layers (it's my own organization
> > system
> > :P). Sometimes flash loads and code is executed properly, but
sometimes
> > not,
> > and visual components are not showed at all (some buttons appear,
other
> > not,
> > each time code seem to stop in a different line).
> >
> > I have removed all "stop();" functions inside code, and only have left
> the
> > last in each frame (I have two frames in my movie, but second not load
> > until
> > I press a button. I have problems with first frame only, just for
load).
> >
> > Thanks a lot for any idea.
> >
> > Best regards, Gorka.
> > ___
> > 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
> >
>
>
>
> --
> Atentamente, Gorka
> ___
> 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





--
Atentamente, Gorka
___
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] mc preloader

2007-01-16 Thread Igor Costa

Mike,


check out here

http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php



Regards.


On 1/15/07, Mike Dunlop <[EMAIL PROTECTED]> wrote:


Hi everyone,

I have a question that is probably easy for you guys. How can i get a
preloader into the following ?


mc.createEmptyMovieClip("img", 10);
mc.img.loadMovie(some_image_path);
mc.onEnterFrame = function() {


// want to put a preloader bar/circle/something to show the load
progress on
// on the image loading into mc.img

}

Thanks a bunch as always!


.
Mike Dunlop
// Droplab
[ e ] [EMAIL PROTECTED]


___
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





--

Igor Costa
www.igorcosta.org
www.igorcosta.com
skype: igorpcosta
___
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 movie don't load properly

2007-01-16 Thread Hans Wichman

Hi,
i might be missing something, but this looks like a version check to me, not
a preloader?

A preloader would wait until all bytes of the movie are loaded before doing
stuff.

greetz
JC


On 1/16/07, Gorka Guridi <[EMAIL PROTECTED]> wrote:


I'm using a preloader, whose code is (one frame, one layer, without
classes
or components):

var flashVersion = getVersion();
var upgradeFlashURL = 'http://www.macromedia.com/go/getflashplayer';
var arrayVersion = flashVersion.split( ' ' );  // For example: WIN 8,0,1,0
var arrayVersionMMR = arrayVersion[1].split( ',' );  // For example:
8,0,1,0
var majorVersion = arrayVersionMMR[0];  // For example: 8
// _root.omv => Optimum Major Version parameter. For example: 8
var omv = 8;
// _root.mmv => Minimum Major Version parameter. For example: 7
var mmv = 7;

//Get current path
var path = _url.split('/');
path.pop();
path = path.join('/');

if( majorVersion >= _root.omv )
{
   loadMovieNum( path + '/8.0/' + swf, 0, 'GET' );  // _root.mv_omv =>
flash movie for Optimum Major Version
   //loadMovieNum( '

http://www.phemium.com/debug/private_zone/layouts/phemium/8.0/user_1.0.0.0.swf
',
0, 'GET' );
}
else if( majorVersion >= _root.mmv )
{
   loadMovieNum( path + '/7.0/' + swf, 0, 'GET' );  // _root.mv_mmv =>
flash movie for Minimum Major Version
}
else
{
  // redirect to Macromedia upgrade flash version page
  getURL( "javascript:void(window.open('" + _root.upgradeFlashURL  +
"','popup','width=1024,height=768') )" );
}
stop();

I have flash player 9 installed, and all test have been made with a flash
professional 8.0 movie (actionscript 2.0).

Thanks for your interest.

Best regards, Gorka.

2007/1/16, Amandeep Singh <[EMAIL PROTECTED]>:
>
> I think you must use a preloader to load your movie.
> As this happen because your file does not loads fully and executes till
> the
> point it loads. To over come this use a perloader.
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Gorka
> Guridi
> Sent: Tuesday, January 16, 2007 4:14 PM
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] flash movie don't load properly
>
> Hi all,
>
> I have a problem with a flash movie. All the code is inserted in first
> frame, but in different layers, many layers (it's my own organization
> system
> :P). Sometimes flash loads and code is executed properly, but sometimes
> not,
> and visual components are not showed at all (some buttons appear, other
> not,
> each time code seem to stop in a different line).
>
> I have removed all "stop();" functions inside code, and only have left
the
> last in each frame (I have two frames in my movie, but second not load
> until
> I press a button. I have problems with first frame only, just for load).
>
> Thanks a lot for any idea.
>
> Best regards, Gorka.
> ___
> 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
>



--
Atentamente, Gorka
___
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 movie don't load properly

2007-01-16 Thread Gorka Guridi

I'm using a preloader, whose code is (one frame, one layer, without classes
or components):

var flashVersion = getVersion();
var upgradeFlashURL = 'http://www.macromedia.com/go/getflashplayer';
var arrayVersion = flashVersion.split( ' ' );  // For example: WIN 8,0,1,0
var arrayVersionMMR = arrayVersion[1].split( ',' );  // For example: 8,0,1,0
var majorVersion = arrayVersionMMR[0];  // For example: 8
// _root.omv => Optimum Major Version parameter. For example: 8
var omv = 8;
// _root.mmv => Minimum Major Version parameter. For example: 7
var mmv = 7;

//Get current path
var path = _url.split('/');
path.pop();
path = path.join('/');

if( majorVersion >= _root.omv )
{
   loadMovieNum( path + '/8.0/' + swf, 0, 'GET' );  // _root.mv_omv =>
flash movie for Optimum Major Version
   //loadMovieNum( '
http://www.phemium.com/debug/private_zone/layouts/phemium/8.0/user_1.0.0.0.swf',
0, 'GET' );
}
else if( majorVersion >= _root.mmv )
{
   loadMovieNum( path + '/7.0/' + swf, 0, 'GET' );  // _root.mv_mmv =>
flash movie for Minimum Major Version
}
else
{
  // redirect to Macromedia upgrade flash version page
  getURL( "javascript:void(window.open('" + _root.upgradeFlashURL  +
"','popup','width=1024,height=768') )" );
}
stop();

I have flash player 9 installed, and all test have been made with a flash
professional 8.0 movie (actionscript 2.0).

Thanks for your interest.

Best regards, Gorka.

2007/1/16, Amandeep Singh <[EMAIL PROTECTED]>:


I think you must use a preloader to load your movie.
As this happen because your file does not loads fully and executes till
the
point it loads. To over come this use a perloader.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gorka
Guridi
Sent: Tuesday, January 16, 2007 4:14 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] flash movie don't load properly

Hi all,

I have a problem with a flash movie. All the code is inserted in first
frame, but in different layers, many layers (it's my own organization
system
:P). Sometimes flash loads and code is executed properly, but sometimes
not,
and visual components are not showed at all (some buttons appear, other
not,
each time code seem to stop in a different line).

I have removed all "stop();" functions inside code, and only have left the
last in each frame (I have two frames in my movie, but second not load
until
I press a button. I have problems with first frame only, just for load).

Thanks a lot for any idea.

Best regards, Gorka.
___
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





--
Atentamente, Gorka
___
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 movie don't load properly

2007-01-16 Thread Amandeep Singh
I think you must use a preloader to load your movie.
As this happen because your file does not loads fully and executes till the
point it loads. To over come this use a perloader.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gorka Guridi
Sent: Tuesday, January 16, 2007 4:14 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] flash movie don't load properly

Hi all,

I have a problem with a flash movie. All the code is inserted in first
frame, but in different layers, many layers (it's my own organization system
:P). Sometimes flash loads and code is executed properly, but sometimes not,
and visual components are not showed at all (some buttons appear, other not,
each time code seem to stop in a different line).

I have removed all "stop();" functions inside code, and only have left the
last in each frame (I have two frames in my movie, but second not load until
I press a button. I have problems with first frame only, just for load).

Thanks a lot for any idea.

Best regards, Gorka.
___
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 movie don't load properly

2007-01-16 Thread Gorka Guridi

Hi all,

I have a problem with a flash movie. All the code is inserted in first
frame, but in different layers, many layers (it's my own organization system
:P). Sometimes flash loads and code is executed properly, but sometimes not,
and visual components are not showed at all (some buttons appear, other not,
each time code seem to stop in a different line).

I have removed all "stop();" functions inside code, and only have left the
last in each frame (I have two frames in my movie, but second not load until
I press a button. I have problems with first frame only, just for load).

Thanks a lot for any idea.

Best regards, Gorka.
___
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] RE: Re: XML and line breaks (Karina Steffens)

2007-01-16 Thread Stephen Ford
Thanks Karina, that was the other issue, setting htmlText to true instead of 
just html.___
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] (no subject)

2007-01-16 Thread Adam Raft
The function look like this:

private function nextSlide():Void {
  
  slide_num++;
  if(slide_num > total_slides) slide_num = 1; 

  container_1_x -= image_width;
  container_2_x -= image_width;
  
  if(slide_num == 2){
   container_2_x = image_width;
   if(image_container_2_mc.getDepth() > image_container_1_mc.getDepth()
)
image_container_1_mc.swapDepths(image_container_2_mc);
  }
  
  if(slide_num == total_slides){
   container_1_x = image_width;
   if(image_container_1_mc.getDepth() > image_container_2_mc.getDepth()
)
image_container_2_mc.swapDepths(image_container_1_mc);
  }
  
  ZigoEngine.doTween({target:image_container_1_mc, x:container_1_x,
seconds:2, ease:"easeOutQuart"});  
  ZigoEngine.doTween({target:image_container_2_mc, x:container_2_x,
seconds:2, ease:"easeOutQuart"}); 

 }

There are image_container in order to make a image carouse. I am afraid
that it does not help any!

 

Adam  

 

 

 

 

What does the "nextOne" function look like?

On 1/15/07, Adam Raft <[EMAIL PROTECTED]> wrote:

> I use setInterval to change slides in a slidshow class. It all work

> fine until it put the slideshow into a project with more than one
show.

> Iven the different show are located in different swf files that are

> loaded and unloaded frome the main file it seems that the

> Intrevalobjects stays in memory and for each time the increasses
making

> the show goes faster and faster. I used:

>

> var ID = setInterval(this, "nextOne", 2000);

>

> I would had thought that "this" would keep the call to the scope of

> object that inisiated the setInterval.

>

> Well I also tryed to implement kenny bunch's IntervalManager Class -
no

> help there.

>

> Any sugestions?

>

>

> Adam

> ___

> 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  

>

 

-- 

T. Michael Keesey

Director of Technology

Exopolis, Inc.

2894 Rowena Avenue Ste. B

Los Angeles, California 90039

--

The Dinosauricon: http://dino.lm.com  

Parry & Carney: http://parryandcarney.com  

ISPN Forum: http://www.phylonames.org/forum/
 

___
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] Need a little help with rtmp and streaming video...

2007-01-16 Thread Shang

Can it be crossdomain.xml problem?

Try to use some traffic monitoring software to see what is your flash loading.

HttpWatch: http://www.httpwatch.com
TamperData: http://tamperdata.mozdev.org/

On 1/16/07, Rob Bayne <[EMAIL PROTECTED]> wrote:

are you using "speedera" or a co-located server?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Jeff
Small
Sent: Monday, January 15, 2007 2:11 PM
To: Flashnewbie Mailing List; Flashcoders mailing list
Subject: [Flashcoders] Need a little help with rtmp and streaming
video...


Anyone else had this problem?

I've got a video that Akamai has indicated is rendered and working
fine. They've tested it on their end and all is good. I've used the
Dreamweaver "Insert Flash Video" command. I've entered the rtmp url
correctly. I've uploaded ALL the required files, including main.acs,
and the AC_RunActiveContent.js file, and all the SWF skins. Everything
is in the right place. I've used this "Insert Flash Video" command on
a plain, white, blank html page with no additional markup.

Whenever I hit the page, I get nothing. No error, nothing indicating
anything is wrong. In fact... I simply get *nothing* on the page. My
status bar on the browser indicates I have an open connection to my
development server, but nothing ever displays.

Anyone tried inserting streaming video from a streaming server and
gotten *nothing* before? The video is fine, in fact, they even put up
a "test" flv file for me, and I can't even get that one to display
correctly. The urls are perfect. Just no flash. I've tested in Safari,
IE and Firefox on a Mac, IE and Firefox on Windows, and
just...nothing. I'm about to pull my hair out. This is supposed to be
a very straightforward process, but it seems like it's everything but.
___
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




--
/*
Bored, sometimes.
*/
___
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