RE: [Flashcoders] AS3 Nice Knob(s)

2009-01-16 Thread Patrick Matte|BLITZ
http://www.bit-101.com/blog/?p=1337 -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Eric E. Dolecki Sent: Friday, January 16, 2009 11:51 AM To: Flash Coders List Subject: [Flashcoders] AS3 Nice Knob(s) I

RE: [Flashcoders] AS3 Nice Knob(s)

2009-01-16 Thread Patrick Matte|BLITZ
more for a traditional behaving knob. On Fri, Jan 16, 2009 at 3:06 PM, Patrick Matte|BLITZ pma...@blitzagency.com wrote: http://www.bit-101.com/blog/?p=1337 -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto: flashcoders-boun...@chattyfig.figleaf.com

RE: RE : [Flashcoders] create object with getDefinition and pass parameters using apply ?

2009-01-09 Thread Patrick Matte | BLITZ
figure something out, be sure to let me know! Cheers, Nate On Thu, Jan 8, 2009 at 9:39 PM, Patrick Matte | BLITZ pma...@blitzagency.com wrote: That wouldn't help, I'm writing a class that can create any kind of objects and pass any number of argument to that object at instantiation

[Flashcoders] create object with getDefinition and pass parameters using apply ?

2009-01-08 Thread Patrick Matte | BLITZ
I need to create objects using getDefinition and pass parameter to the constructor but the problem is that the number of parameters can be different. I tried using apply like this but I can't make it work. var classReference:Object = getDefinitionByName(className); var object:Object = new

RE: [Flashcoders] create object with getDefinition and pass parameters using apply ?

2009-01-08 Thread Patrick Matte | BLITZ
...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Patrick Matte|BLITZ Sent: Thursday, January 08, 2009 7:19 PM To: Flash Coders List Subject: [Flashcoders] create object with getDefinition and pass parameters using apply ? I need to create objects using getDefinition and pass

RE : [Flashcoders] create object with getDefinition and pass parameters using apply ?

2009-01-08 Thread Patrick Matte | BLITZ
, ... param6 = null){ } } or just use the rest (...) parameter class myClass{ public function myClass(...args){ for(var i:uint = 0; i args.length; i++){ trace(args[i]); } } } On Thu, Jan 8, 2009 at 10:36 PM, Patrick Matte | BLITZ pma...@blitzagency.com wrote: Well for now

RE: [Flashcoders] use get / set functions or make your own

2008-12-10 Thread Patrick Matte | BLITZ
I missed the first part of this thread but I'd like to add that when you create an interface for a class, all your public properties should be getters and setters. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of allandt bik-elliott (thefieldcomic.com)

[Flashcoders] SoundChannel.position bug on SOUND_COMPLETE

2008-10-21 Thread Patrick Matte | BLITZ
I'm experimenting with the SoundChannel in Flash CS3. On SOUND_COMPLETE, the position of the channel is always smaller than the length of the sound. Shouldn't these be the same values? Anybody knows what's going on? My sounds are wav files in the library, compressed in mp3 or uncompressed, the

[Flashcoders] websites with public APIs available from flash

2008-08-08 Thread Patrick Matte | BLITZ
I'm rounding up a list of websites with public API that flash can interact with. I have : Yahoo maps Flickr Youtube Weather.com Do you know any other? Patrick Matte Interactive Director Ph: 310-551-0200 x214 Fax: 310-551-0022 [EMAIL PROTECTED] BLITZ - 3415 S Sepulveda Bl, Ste 500 -

RE: [Flashcoders] websites with public APIs available from flash

2008-08-08 Thread Patrick Matte | BLITZ
Of Eric E. Dolecki Sent: Friday, August 08, 2008 5:07 PM To: Flash Coders List Subject: Re: [Flashcoders] websites with public APIs available from flash What about webservices Sent from my iPod On Aug 8, 2008, at 6:44 PM, Patrick Matte | BLITZ [EMAIL PROTECTED] wrote: I'm rounding up a list

RE: [Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-23 Thread Patrick Matte | BLITZ
I've had that problem also when one item was missing from the library. This can happen when you use a class from an fla into another fla and that class is referencing a library item in the other fla but you forgot to copy that item in your new fla's library. BLITZ | Patrick Matte -

RE: [Flashcoders] The Charges Against ActionScript 3.0

2008-07-16 Thread Patrick Matte | BLITZ
I've always admired Colin Moock, but after reading those 9 points, I'm not sure he still has all that credibility anymore... 1. The removal of on()/onClipEvent() from Flash CS3 makes creating simple interactivity hard. Who would want to add an onClipEvent on a movieclip anymore? I haven't

RE: [Flashcoders] Overriding the trace command

2008-07-15 Thread Patrick Matte | BLITZ
It may not be relevant to your problem and you probably know this already but when you use trace, the output is the result of the toString method of the object you are tracing. And you can override toString to output whatever you want. override public function toString():String {

[Flashcoders] trace all properties of a class recursively

2008-06-26 Thread Patrick Matte | BLITZ
Is it possible to trace all the properties of a class with AS3? I kwow it works on dynamic properties on Object or Array... My class is like a tree and I want to see if the tree is built correctly. ___ Flashcoders mailing list

RE: [Flashcoders] trace all properties of a class recursively

2008-06-26 Thread Patrick Matte | BLITZ
a look at flash.utils.describeType() http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/package.html#describeType() On Thu, Jun 26, 2008 at 3:43 PM, Patrick Matte | BLITZ [EMAIL PROTECTED] wrote: Is it possible to trace all the properties of a class with AS3? I kwow it works

[Flashcoders] Firefox 3 and flash 8 wmode problem

2008-06-25 Thread Patrick Matte | BLITZ
Has anybody else been experiencing problems with flash player 8 using wmode with Firefox 3? Can't click on any of the flash buttons, using flash player 8 r42. No problem with Firefox 2. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] calling public static methods on Class using getDefinitionByName

2008-06-24 Thread Patrick Matte | BLITZ
Ah ok, the reason it wasn't working was that I was casting ClassReference as Class instead of Object... Now this works. var ClassReference:Object = getDefinitionByName(Test) as Object; var bool:Boolean = ClassReference.parse(false); //would return false; BLITZ | Patrick Matte - 310-551-0200

[Flashcoders] calling public static methods on Class using getDefinitionByName

2008-06-23 Thread Patrick Matte | BLITZ
Does anybody know if it's possible to call a static method of a reference to a class created with getDefinitionByName without actually creating an instance of the object? Something like this simple example: var ClassReference:Class = getDefinitionByName(Test) as Class; var bool:Boolean =

RE: [Flashcoders] calling public static methods on Class using getDefinitionByName

2008-06-23 Thread Patrick Matte | BLITZ
= Test.parse(false); // returns false BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Matte|BLITZ Sent: Monday, June 23, 2008 7:17 PM To: Flash Coders List Subject: [Flashcoders] calling public static

[Flashcoders] AIR bitmapdata.draw( FLV ) Security error

2008-04-16 Thread Patrick Matte | BLITZ
Hi, I get a security error in my AIR app when I try to draw a video that's on my computer to a BitmapData. How can I fix this? Is it because I'm using a self-signed certificate? Should I buy a certificate form Verisign? ___ Flashcoders mailing list

[Flashcoders] AIR - Insert header in XML file

2008-04-02 Thread Patrick Matte | BLITZ
I'm saving an xml file with AIR, it works but how can I add ?xml version=1.0 encoding=UTF-8? at the top of the file? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] AIR - Insert header in XML file

2008-04-02 Thread Patrick Matte | BLITZ
, Apr 2, 2008 at 7:45 PM, Wagner Amaral [EMAIL PROTECTED] wrote: You can set the xmlDecl property: AS3: XMLDocument().xmlDecl = ?xml version=1.0 encoding=utf-8?; AS2: XML().xmlDecl = ?xml version=1.0 encoding=utf-8?; On Wed, Apr 2, 2008 at 7:06 PM, Patrick Matte | BLITZ [EMAIL

RE: [Flashcoders] AIR - Insert header in XML file

2008-04-02 Thread Patrick Matte | BLITZ
: [Flashcoders] AIR - Insert header in XML file Can't you inject that into your xml string? myXml = ?xml version=1.0 encoding=UTF-8? + myXml; Patrick Matte | BLITZ wrote: I'm saving an xml file with AIR, it works but how can I add ?xml version=1.0 encoding=UTF-8? at the top of the file

[Flashcoders] AIR drag and resize transparent window and change mouse icon to arrows

2008-03-28 Thread Patrick Matte | BLITZ
You know on a PC when you mouseOver the sides of a window, the mouse changes to an arrow that means you can resize the window. Is there any to get the mouse to change like that when the AIR window in set to transparent? Or it is only a feature of the NativeWindow on PC?

RE: [Flashcoders] AS3 singleton not working across multiple loaded swf

2008-02-15 Thread Patrick Matte | BLITZ
Matte | BLITZ [EMAIL PROTECTED] wrote: The only way I have been able to use a singleton across loaded swfs in AS3 is if it was first referenced in the main swf. Any other singleton I use that are not referenced in the main swf work only within the swf they are contained into. Is this a normal

[Flashcoders] RE: E4X Non sense !!! Need help

2008-02-15 Thread Patrick Matte | BLITZ
I can't make it work... Even this didn't work.. root accesscode id=S001 short test=S001/ short test=S002/ /accesscode accesscode id=S000 short test=uyiy/ short test=fgds/ /accesscode /root

RE: [Flashcoders] E4X Non sense !!! Need help

2008-02-15 Thread Patrick Matte | BLITZ
Nice! BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kenneth Kawamoto Sent: Friday, February 15, 2008 3:28 PM To: Flash Coders List Subject: Re: [Flashcoders] E4X Non sense !!! Need help Try:

[Flashcoders] AS3 / AIR Anti-aliased font without using embedFonts=true

2008-02-15 Thread Patrick Matte | BLITZ
Is there any way to get anti-aliased fonts in an AIR application without using textfield.embedFonts = true ? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] RE: E4X Non sense !!! Need help

2008-02-15 Thread Patrick Matte | BLITZ
Subject: Re: [Flashcoders] RE: E4X Non sense !!! Need help Patrick Matte | BLITZ wrote: I can't make it work... Even this didn't work.. root accesscode id=S001 short test=S001/ short test=S002/ /accesscode accesscode id=S000

[Flashcoders] AS3 singleton not working across multiple loaded swf

2008-02-14 Thread Patrick Matte | BLITZ
The only way I have been able to use a singleton across loaded swfs in AS3 is if it was first referenced in the main swf. Any other singleton I use that are not referenced in the main swf work only within the swf they are contained into. Is this a normal behavior in AS3 ? Does it have anything

RE: [Flashcoders] 9-section scalable graphic

2008-01-03 Thread Patrick Matte | BLITZ
9-slice scaling http://www.sephiroth.it/tutorials/flashPHP/scale9/ BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Sinning Sent: Thursday, January 03, 2008 10:42 AM To: Flash Coders Subject: [Flashcoders]

RE: [Flashcoders] how are they doing this? Papervision3d or pre-rendered 3d?

2007-09-17 Thread Patrick Matte|BLITZ
Yeah that distortion feels like a papervision plane with not enough triangles BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl Welch Sent: Sunday, September 16, 2007 7:49 PM To:

[Flashcoders] AS3 ROLL_OVER or MOUSE_OVER ? Which one, and why ?

2007-09-07 Thread Patrick Matte|BLITZ
In the AS3 class MouseEvent, what is the use for ROLL_OVER and ROLL_OUT? They seem to be the same as MOUSE_OVER and MOUSE_OUT... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] Class to loop sound objects in order

2007-08-15 Thread Patrick Matte|BLITZ
But isn't there a small glitch in the song between each loop because of the mp3 compression? I thought the only way to get rid of the glitch was to export every sound as a swf. BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [Flashcoders] AS3 how to link movieclip manually put on the stage to class member

2007-08-08 Thread Patrick Matte|BLITZ
Why don't you just attach the class to your movieclip in the library ? Right-click on the movieclip in the library, click on linkage, write a linkage id in the class field and write the path to your class in the base class field. Example Class : BlueCircle BaseClass : project.shapes.Circle You

RE: [Flashcoders] AS3 Sound Looping Problem

2007-08-08 Thread Patrick Matte|BLITZ
I think there's an unload method on Loader, try that. Or else, create a SoundChannel for your sound instead of putting it on the timeline and stop it when you remove the loader. BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[Flashcoders] AS3 loader applicationDomain question

2007-08-07 Thread Patrick Matte|BLITZ
Is this supposed to work? Right now flash IDE crashes everytime when it reaches the line: var instance = new ClassReference(); I just want to add the loader.content to the stage instead of the whole loader instance and I thought that would work.. function load():void{ var

RE: [Flashcoders] AS3 loader applicationDomain question

2007-08-07 Thread Patrick Matte|BLITZ
it is in Flex 2. regards, Muzak - Original Message - From: Patrick Matte|BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, August 07, 2007 10:05 PM Subject: [Flashcoders] AS3 loader applicationDomain question Is this supposed to work? Right now flash IDE

RE: [Flashcoders] AS3 Tween Class seems to have defects

2007-07-09 Thread Patrick Matte|BLITZ
I've noticed that too when I was using frames. Try using seconds instead of frames. Or use Tweener. http://code.google.com/p/tweener/ BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of asai Sent: Monday, July 09,

[Flashcoders] AS3 root

2007-06-19 Thread Patrick Matte|BLITZ
Hi fellas, I have a swf that's loaded inside another one. The container swf calls the transitionIn function in the loaded swf. In AS2, I used to put this in the loaded swf: if(this == _root){ transitionIn(); } That way I could test my swf in the flash IDE independently from the parent

[Flashcoders] AS3 new Class from string

2007-06-18 Thread Patrick Matte|BLITZ
Hey fellows, in AS3 how can I create class instances from a list of classes names. Take for example something like this: import Circle; import Square; import Triangle; var list:Array = new Array(Circle,Square,Triangle); for(var i=0;ilist.length;i++){ var class = new list[i](); }

RE: [Flashcoders] AS3 new Class from string

2007-06-18 Thread Patrick Matte|BLITZ
But using getDefinitionByName, can you find a class that's inside a loaded swf? Like in this example, Test is a class inside test.swf but I get an Error #1065: Variable Test is not defined. But it works fine if I call getDefinitionByName from within test.swf public function

[Flashcoders] getDefinitionByName from external swf

2007-06-18 Thread Patrick Matte|BLITZ
Using getDefinitionByName, can you find a class that's inside a loaded swf? Like in this example, Test is a class inside test.swf. public function GetDefinitionByNameExample() { var request:URLRequest = new URLRequest(test.swf); var loader:Loader = new Loader();

RE: [Flashcoders] AS3 new Class from string

2007-06-18 Thread Patrick Matte|BLITZ
: ApplicationDomain.getDefinition() flash.system.ApplicationDomain flash.system.LoaderContext.applicationDomain regards, Muzak - Original Message - From: Patrick Matte|BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, June 19, 2007 1:23 AM Subject: RE

RE: [Flashcoders] as3 Loader.content.name error

2007-06-07 Thread Patrick Matte|BLITZ
get is MovieClip and I can't figure out how to create new instances of the that loaded content without running another loader Not sure if that helps you any or not. Rob On Wed, 06 Jun 2007 22:59:33 -0400, Patrick Matte|BLITZ [EMAIL PROTECTED] wrote: Is there a way a change the name of the Loader

[Flashcoders] as3 Loader.content.name error

2007-06-06 Thread Patrick Matte|BLITZ
Is there a way a change the name of the Loader content property. I'd like to call addChild() on the content instead of the Loader itself. Like this : loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, loaderInit); var request:URLRequest = new URLRequest(pageSource);

RE: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Patrick Matte|BLITZ
Yes I've noticed that too, same thing here. http://labs.blitzagency.com/?p=315 BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adam Mark Sent: Monday, June 04, 2007 7:34 AM To: flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] scrollwheel bug in AS3?

2007-06-04 Thread Patrick Matte|BLITZ
in AS3? Patrick Matte|BLITZ schrieb: Yes I've noticed that too, same thing here. it seems you're not exactly correct here: to me it seems like when sthe scrolling container reaches maxScroll, the flashplugin seems to fire the scroll event (back) to the browser. at least this is what it seems to me

RE: [Flashcoders] AS2: generating new instances dynamically?

2007-05-02 Thread Patrick Matte | BLITZ
var myClass:MyClass = myClip.attachMovie(linkage, name, depth).init(args); That code will fire an error like this : Type mismatch in assignment statement: found MovieClip where MyClass is required. If you want to typecast your movieclip, I think you need to do : var mc:MovieClip =

RE: [Flashcoders] Curves question for math gurus

2007-04-25 Thread Patrick Matte | BLITZ
A quadratic curve is made of 3 points. The first point is beginning of the curve, the second point creates the curve between the first and last point. This will place mc exactly on the middle of the curve mc._x = bezierQuadratic(0.5, point1.x, point2.x, point3.x); mc._y = bezierQuadratic(0.5,

RE: [Flashcoders] Curves question for math gurus

2007-04-25 Thread Patrick Matte | BLITZ
x214 -Original Message- From: Patrick Matte | BLITZ Sent: Wednesday, April 25, 2007 4:04 PM To: 'flashcoders@chattyfig.figleaf.com' Subject: RE: [Flashcoders] Curves question for math gurus A quadratic curve is made of 3 points. The first point is beginning of the curve, the second point

RE: [Flashcoders] Class for movie - best practice question

2007-04-24 Thread Patrick Matte | BLITZ
Try this class. Put new ApplicationClass(this); on the first frame of the timeline. import mx.events.EventDispatcher; class ApplicationClass extends MovieClip{ public var addEventListener:Function; public var removeEventListener:Function; private var

RE: [Flashcoders] Class for movie - best practice question

2007-04-24 Thread Patrick Matte | BLITZ
:[EMAIL PROTECTED] On Behalf Of Patrick Matte | BLITZ Sent: Tuesday, April 24, 2007 7:09 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Class for movie - best practice question Try this class. Put new ApplicationClass(this); on the first frame of the timeline. import

RE: [Flashcoders] scale 9?

2007-04-02 Thread Patrick Matte | BLITZ
Why not use a bevel filter? BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul V. Sent: Monday, April 02, 2007 2:38 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] scale 9? I ran into the

RE: [Flashcoders] help

2007-02-16 Thread Patrick Matte | BLITZ
function onEnterFrame(){ var delta:Number = mc._x - oldX; if(delta0){ launching; } if(delta0){ launching2; } oldX = mc._x; } BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL

RE: Re[2]: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-19 Thread Patrick Matte | BLITZ
Now that is pretty clever ! Exactly what I need. Thanks ! BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Iv Sent: Thursday, January 18, 2007 8:28 PM To: Flashcoders mailing list Subject: Re[2]: [Flashcoders]

[Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
In AS2, is it possible to override the _xscale and _yscale setter in a subclass of MovieClip ? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
that instead of having the actual clip scale, a smooth bimapData would be drawn at the new scale. BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Matte | BLITZ Sent: Thursday, January 18, 2007 3:33 PM

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
2 : the AbstractComponent class in LunAS with this hack over the enabled property : http://svn.riaforge.org/vegas/AS2/trunk/src/lunas/display/components/Abs tractComponent.as EKA+ :) 2007/1/19, Patrick Matte | BLITZ [EMAIL PROTECTED]: In AS2, is it possible to override the _xscale

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
with this hack over the enabled property : http://svn.riaforge.org/vegas/AS2/trunk/src/lunas/display/comp onents/AbstractComponent.as EKA+ :) 2007/1/19, Patrick Matte | BLITZ [EMAIL PROTECTED]: In AS2, is it possible to override the _xscale and _yscale setter in a subclass

RE: [Flashcoders] Override _xscale and _yscale setter in AS2

2007-01-18 Thread Patrick Matte | BLITZ
Anybody has any other idea ? BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Matte | BLITZ Sent: Thursday, January 18, 2007 4:19 PM To: Flashcoders mailing list Subject: RE: [Flashcoders] Override

[Flashcoders] Tween a Matrix

2007-01-09 Thread Patrick Matte | BLITZ
Hi, is it possible to mx.transition.Tween a Matrix to another Matrix ? Patrick Matte Senior Flash Technical Lead Ph: 310-551-0200 x214 Fax: 310-551-0022 [EMAIL PROTECTED] BLITZ - 3415 South Sepulveda Boulevard, Suite 500 - Los Angeles, CA 90034 -

RE: [Flashcoders] 8 sounds maximum limit

2006-12-20 Thread Patrick Matte | BLITZ
?catid=581threadid =1086327enterthread=y#4069271 hth, g On 12/19/06, Patrick Matte | BLITZ [EMAIL PROTECTED] wrote: Does anybody know if the new AS3 sound object in flash 9 will still be limited to playing only 8 sounds at a time ? ___ Flashcoders

[Flashcoders] 8 sounds maximum limit

2006-12-19 Thread Patrick Matte | BLITZ
Does anybody know if the new AS3 sound object in flash 9 will still be limited to playing only 8 sounds at a time ? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: