Re: [Flashcoders] Q: creating oval mask with 4 bezier points

2006-06-01 Thread mike cann

Hi,

There are probably better examples if you googled around a while but I found
these usefull:

http://www.nuran.org/  (Click closed spline on the right hand side)

http://recycle.andre-michelle.com/geometry/bezier/ (
bezier3_circle_approximationhttp://recycle.andre-michelle.com/geometry/bezier/bezier3_circle_approximation.zip
)

Mike

On 31/05/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


Hi
I want to use the drawing api to create an oval mask whose shape is
controlled by 4 bezier points.

To start I need to look into simulating bezier control points in flash.

Can anyone point me in the right direction?

Thanks in advance

Jim Bachalo

[e] jbach at bitstream.ca
[c] 416.668.0034
[w] www.bitstream.ca

...all improvisation is life in search of a style.
 - Bruce Mau,'LifeStyle'
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Q: creating oval mask with 4 bezier points

2006-06-01 Thread Janis Radins

Meybe this http://www.mediaverk.lv/asd/#ellipse can help you.

2006/6/1, mike cann [EMAIL PROTECTED]:


Hi,

There are probably better examples if you googled around a while but I
found
these usefull:

http://www.nuran.org/  (Click closed spline on the right hand side)

http://recycle.andre-michelle.com/geometry/bezier/ (
bezier3_circle_approximation
http://recycle.andre-michelle.com/geometry/bezier/bezier3_circle_approximation.zip

)

Mike

On 31/05/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Hi
 I want to use the drawing api to create an oval mask whose shape is
 controlled by 4 bezier points.

 To start I need to look into simulating bezier control points in flash.

 Can anyone point me in the right direction?

 Thanks in advance

 Jim Bachalo

 [e] jbach at bitstream.ca
 [c] 416.668.0034
 [w] www.bitstream.ca
 
 ...all improvisation is life in search of a style.
  - Bruce Mau,'LifeStyle'
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] How to remove indent for LI with CSS?

2006-06-01 Thread MetaArt
why don't use the same server side script language? If you check that user
will see the page with Flash, you can correct the text accordingly...
something like this (using PHP):
$mytxt = str_replace(ulli,br $mytxt);
$mytxt = str_replace(/lili,br  $mytxt);
$mytxt = str_replace(/li/ul,br $mytxt);

* Enrico Tomaselli
* web designer
[EMAIL PROTECTED]
http://www.metatad.it
* Skype: MetaArt
RSS: http://www.metatad.it/mnfeeder.php

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] How to remove indent for LI with CSS?

2006-06-01 Thread Josh Santangelo

Get rid of the li in your AS code.

var txt = txt.split('li').join('#249;');
myfield.htmlText = txt;

-josh


On Jun 1, 2006, at 12:35a, GregoryN wrote:


Hello Josh,

Thanks for your reply.
The matter is that I HAVE to use LI as same text is used by
alternative non-flash versions.

All text data for this application is stored in DB .
When someone comes to see it, a script (SWFObject and some
server-side) checks if this user have proper flash player installed.
If not (or if this is SE), they will see HTML version.
And, as the text for this HTML version is taken from the same DB
records, it is preferably that I use LI for list which is standard/SE
compliant way to go.

This is why I am stick to using LI, not just any bullet.

More suggestions?



--
Best regards,
 GregoryN

http://GOusable.com
Flash components development.
Usability services.


 Josh Santangelo wrote:
Instead of using li, just use the entity for a bullet character,
#249; or something.

-josh

On May 31, 2006, at 10:10a, GregoryN wrote:


Hello all,

I'm trying to  remove indent for LI elements in html textfield (MX
2004). Client wants this.

In normal HTML/CSS we can just write:
   li {margin-left: 0;}

Seems in Flash this indent for LI is hard-built-in, at least I can't
find a way to get rid of it.

I'm not considered dirty tricks like move all textfield to the left
and set 'margin-left: X' for all non-LI elements... so far.

I'd appreciate any help in this issue.

Thanks in advance.


--
Best regards,
 GregoryN



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] [URGENT] Flash effect/transition samples

2006-06-01 Thread Bernard Visscher
http://www.bit-101.com/content/
Here is a list of all swf's of his old lab.
I found that the old lab on the site isn't working.
But the site is worth looking at.



-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens Telmo Dias
Verzonden: donderdag 1 juni 2006 2:12
Aan: Flashcoders mailing list
Onderwerp: Re: [Flashcoders] [URGENT] Flash effect/transition samples

Try this:

http://www.actionscript.org/tutorials/advanced/Tween-Easing_Classes_Document
ed/index.shtml

8ball Developer wrote:
 This is good, but I'm looking for very simple things like bounce 
 effect and
 such.

 On 5/31/06, André Goliath [EMAIL PROTECTED] wrote:

 Something like this?

 http://www.experiment23.de/tmp/index.html

 (the menu are the small bars at the left)

 hth

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of 8ball
 Developer
 Sent: Wednesday, May 31, 2006 7:31 PM
 To: Flashcoders mailing list
 Subject: [Flashcoders] [URGENT] Flash effect/transition samples

 Hi all,

 I have a client coming in today who wants see some sample
 effects/transitions to apply to different parts of the Flash work. Do 
 you
 have links to such samples where I can go through them with him? Any 
 help
 is
 much appreciated.

 Thanks,
 Ben
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Using accessibility features through code

2006-06-01 Thread Danny Kodicek
Is there any way to access the text-to-speech facility directly? An 
equivalent of Director's 'voiceSpeak()' command? I'd like to be able to tell 
Flash to say a particular bit of text on command, rather than relying on 
someone else's screen reader.


Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] flickering components, depth issue?

2006-06-01 Thread Kent Humphrey

http://devqa.exnis.net/vanclarke.com/www/index.html

Go to News  PR/Fashion Shows and News  PR/Photo Gallery

The Fashion Shows page is using the FLV Playback from Flash 8, the  
Photo Gallery is using thumbgallery from www.flashrelief.com


Perhaps foolishly, I have been developing this on a Mac with the  
Flash 9 plugin installed, and these 2 components behave perfectly.  
But it seems for anyone else they don't. I have since reinstalled  
Flash Player 8 and I too get the flickering issue.


The pages above are external .swfs that are loaded into a parent swf  
with .loadClip. I am guessing the problems I have are due to using  
getNextHighestDepth() rather than the depthManager class, is that  
right? Can anyone point me to a tutorial on how to use it? I've done  
some googling and found nothing : 
___

Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] flickering components, depth issue?

2006-06-01 Thread Ramon Miguel M. Tayag

I use getNextHighest and it has always worked fine.  I don't see why
it should be a problem - unless you change your depths in the middle
of the movie for some reason.

On 6/1/06, Kent Humphrey [EMAIL PROTECTED] wrote:

http://devqa.exnis.net/vanclarke.com/www/index.html

Go to News  PR/Fashion Shows and News  PR/Photo Gallery

The Fashion Shows page is using the FLV Playback from Flash 8, the
Photo Gallery is using thumbgallery from www.flashrelief.com

Perhaps foolishly, I have been developing this on a Mac with the
Flash 9 plugin installed, and these 2 components behave perfectly.
But it seems for anyone else they don't. I have since reinstalled
Flash Player 8 and I too get the flickering issue.

The pages above are external .swfs that are loaded into a parent swf
with .loadClip. I am guessing the problems I have are due to using
getNextHighestDepth() rather than the depthManager class, is that
right? Can anyone point me to a tutorial on how to use it? I've done
some googling and found nothing :
___


--
Ramon Miguel M. Tayag
Managing Director
Quirkworks
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] flickering components, depth issue?

2006-06-01 Thread Kent Humphrey
I can understand perhaps that components get picky about getting  
moved around, but I am loading these components in as part of a  
normal .swf - surely that's ok?


There is no funky changing of depths going on, they get loaded in,  
they then get removed when another one is loaded.


Can anyone confirm that this IS what happens when you use  
getNextHighestDepth() with components instead of the depthManager class?


On 1 Jun 2006, at 12:11, Ramon Miguel M. Tayag wrote:


I use getNextHighest and it has always worked fine.  I don't see why
it should be a problem - unless you change your depths in the middle
of the movie for some reason.

On 6/1/06, Kent Humphrey [EMAIL PROTECTED] wrote:

http://devqa.exnis.net/vanclarke.com/www/index.html

Go to News  PR/Fashion Shows and News  PR/Photo Gallery

The Fashion Shows page is using the FLV Playback from Flash 8, the
Photo Gallery is using thumbgallery from www.flashrelief.com

Perhaps foolishly, I have been developing this on a Mac with the
Flash 9 plugin installed, and these 2 components behave perfectly.
But it seems for anyone else they don't. I have since reinstalled
Flash Player 8 and I too get the flickering issue.

The pages above are external .swfs that are loaded into a parent swf
with .loadClip. I am guessing the problems I have are due to using
getNextHighestDepth() rather than the depthManager class, is that
right? Can anyone point me to a tutorial on how to use it? I've done
some googling and found nothing :
___


--
Ramon Miguel M. Tayag
Managing Director
Quirkworks
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] [URGENT] Flash effect/transition samples

2006-06-01 Thread Serge Jespers
http://weblogs.macromedia.com/mc/archives/2006/04/ 
transition_and.cfm#more

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] flickering components, depth issue?

2006-06-01 Thread Kent Humphrey
I just turned off the mask that was cropping the loaded .swf to the  
correct size, and now things are working fine:


http://devqa.exnis.net/vanclarke.com/www/index2.html

Is there something special I need to do to use a mask with a  
loaded .swf that has a component in it?


On 1 Jun 2006, at 12:11, Ramon Miguel M. Tayag wrote:


I use getNextHighest and it has always worked fine.  I don't see why
it should be a problem - unless you change your depths in the middle
of the movie for some reason.

On 6/1/06, Kent Humphrey [EMAIL PROTECTED] wrote:

http://devqa.exnis.net/vanclarke.com/www/index.html

Go to News  PR/Fashion Shows and News  PR/Photo Gallery

The Fashion Shows page is using the FLV Playback from Flash 8, the
Photo Gallery is using thumbgallery from www.flashrelief.com

Perhaps foolishly, I have been developing this on a Mac with the
Flash 9 plugin installed, and these 2 components behave perfectly.
But it seems for anyone else they don't. I have since reinstalled
Flash Player 8 and I too get the flickering issue.

The pages above are external .swfs that are loaded into a parent swf
with .loadClip. I am guessing the problems I have are due to using
getNextHighestDepth() rather than the depthManager class, is that
right? Can anyone point me to a tutorial on how to use it? I've done
some googling and found nothing :
___


--
Ramon Miguel M. Tayag
Managing Director
Quirkworks
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] flickering components, depth issue?

2006-06-01 Thread mike cann

HI,

I had simmilar problems when using both the componants and the standard
getNextHighestDepth() on movieclips.
I reccomend using either getNextHighestDepth() and no componants or just the
DepthManager for everything.

Mike

On 01/06/06, Kent Humphrey [EMAIL PROTECTED] wrote:


I can understand perhaps that components get picky about getting
moved around, but I am loading these components in as part of a
normal .swf - surely that's ok?

There is no funky changing of depths going on, they get loaded in,
they then get removed when another one is loaded.

Can anyone confirm that this IS what happens when you use
getNextHighestDepth() with components instead of the depthManager class?

On 1 Jun 2006, at 12:11, Ramon Miguel M. Tayag wrote:

 I use getNextHighest and it has always worked fine.  I don't see why
 it should be a problem - unless you change your depths in the middle
 of the movie for some reason.

 On 6/1/06, Kent Humphrey [EMAIL PROTECTED] wrote:
 http://devqa.exnis.net/vanclarke.com/www/index.html

 Go to News  PR/Fashion Shows and News  PR/Photo Gallery

 The Fashion Shows page is using the FLV Playback from Flash 8, the
 Photo Gallery is using thumbgallery from www.flashrelief.com

 Perhaps foolishly, I have been developing this on a Mac with the
 Flash 9 plugin installed, and these 2 components behave perfectly.
 But it seems for anyone else they don't. I have since reinstalled
 Flash Player 8 and I too get the flickering issue.

 The pages above are external .swfs that are loaded into a parent swf
 with .loadClip. I am guessing the problems I have are due to using
 getNextHighestDepth() rather than the depthManager class, is that
 right? Can anyone point me to a tutorial on how to use it? I've done
 some googling and found nothing :
 ___

 --
 Ramon Miguel M. Tayag
 Managing Director
 Quirkworks
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Resume for Senior Flash Designer/Developer

2006-06-01 Thread Merrill, Jason
Beau, your e-mail bounces back as undeliverable:
[EMAIL PROTECTED]

If you can see this post, contact me offlist with his resume and work
samples.  Thanks,  

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Beau Gould
Sent: Thursday, June 01, 2006 4:57 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Resume for Senior Flash Designer/Developer

Hello,

I've got a very talented Flash Designer / Developer looking for F/T
work. He's open to pretty much any US location provided the job is
interesting, good benefits, etc.

If you're an employer and you'd like to see his resume, please contact
me off-list.

Thank you,
Beau J. Gould

Open Source Staffing
www.open-source-staffing.com
[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
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 accessibility features through code

2006-06-01 Thread Merrill, Jason
No, not natively at least.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Danny Kodicek
Sent: Thursday, June 01, 2006 6:31 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Using accessibility features through code

Is there any way to access the text-to-speech facility directly? An
equivalent of Director's 'voiceSpeak()' command? I'd like to be able
to tell
Flash to say a particular bit of text on command, rather than relying
on
someone else's screen reader.

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] On key press?

2006-06-01 Thread Tony Watkins
Is it still possible to use actual keys to control a movie? Good resource
for this?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] On key press?

2006-06-01 Thread Merrill, Jason
Yes - just read up on the Key class.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Tony Watkins
Sent: Thursday, June 01, 2006 9:08 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] On key press?

Is it still possible to use actual keys to control a movie? Good
resource
for this?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Tool for creating UML diagrams from ActionScript codeother than Enterprise architect?

2006-06-01 Thread Ron Wheeler
doxygen generates complete documentation with class diagrams for 
Actionscript.


Has a little trouble with typing and could really use an actionscript 
preprocessor but works well without it.
Use Javadoc coding in your comments and you get a nicely done standard 
documentation set.


Has an Eclipse plug-in.

Ron

Adam Pasztory wrote:
I'm still using gModeler.  Though I have to admit it's getting a bit 
long

in the tooth.


Is anyone aware of such a tool?  I have some classes that I would 
love to

generate actual UML diagrams for.



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Tool for creating UML diagrams from ActionScript codeother than Enterprise architect?

2006-06-01 Thread Ron Wheeler

Free as wel.

Ron Wheeler wrote:
doxygen generates complete documentation with class diagrams for 
Actionscript.


Has a little trouble with typing and could really use an actionscript 
preprocessor but works well without it.
Use Javadoc coding in your comments and you get a nicely done standard 
documentation set.


Has an Eclipse plug-in.

Ron

Adam Pasztory wrote:
I'm still using gModeler.  Though I have to admit it's getting a bit 
long

in the tooth.


Is anyone aware of such a tool?  I have some classes that I would 
love to

generate actual UML diagrams for.



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Shared font symbols, dynamic text fields, and Flash Player 7

2006-06-01 Thread erixtekila


Le 31 mai 06, à 01:48, Josh Santangelo a écrit :

I'm working on a site which uses shared font symbols in both static 
and dynamic text fields. In FP8, both work great. In FP7, only static 
text fields work. I'm wondering if anyone knows the secret trick to 
get dynamic ones to work as well.


Things I've tried:

- The SWF with the symbol exported is definitely loading before the 
SWF which is importing it

- Embedding all characters in a dynamic textfield in the source SWF
- Embedding all characters in a dynamic textfield in the target SWF
- Setting embedFonts to true on the target textfield

Any bright ideas?


Did you export the font lib for Flash 8 and used it with a version 7 
swf ?


---
erixtekila
http://blog.v-i-a.net/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] self published.

2006-06-01 Thread Bernard Visscher
socket server?
http://www.osflash.org/red5 ?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Tool for creating UML diagrams from ActionScript codeother than Enterprise architect?

2006-06-01 Thread Manuel Saint-Victor

Cool Thanks Guys-  I think I'm leaning toward the one that said ...free as
well!!!
Mani

On 6/1/06, Ron Wheeler [EMAIL PROTECTED] wrote:


Free as wel.

Ron Wheeler wrote:
 doxygen generates complete documentation with class diagrams for
 Actionscript.

 Has a little trouble with typing and could really use an actionscript
 preprocessor but works well without it.
 Use Javadoc coding in your comments and you get a nicely done standard
 documentation set.

 Has an Eclipse plug-in.

 Ron

 Adam Pasztory wrote:
 I'm still using gModeler.  Though I have to admit it's getting a bit
 long
 in the tooth.


 Is anyone aware of such a tool?  I have some classes that I would
 love to
 generate actual UML diagrams for.


 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] maxDepth for dynamic movieclips?

2006-06-01 Thread grimmwerks

I've got an app that's a glorfied slideshow, slowly adding mc's and
gettingNextHighestDepth() -- at some point I'm assuming it will get to
the maxDepth; what would be the best way of resetting this?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] setting the centerpoint of a movieclip?

2006-06-01 Thread grimmwerks

That'll do it! Thanks.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] self published.

2006-06-01 Thread Mike Britton

Red5 requires a jvm (or jre) on the server, if I read correctly.  I've been
trying to get my host to install one for shared hosting accounts, and would
use this red5 over localconnection if I were lucky enough to have java.

Mike
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] maxDepth for dynamic movieclips?

2006-06-01 Thread Zimmen
Well, when you have a slideshow that shows clips one after the other then 
you only really need 2 depths don't you ...
If not, perhaps some sort of depth manager that keeps track of used and 
unused depths...



- Original Message - 
From: grimmwerks [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, June 01, 2006 3:40 PM
Subject: [Flashcoders] maxDepth for dynamic movieclips?



I've got an app that's a glorfied slideshow, slowly adding mc's and
gettingNextHighestDepth() -- at some point I'm assuming it will get to
the maxDepth; what would be the best way of resetting this?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] maxDepth for dynamic movieclips?

2006-06-01 Thread Bernard Visscher
Well, I think the max depth is a 16bit integer, so the max would be 2^16
about 64k. But when you reach that I think the client will run out of memory
;)

But lets say you would like to do that, you could also have a few holders
that all start at depth 1:
mainMovie:
  - holder 1 @ depth 1
  - holder 2 @ depth 2
  - holder 3 @ depth 3

Holder 1 (@ depth 1 in the main)
  - image 1 @ depth 1 in the holder 1
  - image 2 @ depth 2 in holder 1

Etc...



-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens grimmwerks
Verzonden: donderdag 1 juni 2006 15:41
Aan: Flashcoders mailing list
Onderwerp: [Flashcoders] maxDepth for dynamic movieclips?

I've got an app that's a glorfied slideshow, slowly adding mc's and
gettingNextHighestDepth() -- at some point I'm assuming it will get to
the maxDepth; what would be the best way of resetting this?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] AICC Quiz

2006-06-01 Thread Lewis, Chuck
Has anyone ever used the Quiz (AICC) template and pulled in the users
name from the LMS and display it in the quiz itself?

I can see from the debug text it is pulling the data, but I am lost at
how to get into my movie.

-- Chuck


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] unsubscribe me please...too many emails

2006-06-01 Thread john chabak
please take me off your mailing list..i am getting a bombardment of emails its 
really too much. thanks

-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2¢/min or less.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] self published.

2006-06-01 Thread Bernard Visscher
Maybe if you have engough clients you could use a dedicated server for all
your clients with a maintenance contract so you don't have to do everything
yourself ;) But Yes Red5 needs java.
You can do something like this with php-sockets but then the hoster will
have to set safemode off (because of the runtime limit) and you will have a
permanent running script. I don't think the hoster will like to have that ;)

-Oorspronkelijk bericht-
Van: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Namens Mike Britton
Verzonden: donderdag 1 juni 2006 15:46
Aan: Flashcoders mailing list
Onderwerp: Re: [Flashcoders] self published.

Red5 requires a jvm (or jre) on the server, if I read correctly.  I've been
trying to get my host to install one for shared hosting accounts, and would
use this red5 over localconnection if I were lucky enough to have java.

Mike
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Manuel Saint-Victor

I' read years ago that directly asking pricing in a public forum is gauche
and  a good way to get a good flame going.  At the same time I quoted
someone a price the other day on my first attempt at freelancing and I could
hear their jaw drop and knew I low-balled my hourly.  The problem is that I
have no idea what I should be pricing at with my level of experience and am
not sure the polite way to invite a conversation on this.  If anyone is
willing to offlist me and school me as to the etiquette of discussing how
people are setting their prices and what a medium-advanced to advanced Flash
component developer is charging right now I would welcome the guidance-

Thanks guys-
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Looking for full time Flashcoder...

2006-06-01 Thread Lou Kinard
My company is looking for a good Flash coder. This is a full-time  
position with benefits located in Charlotte, N.C. However, we are  
open to a long-distance work relationship.


We do great work with companies like the Smithsonian, the Whitney  
Museum, PBS. We are regularly finalists in the SXSW and Webby awards  
-- just won our first Webby!


Do you have any ideas for where I can post our position?

If you know anyone who'd be interested, they can come to our site and  
learn more:


http://www.interactiveknowledge.com
http://www.interactiveknowledge.com/dreamjob.aspx




___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Tony Watkins
So, the following script will cause a MC to fade in. What would I change to
make a MC fade out?

onClipEvent (load) {
loadTime = getTimer();
alphaTime = 1000;
myAlpha = 0;
this._alpha = myAlpha;
}
onClipEvent (enterFrame) {
if (this._alpha100) {
myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
this._alpha = myAlpha;
}
}

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] maxDepth for dynamic movieclips?

2006-06-01 Thread Merrill, Jason
I've got an app that's a glorfied slideshow, slowly adding mc's and
gettingNextHighestDepth() -- at some point I'm assuming it will get to
the maxDepth; 

So at max depth you're going to have 16,000 movie clips?  Hmm. Just
change out the graphic in the clip - then you only need to use a few
depths, not 16,000 which would kill the player anyway.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of grimmwerks
Sent: Thursday, June 01, 2006 9:41 AM
To: Flashcoders mailing list
Subject: [Flashcoders] maxDepth for dynamic movieclips?

I've got an app that's a glorfied slideshow, slowly adding mc's and
gettingNextHighestDepth() -- at some point I'm assuming it will get to
the maxDepth; what would be the best way of resetting this?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] [URGENT] Flash effect/transition samples

2006-06-01 Thread 8ball Developer

thank you all very much.

On 6/1/06, Serge Jespers [EMAIL PROTECTED] wrote:


http://weblogs.macromedia.com/mc/archives/2006/04/
transition_and.cfm#more
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Flex Dirby

2006-06-01 Thread elibol

Hey guys,

Has anyone submitted any work to the Flex Dirby?

Here is what we've submitted: http://anticipatechange.com/derby/Main.html

Greets,

M.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] unsubscribe me please...too many emails

2006-06-01 Thread Nick Weekes

Theres always one, isnt there.


Dude, as is kindly written at the footer of your email, click here to 
change subscription options:


http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



john chabak wrote:

please take me off your mailing list..i am getting a bombardment of emails its 
really too much. thanks

-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2¢/min or less.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread mike cann

If you are going to take the discussion private can i ask politely to be
CC'ed in too pls as im very interested in this topic too :)

On 01/06/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote:


I' read years ago that directly asking pricing in a public forum is gauche
and  a good way to get a good flame going.  At the same time I quoted
someone a price the other day on my first attempt at freelancing and I
could
hear their jaw drop and knew I low-balled my hourly.  The problem is that
I
have no idea what I should be pricing at with my level of experience and
am
not sure the polite way to invite a conversation on this.  If anyone is
willing to offlist me and school me as to the etiquette of discussing how
people are setting their prices and what a medium-advanced to advanced
Flash
component developer is charging right now I would welcome the guidance-

Thanks guys-
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Full time Actionscript programmer position in NYC

2006-06-01 Thread Brian Weisenthal

I hope this is appropriate to post here, if not, sorry. We have interesting and 
rewarding opportunities and I wanted to make them available to you all.

9mmedia is looking for some serious flash programmers. Ideally we are looking to hire at least one more full time 
programmer and possibly some part time / freelancers to help get us 
through some large projects. We have an office in New York City, NOHO area. We work on everything from full Flash 
applications with Java backends (remoting rocks!), to multi-player games 
and fully database driven websites (even our CMS system is done in flash).


You must be very proficient in OOP with AS 2.0. You also have to be 
comfortable being responsible for application architecture, usability 
design, and working with other flash and java programmers. Projects are 
pretty challenging but always very interesting. Below is the job 
advertisement. Please feel free to pass this on and contact me as soon 
as you can.


Hope to hear back from some of you

Brian
www.9mmedia.com


---
9mmedia is multimedia firm that specializes in high end flash 
applications.  We have a team of 7 people currently, designers and 
programmers, all of us very passionate about what we do. We know no 
limits, work hard, and play hard. We are on the leading edge of 
technology combining slick flash front ends (online as well as offline) 
with Java, windows and other application layers.


We are looking for someone with a serious understanding of flash 
programming and UI architecture and design. We are NOT looking for 
designers and animators.


Requirements are as follows:
-Extremely familiar with AS 2.0(flash8 a plus).
-Proficient in object oriented programming.
-Comfortable using external actionscript source.
-Familiar with Flash Remoting
-Added consideration for Java, CVS, eclipse, FDT, database experience.

Please read through our website, www.9mmedia.com before applying. You 
can apply through the site or email resumes @ 9mmedia.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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Brian Mays
Mostly a graphic design oriented forum, but this probably has some areas
where you could discuss it.

http://forum.howdesign.com/

Good luck, been in your shoes,

Brian Mays


On 6/1/06 8:56 AM, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 If anyone is
 willing to offlist me and school me as to the etiquette of discussing how
 people are setting their prices and what a medium-advanced to advanced Flash
 component developer is charging right now I would welcome the guidance-

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Multiplayer System

2006-06-01 Thread mike cann

Hi,

I have been tasked with setting up a multiplayer enviroment for the company
i work for and i need some advice.

I am currently looking at SmartfoxServer and perhaps Red5. Im told money
isnt realy an issue, so things like ease of development, good documentation
and customer support become more important.

Im sure others have been in my situation before, so im asking for
reccomendations and suggestions.

Thanks
Mike
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Seb L

try this...

  myAlpha = ((alphaTime-(getTimer()-loadTime))/alphaTime)*100;


On 01/06/06, Tony Watkins [EMAIL PROTECTED] wrote:

So, the following script will cause a MC to fade in. What would I change to
make a MC fade out?

onClipEvent (load) {
loadTime = getTimer();
alphaTime = 1000;
myAlpha = 0;
this._alpha = myAlpha;
}
onClipEvent (enterFrame) {
if (this._alpha100) {
myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
this._alpha = myAlpha;
}
}

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] How to remove indent for LI with CSS?

2006-06-01 Thread GregoryN
Josh,

Well, I like this one:
var txt = txt.split('li').join('#249;');

Thanks a lot!


Enrico,
your solution seems good too. (maybe add a comma after 2nd argument :-)

However, for some reason I feel better about client-side (flash)
code...

Again, thanks for both of you.

While not with CSS, seems I've got a solution.
  

-- 
Best regards,
 GregoryN

http://GOusable.com
Flash components development.
Usability services.

 Enrico Tomaselli wrote:
 
 why don't use the same server side script language? If you check that user
 will see the page with Flash, you can correct the text accordingly...
 something like this (using PHP):
 $mytxt = str_replace(ulli,br $mytxt);
 $mytxt = str_replace(/lili,br  $mytxt);
 $mytxt = str_replace(/li/ul,br $mytxt);
 
 * Enrico Tomaselli
 * web designer
 [EMAIL PROTECTED]
 http://www.metatad.it
 * Skype: MetaArt
 RSS: http://www.metatad.it/mnfeeder.php
 
 
 
  Josh Santangelo wrote:
 
 Get rid of the li in your AS code.
 
 var txt = txt.split('li').join('#249;');
 myfield.htmlText = txt;
 
 -josh
 
 
 On Jun 1, 2006, at 12:35a, GregoryN wrote:
 
 Hello Josh,

 Thanks for your reply.
 The matter is that I HAVE to use LI as same text is used by
 alternative non-flash versions.

 All text data for this application is stored in DB .
 When someone comes to see it, a script (SWFObject and some
 server-side) checks if this user have proper flash player installed.
 If not (or if this is SE), they will see HTML version.
 And, as the text for this HTML version is taken from the same DB
 records, it is preferably that I use LI for list which is standard/SE
 compliant way to go.

 This is why I am stick to using LI, not just any bullet.

 More suggestions?



 -- 
 Best regards,
  GregoryN
 
 http://GOusable.com
 Flash components development.
 Usability services.

  Josh Santangelo wrote:
 Instead of using li, just use the entity for a bullet character,
 #249; or something.

 -josh

 On May 31, 2006, at 10:10a, GregoryN wrote:

 Hello all,

 I'm trying to  remove indent for LI elements in html textfield (MX
 2004). Client wants this.

 In normal HTML/CSS we can just write:
li {margin-left: 0;}

 Seems in Flash this indent for LI is hard-built-in, at least I can't
 find a way to get rid of it.

 I'm not considered dirty tricks like move all textfield to the left
 and set 'margin-left: X' for all non-LI elements... so far.

 I'd appreciate any help in this issue.

 Thanks in advance.


 -- 
 Best regards,
  GregoryN



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Brian Mays
I would be interested as well.

Brian


On 6/1/06 9:16 AM, mike cann [EMAIL PROTECTED] wrote:

 If you are going to take the discussion private can i ask politely to be
 CC'ed in too pls as im very interested in this topic too :)

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Scott Brantley

You could use the alphaTo property of the tween class. It's much easier.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tony
Watkins
Sent: Thursday, June 01, 2006 9:58 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Alpha fade problem

So, the following script will cause a MC to fade in. What would I change
to
make a MC fade out?

onClipEvent (load) {
loadTime = getTimer();
alphaTime = 1000;
myAlpha = 0;
this._alpha = myAlpha;
}
onClipEvent (enterFrame) {
if (this._alpha100) {
myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
this._alpha = myAlpha;
}
}

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Multiplayer System

2006-06-01 Thread Marcelo de Moraes Serpa

I´ve never used Red5 but as far as I know, even though it´s becoming very
powerful and it is a promising project, the current release isn´t
recommended to be used in production enviroments or any serious projects.
Someone correct me if I´m wrong ;)

Marcelo.

On 6/1/06, mike cann [EMAIL PROTECTED] wrote:


Hi,

I have been tasked with setting up a multiplayer enviroment for the
company
i work for and i need some advice.

I am currently looking at SmartfoxServer and perhaps Red5. Im told money
isnt realy an issue, so things like ease of development, good
documentation
and customer support become more important.

Im sure others have been in my situation before, so im asking for
reccomendations and suggestions.

Thanks
Mike
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Adrian Park

You'll also have to change...

if (this._alpha100) {

to

if (this._alpha0) {

On 6/1/06, Seb L [EMAIL PROTECTED] wrote:


try this...

   myAlpha = ((alphaTime-(getTimer()-loadTime))/alphaTime)*100;


On 01/06/06, Tony Watkins [EMAIL PROTECTED] wrote:
 So, the following script will cause a MC to fade in. What would I change
to
 make a MC fade out?

 onClipEvent (load) {
 loadTime = getTimer();
 alphaTime = 1000;
 myAlpha = 0;
 this._alpha = myAlpha;
 }
 onClipEvent (enterFrame) {
 if (this._alpha100) {
 myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
 this._alpha = myAlpha;
 }
 }

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Zimmen

You would need the MCtween class for that!

- Original Message - 
From: Scott Brantley [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, June 01, 2006 4:30 PM
Subject: RE: [Flashcoders] Alpha fade problem



You could use the alphaTo property of the tween class. It's much easier.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tony
Watkins
Sent: Thursday, June 01, 2006 9:58 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Alpha fade problem

So, the following script will cause a MC to fade in. What would I change
to
make a MC fade out?

onClipEvent (load) {
   loadTime = getTimer();
   alphaTime = 1000;
   myAlpha = 0;
   this._alpha = myAlpha;
}
onClipEvent (enterFrame) {
   if (this._alpha100) {
   myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
   this._alpha = myAlpha;
   }
}

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Rifled Cloaca

How Design would be a Graphic Design forum, yes?  From my experience,
graphic designer freelance rates are much lower than an advanced Flash
developers would be.

Yours would be on par with web/application developer rates.

-g


On 6/1/06, Brian Mays [EMAIL PROTECTED] wrote:


Mostly a graphic design oriented forum, but this probably has some areas
where you could discuss it.

http://forum.howdesign.com/

Good luck, been in your shoes,

Brian Mays


On 6/1/06 8:56 AM, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 If anyone is
 willing to offlist me and school me as to the etiquette of discussing
how
 people are setting their prices and what a medium-advanced to advanced
Flash
 component developer is charging right now I would welcome the guidance-

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Nick Weekes
imho it seems there are enough interested people on this list to warrant 
having the discussion here. 
The only thing I could suggest is posting which country you work in when 
discussing pricing, as it varies wildly from country to country.



Brian Mays wrote:

I would be interested as well.

Brian


On 6/1/06 9:16 AM, mike cann [EMAIL PROTECTED] wrote:

  

If you are going to take the discussion private can i ask politely to be
CC'ed in too pls as im very interested in this topic too :)



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Styles in Flash

2006-06-01 Thread Loren R. Elks
Hi:

Is creating or importing HTML rendered text and then using CSS the only
way to really have styles in Flash?

By styles, I am referring to styles like in MS Word,
character/paragraph tags in Framemaker, etc.

Thanks,
Loren
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] unsubscribe me please...too many emails

2006-06-01 Thread Marcelo de Moraes Serpa

It´s sometimes fun how people can be sometimes. I actually appreciate the
ammount of emails I receive from flashcoders as I learn a LOT from them and
sometimes can even teach and help someone. I use a gmail account just for
mailing lists, and have another one for personal use... sometimes it helps
to think more on how you could improve you life by making simple choices...
and of course, watch you email´s footer, always!

- Marcelo Serpa.

On 6/1/06, Nick Weekes [EMAIL PROTECTED] wrote:


Theres always one, isnt there.


Dude, as is kindly written at the footer of your email, click here to
change subscription options:

http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



john chabak wrote:
 please take me off your mailing list..i am getting a bombardment of
emails its really too much. thanks

 -
 Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+
countries) for 2¢/min or less.
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] tabIndex stops working, when combo-box component used in movie

2006-06-01 Thread Green, Martyn

I'm trying to set up a custom tab order. 

I have a test movie that just contains two clips. All works ok until I place a 
combo-box component on the stage. Then tabbing stops working completely. I've 
tried setting the tab order for each element using the accessibility panel and 
also using actionscript, and see the same thing each time. I'm publishing the 
movie as Actionscript 2.0, and viewing with flash player 8 (tested in Flash and 
also in a browser). 

I just found that I have the problem even if I delete the combo-box from the 
stage (but leave it in the library).

Any suggestions / links appreciated.

Thanks
Martyn






Global Search - find millions of archive records

http://www.nationalarchives.gov.uk/search/quick_search.aspx

---

National Archives Disclaimer


This email message (and attachments) may contain information that is 
confidential  to The National Archives.  If you are not the intended recipient 
you cannot use, distribute or copy the message or attachments.  In such a case, 
please notify the sender by return email immediately and erase all copies of 
the message and attachments.  Opinions, conclusions and other information in 
this message and attachments that do not relate to the official business of The 
National Archives are neither given nor endorsed by it.



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Zeh Fernando

 So, the following script will cause a MC to fade in. What would I change
 to make a MC fade out?



You could use the alphaTo property of the tween class. It's much easier.


Just to add: yes, use any other of the tweening extensions or classes 
available (fuse kit, laco tween, mctween). It's much easier this way and you 
can keep focused on making it look right (with the time/animation you want) 
instead of wasting time on making it work.



- Zeh 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Brian Mays

Oh, I don't know...I've charged some high design rates :-)

Seriously though, some in that forum I imagine have at least had experience
working with advanced Flash developers either in partnerships or as part of
a firm they all work in.  They've always been a pretty intelligent bunch
there, and if they don't know I imagine they'll tell you some place that
might be good for that discussion.

Brian Mays

On 6/1/06 9:46 AM, Rifled Cloaca [EMAIL PROTECTED] wrote:

 How Design would be a Graphic Design forum, yes?  From my experience,
 graphic designer freelance rates are much lower than an advanced Flash
 developers would be.
 
 Yours would be on par with web/application developer rates.
 
 -g

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Adrian Park

I'm also wrestling with this at the moment so would like to be included
in/pointed towards any discussion (if it doesn't continue here).

Whilst I appreciate the issues with discussing exact rates, I'd find it
useful to hear thoughts on things like:
- differences between freelance rates (managing the client yourself) vs.
contract rates (working in an agency).
- whether one should have a fixed rate for everything or if there is benefit
in having different rate scales. e.g. a lower rate for, say, basic banner
animation work vs. Flash application development work (I know this is a
coders list but I'm sure we all do other stuff)

Is it OK to discuss these things vaguely - e.g. A Flash coder with x years
experience should expect at least y but shouldn't really expect much more
than 2y?

Adrian P.

On 6/1/06, Nick Weekes [EMAIL PROTECTED] wrote:


imho it seems there are enough interested people on this list to warrant
having the discussion here.
The only thing I could suggest is posting which country you work in when
discussing pricing, as it varies wildly from country to country.


Brian Mays wrote:
 I would be interested as well.

 Brian


 On 6/1/06 9:16 AM, mike cann [EMAIL PROTECTED] wrote:


 If you are going to take the discussion private can i ask politely to
be
 CC'ed in too pls as im very interested in this topic too :)


 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] How to remove indent for LI with CSS?

2006-06-01 Thread phaedrus
 var txt = txt.split('li').join('#249;');

If your HTML might have /li tags, don't forget to remove them from your
string.  Technically shouldn't matter (they should just not display,
right?), but I'd do it anyway.

- phaedrus


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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 Multiplayer System

2006-06-01 Thread Clint Tredway
I have used the ElectroServer twice and found it easy to use and very robust. 
Jobe was also very helpful when questions or issues came up. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcelo de 
Moraes Serpa
Sent: Thursday, June 01, 2006 9:39 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Flash Multiplayer System

I´ve never used Red5 but as far as I know, even though it´s becoming very 
powerful and it is a promising project, the current release isn´t recommended 
to be used in production enviroments or any serious projects.
Someone correct me if I´m wrong ;)

Marcelo.

On 6/1/06, mike cann [EMAIL PROTECTED] wrote:

 Hi,

 I have been tasked with setting up a multiplayer enviroment for the 
 company i work for and i need some advice.

 I am currently looking at SmartfoxServer and perhaps Red5. Im told 
 money isnt realy an issue, so things like ease of development, good 
 documentation and customer support become more important.

 Im sure others have been in my situation before, so im asking for 
 reccomendations and suggestions.

 Thanks
 Mike
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] External MP3 and Looping

2006-06-01 Thread Simon de Turck

Hi!

Is it normal that encoders like Lame and sony's Soundforge MP3 encoder put a
bit of silence in front and after the sound? This completely breaks my load
external mp3 and be able loop these when needed idea... the loading works,
the looping works, there is just this gap between the loops. So, did anyone
have this problem before. (or is it part of the mp3 ensoding spec)

Simon
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Helmut Granda
What would qualify some one as advanced? Some one who is not familiar with
flash might see some simple animations and consider that person advanced
while others need to see hundreds of lines of AS, using OOP and taking
advantage of the latest features that the flash player can handle.

Again maybe that define your price as well.

...helmut

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brian Mays
Sent: Thursday, June 01, 2006 10:06 AM
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Where to politely and appropriately discuss
pricing issues


Oh, I don't know...I've charged some high design rates :-)

Seriously though, some in that forum I imagine have at least had experience
working with advanced Flash developers either in partnerships or as part of
a firm they all work in.  They've always been a pretty intelligent bunch
there, and if they don't know I imagine they'll tell you some place that
might be good for that discussion.

Brian Mays

On 6/1/06 9:46 AM, Rifled Cloaca [EMAIL PROTECTED] wrote:

 How Design would be a Graphic Design forum, yes?  From my experience, 
 graphic designer freelance rates are much lower than an advanced Flash 
 developers would be.
 
 Yours would be on par with web/application developer rates.
 
 -g

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricingissues

2006-06-01 Thread Jim Robson
I agree with Nick Weekes' suggestion that any pricing info should include
the country. I would also suggest that we break it down a bit further - by
region. I recently moved from Connecticut to northern Virginia (Washington
DC area) and have found that even within the US the pay scale from one
region to another can be significantly different - and so can the cost of
living. 



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Brian Mays
I've got some notes on this sort of thing, but I won't have access to them
until tonight...and wouldn't do them justice pulling them from memory.  I'll
see about pulling these together.

I don't have a fixed rate for everything I do.  If something is a lower type
of production, I do lower rates.  Some jobs that seem like they could be
administrative challenges I have marked up.

I shy away from doing hourly rates and I do estimates. An estimate is based
on what I would like to make hourly multiplied by how many hours I think it
will take...then I add in at least 1/3 more hours because there are always
unforeseen obstacles.  These days I just set a price and say, This is what
it takes to work with me.  No hourly if possible.


On 6/1/06 10:11 AM, Adrian Park [EMAIL PROTECTED] wrote:

 I'm also wrestling with this at the moment so would like to be included
 in/pointed towards any discussion (if it doesn't continue here).
 
 Whilst I appreciate the issues with discussing exact rates, I'd find it
 useful to hear thoughts on things like:
 - differences between freelance rates (managing the client yourself) vs.
 contract rates (working in an agency).
 - whether one should have a fixed rate for everything or if there is benefit
 in having different rate scales. e.g. a lower rate for, say, basic banner
 animation work vs. Flash application development work (I know this is a
 coders list but I'm sure we all do other stuff)
 
 Is it OK to discuss these things vaguely - e.g. A Flash coder with x years
 experience should expect at least y but shouldn't really expect much more
 than 2y?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] unsubscribe

2006-06-01 Thread Miguel Andres Clavera
hi
i want to UNSUBSCRIBE  to the list
thanks
 
_
Puedes estar entre los primeros en probar el futuro de la mensajería: prueba la 
versión beta de Windows Live Messenger
 
http://ideas.live.com/programpage.aspx?versionId=0eccd94b-eb48-497c-8e60-c6313f7ebb73___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Manuel Saint-Victor

Brian-
so in that case what's a ballpark for a medium project ( ok I know...what's
a medium project).   Say a company needs a componet set for a basic media
player that they will be in turn customizing for their clients and  I'm
providing an AS2  mvc based component set- that they can skin and extend and
charge their clients for the end tool.
To ask it directly- what is the ballpark $$ for the numbers that
developers(such as yourself) on the east coast are using to do this math.

I spent a few years as a lone developer while I was learning- moved to a
pretty major company and did some time with them and actually came to
realize that my skillset is up there and I have been way undercharging.  Now
I'm going to be doing some freelancing and want to make sure that I'm not
going out there as the idiot pulling prices down

M





On 6/1/06, Brian Mays [EMAIL PROTECTED] wrote:


I've got some notes on this sort of thing, but I won't have access to them
until tonight...and wouldn't do them justice pulling them from
memory.  I'll
see about pulling these together.

I don't have a fixed rate for everything I do.  If something is a lower
type
of production, I do lower rates.  Some jobs that seem like they could be
administrative challenges I have marked up.

I shy away from doing hourly rates and I do estimates. An estimate is
based
on what I would like to make hourly multiplied by how many hours I think
it
will take...then I add in at least 1/3 more hours because there are always
unforeseen obstacles.  These days I just set a price and say, This is
what
it takes to work with me.  No hourly if possible.


On 6/1/06 10:11 AM, Adrian Park [EMAIL PROTECTED] wrote:

 I'm also wrestling with this at the moment so would like to be included
 in/pointed towards any discussion (if it doesn't continue here).

 Whilst I appreciate the issues with discussing exact rates, I'd find it
 useful to hear thoughts on things like:
 - differences between freelance rates (managing the client yourself) vs.
 contract rates (working in an agency).
 - whether one should have a fixed rate for everything or if there is
benefit
 in having different rate scales. e.g. a lower rate for, say, basic
banner
 animation work vs. Flash application development work (I know this is a
 coders list but I'm sure we all do other stuff)

 Is it OK to discuss these things vaguely - e.g. A Flash coder with x
years
 experience should expect at least y but shouldn't really expect much
more
 than 2y?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread Merrill, Jason

How do you deal with cross domain linkin issues? In the Flash 7 and 8
security model, a cross domain policy XMl file is required to use getURL
to access other domains outside the domain the .swf is on.  So let me
get this straight, the file doesn't go on the server hosting the .swf,
it goes on on the server that is being linked TO.  Correct?

This bites, but how do you guys get www.amazon.com to host your cross
domain policy file?  Seems impossible.  Isn't this a big hassle that's
almost not worth pursuing?  

Or with Flash 7 and 8 players, do you just never reasonably have the
ability to link to most other Web sites?

Thanks

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] unsubscribe

2006-06-01 Thread Steve Rachels

no.  You're stuck here... forever.

Or you can look at the bottom of any of the emails you get from this 
list and use the there link to unsubscribe.



Miguel Andres Clavera wrote:


hi
i want to UNSUBSCRIBE  to the list
thanks


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Brian Mays
Manuel, if it's ok I'd like to answer this more in depth once I have access
to my notes.  For now let me say that arriving at what you want to charge
will need to take into account a few financial variables that will actually
help with all your freelance estimates from here on out (hopefully!).

I'm in the central part of the United States (Oklahoma) where we don't
charge as much for something as they would do on the coasts (NYC or San
Francisco).  

Do you quote hourly rates?


On 6/1/06 10:48 AM, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 Brian-
  so in that case what's a ballpark for a medium project ( ok I know...what's
 a medium project).   Say a company needs a componet set for a basic media
 player that they will be in turn customizing for their clients and  I'm
 providing an AS2  mvc based component set- that they can skin and extend and
 charge their clients for the end tool.
 To ask it directly- what is the ballpark $$ for the numbers that
 developers(such as yourself) on the east coast are using to do this math.
 
 I spent a few years as a lone developer while I was learning- moved to a
 pretty major company and did some time with them and actually came to
 realize that my skillset is up there and I have been way undercharging.  Now
 I'm going to be doing some freelancing and want to make sure that I'm not
 going out there as the idiot pulling prices down
 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Danny Kodicek
I want to have a function makeObject(tType:String) which returns an object 
of class tType. So makeObject(Array) should return a new Array object. Any 
good way to do this? I'm sure it's something simple.


And before you ask, yes, there is a reason why I need to do it this way...

Danny 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Brian Mays
Actually, a better idea may be for me to place my notes on a site.  I'll do
that this evening.

Thanks,
Brian 


On 6/1/06 10:48 AM, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 Brian-
  so in that case what's a ballpark for a medium 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


[Flashcoders] MP3 Playback Issues

2006-06-01 Thread Marlon Harrison

I'm putting together an mp3 player and when some mp3's are loaded, my
progress bar won't kick in, which seems to me like Flash can't
determine it's duration correctly. I also noticed that Sound.onLoad
either returns false or doesn't run on the mp3's in question.  The
sound still plays, but my progress bars won't begin.  Has anyone ahd
this issue before?  Are there certain settings that I should use for
encoding mp3's for optimal results in Flash?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Ian Thomas

Hi Danny,
mx.utils.ClassFinder.findClass(SomeClass) returns the constructor
function for a class.

e.g.
var className:String = 'String';
var cls:Function = mx.utils.ClassFinder.findClass(className);
var object:Object = new cls();

Hope that helps,
 Ian

On 6/1/06, Danny Kodicek [EMAIL PROTECTED] wrote:

I want to have a function makeObject(tType:String) which returns an object
of class tType. So makeObject(Array) should return a new Array object. Any
good way to do this? I'm sure it's something simple.

And before you ask, yes, there is a reason why I need to do it this way...

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] cool bitmapData api

2006-06-01 Thread Steve Killingbeck, MMCP, ACE
Hey guys  gals

I am looking for a few examples of cool uses of the bitmapData api 
Not only fancy but clever practical examples too

Any links would be greatly appreciated :)

Thanks!

--
Flash4Hire
http://www.flash4hire.com

 
Steve Killingbeck, MMCP, ACE
Owner  Technical Director
Certified Flash Developer  Designer
 
[EMAIL PROTECTED]
612.709.6515
--
 
 
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, June 01, 2006 11:00 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Flashcoders Digest, Vol 17, Issue 4

Send Flashcoders mailing list submissions to
flashcoders@chattyfig.figleaf.com

To subscribe or unsubscribe via the World Wide Web, visit
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Flashcoders digest...


Today's Topics:

   1. tabIndex stops working,   when combo-box component used in
  movie (Green, Martyn)
   2. Re: Alpha fade problem (Zeh Fernando)
   3. Re: Where to politely and appropriately discuss   pricing
  issues (Brian Mays)
   4. Re: Where to politely and appropriately discuss pricing
  issues (Adrian Park)
   5. RE: How to remove indent for LI with CSS? (phaedrus)
   6. RE: Flash Multiplayer System (Clint Tredway)
   7. External MP3 and Looping (Simon de Turck)
   8. RE: Where to politely and appropriately discuss   pricing
  issues (Helmut Granda)
   9. RE: Where to politely and appropriately discuss   pricingissues
  (Jim Robson)
  10. Re: Where to politely and appropriately discuss   pricing
  issues (Brian Mays)
  11. unsubscribe (Miguel Andres Clavera)
  12. Re: Where to politely and appropriately discuss pricing
  issues (Manuel Saint-Victor)
  13. Cross domain policy file issues (Merrill, Jason)
  14. Re: unsubscribe (Steve Rachels)


--

Message: 1
Date: Thu, 1 Jun 2006 15:54:34 +0100
From: Green, Martyn [EMAIL PROTECTED]
Subject: [Flashcoders] tabIndex stops working,  when combo-box
component used in movie
To: flashcoders@chattyfig.figleaf.com
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1


I'm trying to set up a custom tab order. 

I have a test movie that just contains two clips. All works ok until I place
a combo-box component on the stage. Then tabbing stops working completely.
I've tried setting the tab order for each element using the accessibility
panel and also using actionscript, and see the same thing each time. I'm
publishing the movie as Actionscript 2.0, and viewing with flash player 8
(tested in Flash and also in a browser). 

I just found that I have the problem even if I delete the combo-box from the
stage (but leave it in the library).

Any suggestions / links appreciated.

Thanks
Martyn







Global Search - find millions of archive records

http://www.nationalarchives.gov.uk/search/quick_search.aspx


---

National Archives Disclaimer


This email message (and attachments) may contain information that is
confidential  to The National Archives.  If you are not the intended
recipient you cannot use, distribute or copy the message or attachments.  In
such a case, please notify the sender by return email immediately and erase
all copies of the message and attachments.  Opinions, conclusions and other
information in this message and attachments that do not relate to the
official business of The National Archives are neither given nor endorsed by
it.






--

Message: 2
Date: Thu, 1 Jun 2006 11:57:09 -0300
From: Zeh Fernando [EMAIL PROTECTED]
Subject: Re: [Flashcoders] Alpha fade problem
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; format=flowed; charset=iso-8859-1;
reply-type=original

  So, the following script will cause a MC to fade in. What would I change
  to make a MC fade out?

 You could use the alphaTo property of the tween class. It's much easier.

Just to add: yes, use any other of the tweening extensions or classes 
available (fuse kit, laco tween, mctween). It's much easier this way and you

can keep focused on making it look right (with the time/animation you want) 
instead of wasting time on making it work.


- Zeh 



--

Message: 3
Date: Thu, 01 Jun 2006 10:06:05 -0500
From: Brian Mays [EMAIL PROTECTED]
Subject: Re: [Flashcoders] Where 

Re: [Flashcoders] Cross domain policy file issues

2006-06-01 Thread bryan.rice


On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:


How do you deal with cross domain linkin issues? In the Flash 7 and 8
security model, a cross domain policy XMl file is required to use  
getURL

to access other domains outside the domain the .swf is on.



What do you mean?  When is getURL failing for you?  The only security  
situation with getURL is cross domain scripting attacks - like the  
myspace worm - but this is resolved with the AllowScriptAccess  
parameter/attribute in the Object/Embed tags of your html.  Are you  
sure that you don't have yours set to never?  That is the only way  
that getURL fails that I know of - in order to prevent malicious swfs  
from calling javascript with getURL.


If you are trying to access a webservice that does not have a  
crossdomain.xml file that will work for you, then you have to use a  
proxy server to interact with the 3rd party domain and shuttle the  
data back to flash.


blue skies,
bryan
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Manuel Saint-Victor

Cool-That would be really helpful.
Mani



On 6/1/06, Brian Mays [EMAIL PROTECTED] wrote:


Actually, a better idea may be for me to place my notes on a site.  I'll
do
that this evening.

Thanks,
Brian


On 6/1/06 10:48 AM, Manuel Saint-Victor [EMAIL PROTECTED] wrote:

 Brian-
  so in that case what's a ballpark for a medium 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


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Zimmen

This actually works:

function makeObject(tType){
var tVar = eval(tType)
return (new tVar())
}
test = makeObject(Array)
test.push(foo)
test.push(bar)
trace(test[0])
trace(test[1])
trace(test.length)

Output:

foo
bar
2

On 6/1/06, Danny Kodicek [EMAIL PROTECTED] wrote:

I want to have a function makeObject(tType:String) which returns an object
of class tType. So makeObject(Array) should return a new Array object. Any
good way to do this? I'm sure it's something simple.

And before you ask, yes, there is a reason why I need to do it this way...

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread Merrill, Jason
It fails for me when I use getURL(http://www.adobe.com;, _blank); in
a Flash 7 .swf file running with the Flash 7 player in Firefox or IE
installed on my machine.

My HTML looks like this:

p
  object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflas
h.cab#version=7,0,19,0 width=798 height=58
param name=movie value=menu.swf /
param name=quality value=high /
embed src=menu.swf quality=high
pluginspage=http://www.macromedia.com/go/getflashplayer;
type=application/x-shockwave-flash width=798 height=58/embed
  /object
/p

I get the error from the player, This file is attempting to
access...etc.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of bryan.rice
Sent: Thursday, June 01, 2006 12:21 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues


On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:

 How do you deal with cross domain linkin issues? In the Flash 7 and
8
 security model, a cross domain policy XMl file is required to use
 getURL
 to access other domains outside the domain the .swf is on.


What do you mean?  When is getURL failing for you?  The only security
situation with getURL is cross domain scripting attacks - like the
myspace worm - but this is resolved with the AllowScriptAccess
parameter/attribute in the Object/Embed tags of your html.  Are you
sure that you don't have yours set to never?  That is the only way
that getURL fails that I know of - in order to prevent malicious swfs
from calling javascript with getURL.

If you are trying to access a webservice that does not have a
crossdomain.xml file that will work for you, then you have to use a
proxy server to interact with the 3rd party domain and shuttle the
data back to flash.

blue skies,
bryan
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] cool bitmapData api

2006-06-01 Thread Zeh Fernando

Hey guys  gals
I am looking for a few examples of cool uses of the bitmapData api
Not only fancy but clever practical examples too
Any links would be greatly appreciated :)


The most 'practical' approach would be of storing loaded images as 
BitmapData to allow reuse (and smooth bitmap use!) of them I think. It's 
'invisible' but a very welcomed feature imo.


You will find a lot of cool examples and tests that were done when Flash 8 
were released though. These links probably have everything you could think 
of:


http://franto.com/blog2/collected-links-to-maelstrom-examples
http://www.flashguru.co.uk/maelstrom/

I particularly like the simulation of OSX's genie effect on www.gringo.nu 
too, but I'm biased :)



- Zeh 


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] use of embedded font = blank text?

2006-06-01 Thread Kent Humphrey

http://devqa.exnis.net/vanclarke.com/www/test.html

Can someone tell me what I am doing wrong here?

What you can't see on that test page is the questions, which are  
being pulled in with identical code, but have been set to use an  
embedded font. Here is my code:


q_mc = content_mc.createTextField(question+i,  
content_mc.getNextHighestDepth(), 0, 0, 385, 20);

q_mc.autoSize = left;
q_mc.wordWrap = true;
q_mc.antiAliasType = advanced;

q_mc.embedFonts = true;

q_mc.selectable = false;
// assign text format defined above
q_mc.setTextFormat(question_fmt);

q_mc.text = questions[i];

If I comment out the embedFonts line, the text is visible.

I have tried embedding different fonts, different font weights,  
different linkage names, htmltext vs text and so on.


The text is currently being pulled from a list, but testing with  
straight text has the same effect.


I am using this same code to pull text into the swf that this swf is  
loaded into, and it works fine there. This swf doesn't work as a  
standalone or as part of the larger app.


Anyone got any ideas?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread Merrill, Jason
I guess now I discovered it's my default Flash player settings - the
company I work for may have the Flash player set up to the highest
settings for all users by default.  I'll see what the workarounds are.
Thanks.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Merrill, Jason
Sent: Thursday, June 01, 2006 12:34 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cross domain policy file issues

It fails for me when I use getURL(http://www.adobe.com;, _blank);
in
a Flash 7 .swf file running with the Flash 7 player in Firefox or IE
installed on my machine.

My HTML looks like this:

p
  object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swfl
as
h.cab#version=7,0,19,0 width=798 height=58
param name=movie value=menu.swf /
param name=quality value=high /
embed src=menu.swf quality=high
pluginspage=http://www.macromedia.com/go/getflashplayer;
type=application/x-shockwave-flash width=798 height=58/embed
  /object
/p

I get the error from the player, This file is attempting to
access...etc.

Jason Merrill
Bank of America
Learning Technology Solutions







-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of bryan.rice
Sent: Thursday, June 01, 2006 12:21 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues


On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:

 How do you deal with cross domain linkin issues? In the Flash 7
and
8
 security model, a cross domain policy XMl file is required to use
 getURL
 to access other domains outside the domain the .swf is on.


What do you mean?  When is getURL failing for you?  The only
security
situation with getURL is cross domain scripting attacks - like the
myspace worm - but this is resolved with the AllowScriptAccess
parameter/attribute in the Object/Embed tags of your html.  Are you
sure that you don't have yours set to never?  That is the only way
that getURL fails that I know of - in order to prevent malicious
swfs
from calling javascript with getURL.

If you are trying to access a webservice that does not have a
crossdomain.xml file that will work for you, then you have to use a
proxy server to interact with the 3rd party domain and shuttle the
data back to flash.

blue skies,
bryan
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread eric dolecki

Wow thats super strange. its just a simple getURL (open a new browser window
with your content)... that has nothing to do with a policy file - you aren't
loading data from another domain into your swf on your own domain (this is
where a policy file - or a proxy file will help).

On 6/1/06, Merrill, Jason [EMAIL PROTECTED] wrote:


It fails for me when I use getURL(http://www.adobe.com;, _blank); in
a Flash 7 .swf file running with the Flash 7 player in Firefox or IE
installed on my machine.

My HTML looks like this:

p
  object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflas
h.cab#version=7,0,19,0 width=798 height=58
param name=movie value=menu.swf /
param name=quality value=high /
embed src=menu.swf quality=high
pluginspage=http://www.macromedia.com/go/getflashplayer;
type=application/x-shockwave-flash width=798 height=58/embed
  /object
/p

I get the error from the player, This file is attempting to
access...etc.

Jason Merrill
Bank of America
Learning Technology Solutions







-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of bryan.rice
Sent: Thursday, June 01, 2006 12:21 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues


On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:

 How do you deal with cross domain linkin issues? In the Flash 7 and
8
 security model, a cross domain policy XMl file is required to use
 getURL
 to access other domains outside the domain the .swf is on.


What do you mean?  When is getURL failing for you?  The only security
situation with getURL is cross domain scripting attacks - like the
myspace worm - but this is resolved with the AllowScriptAccess
parameter/attribute in the Object/Embed tags of your html.  Are you
sure that you don't have yours set to never?  That is the only way
that getURL fails that I know of - in order to prevent malicious swfs
from calling javascript with getURL.

If you are trying to access a webservice that does not have a
crossdomain.xml file that will work for you, then you have to use a
proxy server to interact with the 3rd party domain and shuttle the
data back to flash.

blue skies,
bryan
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread Cedric Muller

what if you do:
getURL(http://www.adobe.com;);
??

Cedric


It fails for me when I use getURL(http://www.adobe.com;,  
_blank); in

a Flash 7 .swf file running with the Flash 7 player in Firefox or IE
installed on my machine.

My HTML looks like this:

p
  object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/ 
swflas

h.cab#version=7,0,19,0 width=798 height=58
param name=movie value=menu.swf /
param name=quality value=high /
embed src=menu.swf quality=high
pluginspage=http://www.macromedia.com/go/getflashplayer;
type=application/x-shockwave-flash width=798 height=58/embed
  /object
/p

I get the error from the player, This file is attempting to
access...etc.

Jason Merrill
Bank of America
Learning Technology Solutions








-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of bryan.rice
Sent: Thursday, June 01, 2006 12:21 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues


On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:


How do you deal with cross domain linkin issues? In the Flash 7 and

8

security model, a cross domain policy XMl file is required to use
getURL
to access other domains outside the domain the .swf is on.



What do you mean?  When is getURL failing for you?  The only  
security

situation with getURL is cross domain scripting attacks - like the
myspace worm - but this is resolved with the AllowScriptAccess
parameter/attribute in the Object/Embed tags of your html.  Are you
sure that you don't have yours set to never?  That is the only way
that getURL fails that I know of - in order to prevent malicious  
swfs

from calling javascript with getURL.

If you are trying to access a webservice that does not have a
crossdomain.xml file that will work for you, then you have to use a
proxy server to interact with the 3rd party domain and shuttle the
data back to flash.

blue skies,
bryan
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread Merrill, Jason
It's my Security settings for the Flash player.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Cedric Muller
Sent: Thursday, June 01, 2006 12:43 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues

what if you do:
getURL(http://www.adobe.com;);
??

Cedric


 It fails for me when I use getURL(http://www.adobe.com;,
 _blank); in
 a Flash 7 .swf file running with the Flash 7 player in Firefox or IE
 installed on my machine.

 My HTML looks like this:

 p
   object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/
 swflas
 h.cab#version=7,0,19,0 width=798 height=58
 param name=movie value=menu.swf /
 param name=quality value=high /
 embed src=menu.swf quality=high
 pluginspage=http://www.macromedia.com/go/getflashplayer;
 type=application/x-shockwave-flash width=798
height=58/embed
   /object
 /p

 I get the error from the player, This file is attempting to
 access...etc.

 Jason Merrill
 Bank of America
 Learning Technology Solutions







 -Original Message-
 From: [EMAIL PROTECTED]
[mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of bryan.rice
 Sent: Thursday, June 01, 2006 12:21 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Cross domain policy file issues


 On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:

 How do you deal with cross domain linkin issues? In the Flash 7
and
 8
 security model, a cross domain policy XMl file is required to use
 getURL
 to access other domains outside the domain the .swf is on.


 What do you mean?  When is getURL failing for you?  The only
 security
 situation with getURL is cross domain scripting attacks - like the
 myspace worm - but this is resolved with the AllowScriptAccess
 parameter/attribute in the Object/Embed tags of your html.  Are
you
 sure that you don't have yours set to never?  That is the only
way
 that getURL fails that I know of - in order to prevent malicious
 swfs
 from calling javascript with getURL.

 If you are trying to access a webservice that does not have a
 crossdomain.xml file that will work for you, then you have to use
a
 proxy server to interact with the 3rd party domain and shuttle the
 data back to flash.

 blue skies,
 bryan
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread eric dolecki

ok - i replied to it, but before i sent you replied with the new
information. Sounds like its a Windows kind of thing and not specific to the
player itself ;)

On 6/1/06, Merrill, Jason [EMAIL PROTECTED] wrote:


I guess now I discovered it's my default Flash player settings - the
company I work for may have the Flash player set up to the highest
settings for all users by default.  I'll see what the workarounds are.
Thanks.

Jason Merrill
Bank of America
Learning Technology Solutions







-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Merrill, Jason
Sent: Thursday, June 01, 2006 12:34 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cross domain policy file issues

It fails for me when I use getURL(http://www.adobe.com;, _blank);
in
a Flash 7 .swf file running with the Flash 7 player in Firefox or IE
installed on my machine.

My HTML looks like this:

p
  object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swfl
as
h.cab#version=7,0,19,0 width=798 height=58
param name=movie value=menu.swf /
param name=quality value=high /
embed src=menu.swf quality=high
pluginspage=http://www.macromedia.com/go/getflashplayer;
type=application/x-shockwave-flash width=798 height=58/embed
  /object
/p

I get the error from the player, This file is attempting to
access...etc.

Jason Merrill
Bank of America
Learning Technology Solutions







-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of bryan.rice
Sent: Thursday, June 01, 2006 12:21 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues


On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:

 How do you deal with cross domain linkin issues? In the Flash 7
and
8
 security model, a cross domain policy XMl file is required to use
 getURL
 to access other domains outside the domain the .swf is on.


What do you mean?  When is getURL failing for you?  The only
security
situation with getURL is cross domain scripting attacks - like the
myspace worm - but this is resolved with the AllowScriptAccess
parameter/attribute in the Object/Embed tags of your html.  Are you
sure that you don't have yours set to never?  That is the only way
that getURL fails that I know of - in order to prevent malicious
swfs
from calling javascript with getURL.

If you are trying to access a webservice that does not have a
crossdomain.xml file that will work for you, then you have to use a
proxy server to interact with the 3rd party domain and shuttle the
data back to flash.

blue skies,
bryan
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Danny Kodicek
Thanks, Zimmen and Ian, that's helpful. I'll probably go with Ian's 
solution, which seems a bit more robust (I've been caught out before by 
clever tricks using eval()...)


Danny

- Original Message - 
From: Zimmen [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, June 01, 2006 5:33 PM
Subject: Re: [Flashcoders] create an object of type defined with a string



This actually works:

function makeObject(tType){
var tVar = eval(tType)
return (new tVar())
}
test = makeObject(Array)
test.push(foo)
test.push(bar)
trace(test[0])
trace(test[1])
trace(test.length)

Output:

foo
bar
2

On 6/1/06, Danny Kodicek [EMAIL PROTECTED] wrote:
I want to have a function makeObject(tType:String) which returns an 
object
of class tType. So makeObject(Array) should return a new Array object. 
Any

good way to do this? I'm sure it's something simple.

And before you ask, yes, there is a reason why I need to do it this 
way...


Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] use of embedded font = blank text?

2006-06-01 Thread eric dolecki

areyou using a font symbol in your text format obj? did you try placing a
dynamic text filed off stage and embed the same font in thatto see?

On 6/1/06, Kent Humphrey [EMAIL PROTECTED] wrote:


http://devqa.exnis.net/vanclarke.com/www/test.html

Can someone tell me what I am doing wrong here?

What you can't see on that test page is the questions, which are
being pulled in with identical code, but have been set to use an
embedded font. Here is my code:

q_mc = content_mc.createTextField(question+i,
content_mc.getNextHighestDepth(), 0, 0, 385, 20);
q_mc.autoSize = left;
q_mc.wordWrap = true;
q_mc.antiAliasType = advanced;

q_mc.embedFonts = true;

q_mc.selectable = false;
// assign text format defined above
q_mc.setTextFormat(question_fmt);

q_mc.text = questions[i];

If I comment out the embedFonts line, the text is visible.

I have tried embedding different fonts, different font weights,
different linkage names, htmltext vs text and so on.

The text is currently being pulled from a list, but testing with
straight text has the same effect.

I am using this same code to pull text into the swf that this swf is
loaded into, and it works fine there. This swf doesn't work as a
standalone or as part of the larger app.

Anyone got any ideas?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] unsubscribe

2006-06-01 Thread Marcelo de Moraes Serpa

One more? Is this an epidemy or something?

On 6/1/06, Steve Rachels [EMAIL PROTECTED] wrote:


no.  You're stuck here... forever.

Or you can look at the bottom of any of the emails you get from this
list and use the there link to unsubscribe.


Miguel Andres Clavera wrote:

hi
i want to UNSUBSCRIBE  to the list
thanks

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Weird OOP ability... Need a description of why, or at least some documentation

2006-06-01 Thread Drew Shefman
I ran across this really bizarre method access while reviewing someone
else's work.

I would like to look up some documentation for this syntax (it doesn't
have to be AS, it could be some other OOP language - if this is a standard
option that I haven't seen before)... or at least get a description of
why/how it works (other then the obvious - that it does).

Also, can anyone give any good reason to use this syntax?

I'm just confused by it.

Thanks!
Cheerio!
Drew Shefman
[EMAIL PROTECTED]

Notice that it does NOT use static's


class MyTestClass
{
function MyTestClass() {trace (Created)}
public function runTest(){trace(running test)}
}
///
var myInst:MyTestClass = new MyTestClass();
MyTestClass(myInst).runTest();



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Problem with playback in Safari

2006-06-01 Thread Jay Pozo

Hi guys.

this site: http://www.standrewsliving.ca

doesn't work in Safari 2.0+.  Fuse and Zigo were used for all the tweening.
Anyone else experience a similar problem and know a solution?

Thanks,
Jay
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Nick Gerig

just for the record you don't need to use eval:

trace(new [Array]() instanceof Array)


Cheers

Nick


Danny Kodicek wrote:

Thanks, Zimmen and Ian, that's helpful. I'll probably go with Ian's 
solution, which seems a bit more robust (I've been caught out before 
by clever tricks using eval()...)


Danny






___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Weird OOP ability... Need a description of why, or at least some documentation

2006-06-01 Thread Ian Thomas

Hi Drew,
 That's just type casting. See my email of a few days ago.

 It's actually redundant in the example you provided, because the
compiler already knows that it's a MyTestClass object. You could
replace it with:

var myInst:MyTestClass = new MyTestClass();
myInst.runTest();

If, however, for whatever reason you had some code like this it would
make sense:

var myInst:SomeSuperClassOfMyTestClass = new MyTestClass();
MyTestClass(myInst).runTest();

Assuming runTest() is defined on MyTestClass but not its superclass,
the compiler needs to know that myInst is actually of type MyTestClass
before it'll let you compile the line of code calling runTest().

HTH,
 Ian


On 6/1/06, Drew Shefman [EMAIL PROTECTED] wrote:

I ran across this really bizarre method access while reviewing someone
else's work.

I would like to look up some documentation for this syntax (it doesn't
have to be AS, it could be some other OOP language - if this is a standard
option that I haven't seen before)... or at least get a description of
why/how it works (other then the obvious - that it does).

Also, can anyone give any good reason to use this syntax?

I'm just confused by it.

Thanks!
Cheerio!
Drew Shefman
[EMAIL PROTECTED]

Notice that it does NOT use static's


class MyTestClass
{
function MyTestClass() {trace (Created)}
public function runTest(){trace(running test)}
}
///
var myInst:MyTestClass = new MyTestClass();
MyTestClass(myInst).runTest();

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Subscript text?

2006-06-01 Thread Ashwan Wadhwa
I have an xml file that is being used to populate some text fields. One
of these has some text in subscript. Is there a way to handle that? 
Thank you
a
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Problem with playback in Safari

2006-06-01 Thread Cedric Muller
it has nothing to do with Flash ,... I can see that no SWF is being  
loaded ... it could the js ...


http://www.standrewsliving.ca/standrews110406.swf
- works in safari 2.0



Hi guys.

this site: http://www.standrewsliving.ca

doesn't work in Safari 2.0+.  Fuse and Zigo were used for all the  
tweening.

Anyone else experience a similar problem and know a solution?

Thanks,
Jay
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Animation package - SVG to Flash

2006-06-01 Thread Lee Harding

Hello,

As this was my first post to the group, i would like to follow it up...

firstly i havnt received a reply from anybody, and i wanted to make  
sure i was doing the right thing.


Am i expecting too much? - there are files to download because there  
are a few includes here and there and i thought it best to keep  
everything together, and i wouldnt know which to include and which to  
not...


also, if i am expecting too much then what would my next step be? -  
any suggestions?


Or should i just wait longer? - there were quite a few messages  
posted and answered since i posted mine so i thought that i wasnt  
going to get a response.


Any help or advice would be appreciated.

thanks and kind regards

Lee


On 28 May 2006, at 22:20, Lee Harding wrote:


Hello,

This is my first post to chattyfig... i hope its ok...

I am working on an intro animation for a site and am using Alex  
Uhlmann's Animation Package ( http://www.alex-uhlmann.de/flash/ 
animationpackage/ ) along with some svg conversion classes from  
Helen Triolo ( http://www.flash-creations.com/notes/ 
sample_svgtoflash.php )


I have managed to get my animation working, almost how i would like  
it, apart from a couple of things...


basically i would like the line that is drawn to be a thicker  
stroke weight and dashed. Im sure this is a simple procedure, but i  
have gone through all the necessary files, but cannot get it to work.


i think that something should be changed in the  
'svg_animatewithap.as' or the 'com/itechnica/svg/PathtoArray.as'  
files...


i am attaching all the relevant files for this project ( http:// 
www.leeharding.co.uk/transfer/myTouch-svg-test.zip ) and would  
appreciate it if somebody could point me in the right direction for  
getting this sorted. Its driving me mad right now...


Thanks for your time,

kind regards

Lee
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Subscript text?

2006-06-01 Thread eric dolecki

use a font that supports the subscript text so it displays right. Is
that what you're after?

On 6/1/06, Ashwan Wadhwa [EMAIL PROTECTED] wrote:

I have an xml file that is being used to populate some text fields. One
of these has some text in subscript. Is there a way to handle that?
Thank you
a
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Tom Lee
Danny,

Out of curiosity, why do you need a function that returns an object of a
type passed as a string?  It's a neat idea, but I'm scratching my head as to
where one might apply it.

-tom

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Danny
Kodicek
Sent: Thursday, June 01, 2006 12:51 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] create an object of type defined with a string

Thanks, Zimmen and Ian, that's helpful. I'll probably go with Ian's 
solution, which seems a bit more robust (I've been caught out before by 
clever tricks using eval()...)

Danny

- Original Message - 
From: Zimmen [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, June 01, 2006 5:33 PM
Subject: Re: [Flashcoders] create an object of type defined with a string


 This actually works:

 function makeObject(tType){
 var tVar = eval(tType)
 return (new tVar())
 }
 test = makeObject(Array)
 test.push(foo)
 test.push(bar)
 trace(test[0])
 trace(test[1])
 trace(test.length)

 Output:

 foo
 bar
 2

 On 6/1/06, Danny Kodicek [EMAIL PROTECTED] wrote:
 I want to have a function makeObject(tType:String) which returns an 
 object
 of class tType. So makeObject(Array) should return a new Array object. 
 Any
 good way to do this? I'm sure it's something simple.

 And before you ask, yes, there is a reason why I need to do it this 
 way...

 Danny

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] OT: Anyone got a good CSS book to recommend?

2006-06-01 Thread Tom Haschenburger

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] flickering components, depth issue?

2006-06-01 Thread jcanistrum

I´ve got problems whem mixing mcs as container for movies togheter with
components and getNextHighestDepth() , but everything went fine after using
DepthManager.

2006/6/1, mike cann [EMAIL PROTECTED]:


HI,

I had simmilar problems when using both the componants and the standard
getNextHighestDepth() on movieclips.
I reccomend using either getNextHighestDepth() and no componants or just
the
DepthManager for everything.

Mike

On 01/06/06, Kent Humphrey [EMAIL PROTECTED] wrote:

 I can understand perhaps that components get picky about getting
 moved around, but I am loading these components in as part of a
 normal .swf - surely that's ok?

 There is no funky changing of depths going on, they get loaded in,
 they then get removed when another one is loaded.

 Can anyone confirm that this IS what happens when you use
 getNextHighestDepth() with components instead of the depthManager class?

 On 1 Jun 2006, at 12:11, Ramon Miguel M. Tayag wrote:

  I use getNextHighest and it has always worked fine.  I don't see why
  it should be a problem - unless you change your depths in the middle
  of the movie for some reason.
 
  On 6/1/06, Kent Humphrey [EMAIL PROTECTED] wrote:
  http://devqa.exnis.net/vanclarke.com/www/index.html
 
  Go to News  PR/Fashion Shows and News  PR/Photo Gallery
 
  The Fashion Shows page is using the FLV Playback from Flash 8, the
  Photo Gallery is using thumbgallery from www.flashrelief.com
 
  Perhaps foolishly, I have been developing this on a Mac with the
  Flash 9 plugin installed, and these 2 components behave perfectly.
  But it seems for anyone else they don't. I have since reinstalled
  Flash Player 8 and I too get the flickering issue.
 
  The pages above are external .swfs that are loaded into a parent swf
  with .loadClip. I am guessing the problems I have are due to using
  getNextHighestDepth() rather than the depthManager class, is that
  right? Can anyone point me to a tutorial on how to use it? I've done
  some googling and found nothing :
  ___
 
  --
  Ramon Miguel M. Tayag
  Managing Director
  Quirkworks
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/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





--
João Carlos
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/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] Alpha fade problem

2006-06-01 Thread Seb L

oh yeah, well spotted :)

On 01/06/06, Adrian Park [EMAIL PROTECTED] wrote:

You'll also have to change...

 if (this._alpha100) {

to

 if (this._alpha0) {

On 6/1/06, Seb L [EMAIL PROTECTED] wrote:

 try this...

myAlpha = ((alphaTime-(getTimer()-loadTime))/alphaTime)*100;


 On 01/06/06, Tony Watkins [EMAIL PROTECTED] wrote:
  So, the following script will cause a MC to fade in. What would I change
 to
  make a MC fade out?
 
  onClipEvent (load) {
  loadTime = getTimer();
  alphaTime = 1000;
  myAlpha = 0;
  this._alpha = myAlpha;
  }
  onClipEvent (enterFrame) {
  if (this._alpha100) {
  myAlpha = ((getTimer()-loadTime)/alphaTime)*100;
  this._alpha = myAlpha;
  }
  }
 
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/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] Subscript text?

2006-06-01 Thread Ashwan Wadhwa
Actually, I want to know how to put the subscript text in an xml file?
Is there an escape character to handle this?
A. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of eric
dolecki
Sent: Thursday, June 01, 2006 1:38 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Subscript text?

use a font that supports the subscript text so it displays right. Is
that what you're after?

On 6/1/06, Ashwan Wadhwa [EMAIL PROTECTED] wrote:
 I have an xml file that is being used to populate some text fields. 
 One of these has some text in subscript. Is there a way to handle
that?
 Thank you
 a
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] Cross domain policy file issues

2006-06-01 Thread Merrill, Jason
ok - i replied to it, but before i sent you replied with the new
information. 
 Sounds like its a Windows kind of thing and not specific to the
player itself

No, nothing to do with Windows at all.  It was the Flash player security
settings - the Global Security Settings Panel in the Flash player.  

http://www.macromedia.com/support/documentation/en/flashplayer/help/sett
ings_manager04.html

Apparently my company sets it up to have the highest security settings
by default, but I didn't know this until testing getURL today.

Jason Merrill
Bank of America 
Learning Technology Solutions
 
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of eric dolecki
Sent: Thursday, June 01, 2006 12:47 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cross domain policy file issues

ok - i replied to it, but before i sent you replied with the new
information. Sounds like its a Windows kind of thing and not specific
to the
player itself ;)

On 6/1/06, Merrill, Jason [EMAIL PROTECTED] wrote:

 I guess now I discovered it's my default Flash player settings - the
 company I work for may have the Flash player set up to the highest
 settings for all users by default.  I'll see what the workarounds
are.
 Thanks.

 Jason Merrill
 Bank of America
 Learning Technology Solutions







 -Original Message-
 From: [EMAIL PROTECTED]
[mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Merrill, Jason
 Sent: Thursday, June 01, 2006 12:34 PM
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] Cross domain policy file issues
 
 It fails for me when I use getURL(http://www.adobe.com;,
_blank);
 in
 a Flash 7 .swf file running with the Flash 7 player in Firefox or
IE
 installed on my machine.
 
 My HTML looks like this:
 
 p
   object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354

codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/sw
fl
 as
 h.cab#version=7,0,19,0 width=798 height=58
 param name=movie value=menu.swf /
 param name=quality value=high /
 embed src=menu.swf quality=high
 pluginspage=http://www.macromedia.com/go/getflashplayer;
 type=application/x-shockwave-flash width=798
height=58/embed
   /object
 /p
 
 I get the error from the player, This file is attempting to
 access...etc.
 
 Jason Merrill
 Bank of America
 Learning Technology Solutions
 
 
 
 
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
[mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of bryan.rice
 Sent: Thursday, June 01, 2006 12:21 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Cross domain policy file issues
 
 
 On Jun 1, 2006, at 11:56 AM, Merrill, Jason wrote:
 
  How do you deal with cross domain linkin issues? In the Flash
7
 and
 8
  security model, a cross domain policy XMl file is required to
use
  getURL
  to access other domains outside the domain the .swf is on.
 
 
 What do you mean?  When is getURL failing for you?  The only
 security
 situation with getURL is cross domain scripting attacks - like
the
 myspace worm - but this is resolved with the AllowScriptAccess
 parameter/attribute in the Object/Embed tags of your html.  Are
you
 sure that you don't have yours set to never?  That is the only
way
 that getURL fails that I know of - in order to prevent malicious
 swfs
 from calling javascript with getURL.
 
 If you are trying to access a webservice that does not have a
 crossdomain.xml file that will work for you, then you have to
use a
 proxy server to interact with the 3rd party domain and shuttle
the
 data back to flash.
 
 blue skies,
 bryan
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/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] create an object of type defined with a string

2006-06-01 Thread Danny Kodicek

 Danny,

 Out of curiosity, why do you need a function that returns an object of a
 type passed as a string?  It's a neat idea, but I'm scratching my head as
to
 where one might apply it.

I've been hitting some memory problems when using Director's newObject()
function, which creates a new object inside an embedded Swf. Because the
object is unnamed, I have no way to destroy it in the Flash movie - it seems
to go somewhere in the global space. So instead, I'm making my own
tempObject function, which creates a new object in an array pTempObjects in
the Flash movie. When I've finished working with it, I run a
clearTempObjects() function to flush them out.

So I have this function:

function tempObject(tName:String) {
 var tObj:Object = new Object of type tName
 pTempObjects.push(tObj)
 return tObj
}

Now Director can call this function, get a new temporary Flash object and
work on it, then tell Flash to do something with the object (eg, setting the
properties of a TextFormat object before applying it to a field), and then
finally clear it out.

More detail than I think you wanted, but since you asked :)

Danny

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

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


  1   2   >