Re: [Flashcoders] brain teaser: filter tweening code has a problem, can you spot it?

2006-10-11 Thread Muzak
vieclip in the library and you can have as many instances on stage as you like. regards, Muzak - Original Message - From: "Keith Reinfeld" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: Thursday, October 12, 2006 12:32 AM Subject: RE: [F

Re: [Flashcoders] brain teaser: filter tweening code has a problem, can you spot it?

2006-10-11 Thread Muzak
wVal, 5, 3, false, false); filters = [gf]; } } regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Softwa

Re: [Flashcoders] brain teaser: filter tweening code has a problem, can you spot it?

2006-10-11 Thread Muzak
I'll let you know when I actually care ;-) - Original Message - From: "Steven Sacks | BLITZ" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, October 12, 2006 1:46 AM Subject: RE: [Flashcoders] brain teaser: filter tweening code has a problem,can you spot it? Much c

Re: [Flashcoders] WinFX...heard of it?

2006-10-11 Thread Muzak
http://osflash.org/flashcoders/etiquette Keep it coding There are plenty of other places to talk about general Flash topics, and even more places to talk about non-Flash topics. - Original Message - From: "Victor Gaudioso" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thur

Re: [Flashcoders] help with flash remoting please

2006-10-11 Thread Muzak
Flash uses "\r" for new lines (if I'm not mistaken). Your mail probably expects "\r\n" or "\n" In .NET, do a search for "\r" and replace with "\r\n" and see if that fixes it. regards, Muzak - Original Message - From: "Tony Tra

Re: [Flashcoders] Creating an OS X app with a Flash Projector

2006-10-12 Thread Muzak
google: flash mac desktop app - Original Message - From: "Ain Tohvri" <[EMAIL PROTECTED]> To: Sent: Thursday, October 12, 2006 2:12 PM Subject: [Flashcoders] Creating an OS X app with a Flash Projector > Hey guys, > > There's a reference to http://www.karbonized.com/flash2app/ which is

Re: [Flashcoders] Creating an OS X app with a Flash Projector

2006-10-12 Thread Muzak
http://muzakdeezign.com/flashcoders/?q=karbonized.com%20mac find the original message, mail the author.. done.. - Original Message - From: "Ain Tohvri" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, October 12, 2006 2:52 PM Subject: Re: [Flashcoders] Creating an OS

Re: Re: [Flashcoders] Movie Clip in a mx scroll pane

2006-10-12 Thread Muzak
or use the documented ScrollPane.content property.. Muzak - Original Message - From: "nelson ramirez" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, October 12, 2006 8:21 PM Subject: Re: Re: [Flashcoders] Movie Clip in a mx scroll pane

Re: [Flashcoders] Moving to AS2, array always undefined

2006-10-12 Thread Muzak
http://osflash.org/flashcoders/etiquette Keep it coding There are plenty of other places to talk about general Flash topics, and even more places to talk about non-Flash topics. - Original Message - From: "Weaver Hickerson" <[EMAIL PROTECTED]> To: "'Flashcoders mailing list'" Sent: F

Re: [Flashcoders] Casting external SWF's

2006-10-15 Thread Muzak
e:this.__currentframe}); It's quick and dirty, but gets the job done ;-) Part from adding the EventDispatcher stuff in the animation swf's you don't have to change them. And in your main app you still get to work in a clean way, using a Class and event dispatching. regards, Mu

Re: [FlashCoders] Delegates and performance

2006-10-16 Thread Muzak
xml regards, Muzak - Original Message - From: "Dimitrios Bendilas" <[EMAIL PROTECTED]> To: Sent: Monday, October 16, 2006 8:49 PM Subject: [FlashCoders] Delegates and performance Hello everyone, I had a really big issue recently, when I realized that the performanc

Re: [Flashcoders] AS 3.0 - Loader.load() a .swf and than control it

2006-10-18 Thread Muzak
et. You'll need to use events to determine when content is loaded (see examples in the docs) regards, Muzak - Original Message - From: "Dave Geurts" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, October 18, 2006 10:31 PM Subject: [Flash

Re: [Flashcoders] phantom flash class instance

2006-10-19 Thread Muzak
You have to remove the interval before the slideshow gets removed. You can add an onUnload method in the slideshow class. class SlideShow extends MovieClip { function SlideShow() { } function onUnload() { // remove interval } } regards, Muzak - Original Message - From

Re: [Flashcoders] LocalConnection and Media Components?

2006-10-19 Thread Muzak
nections"); } this.initialize(); // end code In the sending swf: var sending_lc:LocalConnection = new LocalConnection(); sending_lc.send("setMP3", "inmylife.mp3", "MP3"); regards, Muzak - Original Message - From: "Andy Herrman" <[EMAI

Re: [Flashcoders] XPath

2006-10-19 Thread Muzak
http://www.google.com/search?hl=en&q=actionscript+xpath&meta= - Original Message - From: "Chip Moeser" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, October 19, 2006 5:10 PM Subject: [Flashcoders] XPath > Does anyone know where I can samples using these (http:// >

Re: [Flashcoders] LocalConnection and Media Components?

2006-10-19 Thread Muzak
argh, error in the last piece of code In the sending swf: var sending_lc:LocalConnection = new LocalConnection(); sending_lc.send("myConnections", "setMP3", "inmylife.mp3", "MP3"); regards, Muzak ___ Flashcod

Re: [Flashcoders] Selection.getFocus()

2006-10-19 Thread Muzak
eval() is not deprecated. It's usage has changed in different versions. http://livedocs.macromedia.com/flash/8/main/1726.html regards, Muzak - Original Message - From: "David Buff" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, O

Re: [Flashcoders] using parseInt() and Math.floor() doesn't return thesame value

2006-10-19 Thread Muzak
I think you're looking for Math.round() Math.floor() always rounds down Math.ceil() always rounds up regards, Muzak - Original Message - From: "Martin Tremblay" <[EMAIL PROTECTED]> To: Sent: Thursday, October 19, 2006 7:27 PM Subject: [Flashcoders] using pars

Re: [Flashcoders] incrementing a target?

2006-10-19 Thread Muzak
try the Flashnewbie mailing list http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie - Original Message - From: "Bill Pelon" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, October 20, 2006 12:07 AM Subject: Re: [Flashcoders] incrementing a target? > This seems

Re: [Flashcoders] newbie question - drawing a ring

2006-10-19 Thread Muzak
%20circle http://muzakdeezign.com/flashcoders/?q=draw%20ring regards, Muzak - Original Message - From: "David Cake" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, October 20, 2006 6:53 AM Subject: [Flashcoders] newbie question - drawing a ring

Re: [Flashcoders] onMouseup bug?

2006-10-20 Thread Muzak
} } You'll only see the second trace if the mouse is over one of the instances, and for that instance only. regards, Muzak - Original Message - From: "Daniel Forslund|Lists" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, October 20,

Re: [Flashcoders] Re: drawing a ring - can I use as motion path

2006-10-20 Thread Muzak
lmann/animationpackage/animation/MoveOnCurve_01.html regards, Muzak - Original Message - From: "Wendy Richardson" <[EMAIL PROTECTED]> To: Sent: Friday, October 20, 2006 7:35 PM Subject: [Flashcoders] Re: drawing a ring - can I use as motion path > Here's a bit of a d

Re: [Flashcoders] zinc instability

2006-10-20 Thread Muzak
http://www.mdmforum.com/forum/index.php or mail them: [EMAIL PROTECTED] regards, Muzak - Original Message - From: "Ammon Lauritzen" <[EMAIL PROTECTED]> To: "Flashcoders" Sent: Friday, October 20, 2006 7:50 PM Subject: [Flashcoders] zinc instability > Ok,

Re: [Flashcoders] "animationpackage" library, onCallback ?

2006-10-23 Thread Muzak
} // replace params with real values var myMOC:MoveOnCurve = new MoveOnCurve(mc, points, duration, easing); myMOC.addEventListener("onEnd", Delegate.create(this, this.curveEndHandler)); myMOC.animate(0,100); // or myMOC.run(); // end pseudo code regards, Muzak - Original Message

Re: [FlashCoders] Delegates and performance

2006-10-24 Thread Muzak
etc.. regards, Muzak - Original Message - From: "Hans Wichman" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Tuesday, October 24, 2006 1:52 PM Subject: Re: [FlashCoders] Delegates and performance Hi, i agree, but it is only true, as long as there is

Re: [Flashcoders] Using Flash to Control Windows Media Player

2006-10-24 Thread Muzak
he wmp volume. flash.external.ExternalInterface http://livedocs.macromedia.com/flash/8/main/2200.html regards, Muzak - Original Message - From: "Sander van Surksum" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Tuesday, October 24, 2006 4:56 PM

Re: [Flashcoders] New Flash Video Site.

2006-10-24 Thread Muzak
http://osflash.org/flashcoders/etiquette No sitechecks FlashCoders is just plain and simply not the place for sitechecks. regards, Muzak - Original Message - From: "Ivan Dario Sosa Prieto" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: T

Re: [Flashcoders] Q:passing a variable as argument with getURL("javascript:testfunc(arg)");

2006-10-24 Thread Muzak
var arg='myvar' getURL("javascript:testfunc("+arg+")"); - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Tuesday, October 24, 2006 6:54 PM Subject: [Flashcoders] Q:passing a variable as argument with getURL("javascript:testfunc(arg)"); > Hi > I'm having a problem using getURL

Re: [Flashcoders] New Flash Video Site.

2006-10-24 Thread Muzak
Adobe labs Flash Player 9 forum: http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=616&entercat=y There's a few threads regarding video + linux player regards, Muzak - Original Message - From: "AliasT" <[EMAIL PROTECTED]> To: &qu

Re: [Flashcoders] LocalCOnnection/Standalone player bug

2006-10-24 Thread Muzak
er in Flex this.debug_conn = new LocalConnection(); this.debug_conn.allowDomain("*"); this.debug_conn.client = this; this.debug_conn.connect("__mdmDebugger"); Not sure if this is what you're running into, but adding allowDomain() fixed my little [de]bugger ;-) regards, Muzak -

Re: [Flashcoders] LocalCOnnection/Standalone player bug

2006-10-24 Thread Muzak
Have you tried using the latest fp updates? http://www.adobe.com/support/flashplayer/downloads.html#fp9 http://www.adobe.com/support/flashplayer/downloads.html#fp8 regards, Muzak - Original Message - From: "John Grden" <[EMAIL PROTECTED]> To: "Flashcoders mailing l

Re: [Flashcoders] Flash environment variables?

2006-10-26 Thread Muzak
ption), but if the fla needs to be shared among different users, that might be a problem as the path will probably be different for each user. With a global classpath, this is not an issue. As Mark said, using source control takes getting used to but pays off in the end. regards, Muzak -

Re: [Flashcoders] EventDispatcher and Delegate - where am I goingwrong...

2006-10-26 Thread Muzak
Actually, option 1 is what you should aim for and option 2 is what you should avoid. Or in other words, approach 1 was introduced to avoid/get around approach 2. regards, Muzak - Original Message - From: "Jon Bennett" <[EMAIL PROTECTED]> To: "Flashcoders mailing

Re: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Muzak
I get the same error (code or no code in timeline). Must be a naming conflict with some internal/hidden class. regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: Sent: Thursday, October 26, 2006 6:03 PM Subject: [Flashcoder

Re: [Flashcoders] There is no method with the name 'super'

2006-10-27 Thread Muzak
No MovieClip is attached to the RectangleExt class and doesn't need to be. It's used by Tester class (which is attached to a MovieClip). I can clearly see the trace in the constructor of RectangleExt, so the class is loaded. regards, Muzak - Original Message - From

Re: [Flashcoders] LocalConnection and Media Components?

2006-10-27 Thread Muzak
ads/localconn/ download example http://muzakdeezign.com/downloads/localconn/localconn.zip regards, Muzak - Original Message - From: "Martin Scott Goldberg" <[EMAIL PROTECTED]> To: Sent: Saturday, October 28, 2006 5:57 AM Subject: Re: [Flashcoders] LocalConnection and Medi

Re: [Flashcoders] Looking for a good FlexCoders list

2006-10-28 Thread Muzak
Erhm, FlexCoders maybe? ;-) http://tech.groups.yahoo.com/group/flexcoders/ flexcoders@yahoogroups.com regards, Muzak - Original Message - From: "Troy Rollins" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Saturday, October 28, 2006 6:55 PM Subject:

Re: [Flashcoders] FileReference and mac file types

2006-10-29 Thread Muzak
http://www.google.com/search?hl=en&q=filereference+mactype&meta= http://www.tink.ws/blog/macintosh-file-types/ http://www.joshbuhler.com/2006/05/30/mac-file-types-one-more-thing/ regards, Muzak - Original Message - From: "Carl Welch" <[EMAIL PROTECTED]> To: &

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Muzak
Delete mcLinker from library and recreate it. regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 11:06 AM Subject: Re: [Flashcoders] There is no method wi

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Muzak
Yeah, seems to popup again after I delete ASO files. Have you reported this already? regards, Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 2:51 PM Subject: Re:

Re: [Flashcoders] There is no method with the name 'super'

2006-10-30 Thread Muzak
Yeah that's the correct place. And sorry about the confusion I may have caused. Oh en graag gedaan ;-) Muzak - Original Message - From: "Quinten [ :: MediaMonks :: ]" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 5:

Re: [Flashcoders] Looking for a good FlexCoders list

2006-10-30 Thread Muzak
d never had any issues with yahoogroups. regards, Muzak - Original Message - From: "Troy Rollins" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Monday, October 30, 2006 5:31 PM Subject: Re: [Flashcoders] Looking for a good FlexCoders list > >

Re: [Flashcoders] Q: Firefox on a mac

2006-10-30 Thread Muzak
Do you have plugin detection in place? If not, does the user have the required plugin installed for both browsers? regards, Muzak - Original Message - From: "Wendy" <[EMAIL PROTECTED]> To: Sent: Monday, October 30, 2006 8:28 PM Subject: [Flashcoders] Q: Firefox on a

Re: [Flashcoders] Looking for a good FlexCoders list

2006-10-30 Thread Muzak
an account). regards, Muzak - Original Message - From: "Michael Bedar" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Tuesday, October 31, 2006 12:56 AM Subject: Re: [Flashcoders] Looking for a good FlexCoders list >I know what you mean.. i recently

Re: [Flashcoders] OOP advice for game

2006-11-04 Thread Muzak
it changes. The balloon (and other instances that need it) would listen to the events it is interested in. regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf

Re: [Flashcoders] OOP advice for game

2006-11-05 Thread Muzak
should consider making the WeatherManager class a Singleton as well. regards, Muzak - Original Message - From: "Cédric Néhémie" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Sunday, November 05, 2006 12:46 PM Subject: Re: [Flashcoders] OOP advice

Re: [Flashcoders] Adding user Defined parameter in Flash Component

2006-11-07 Thread Muzak
Check the docs for: Using Components > Creating Components > Creating the ActionScript class file > Adding component metadata Livedocs: http://livedocs.macromedia.com/flash/8/main/3031.html Muzak - Original Message - From: "hidayath q" <[EMAIL PROTECTE

Re: [Flashcoders] Q:Framework ARP vs PixLib

2006-11-08 Thread Muzak
Can you provide some more details on these 2 statements? - found arp to be somewhat limited and unflexible - It goes far beyond ARP, no doubt regards, Muzak - Original Message - From: "Marcelo de Moraes Serpa" <[EMAIL PROTECTED]> To: "Flashcoders mailing l

Re: [Flashcoders] about BitmapData.draw() crossdomain

2006-11-08 Thread Muzak
Add System.security.allowDomain("www.b.com"); in swf on a.com You'll still need a crossdomain policy file on b.com to be able to load the image in an swf on a.com. regards, Muzak - Original Message - From: "Zeh Fernando" <[EMAIL PROTECTED]> To: &

Re: [Flashcoders] Q:Framework ARP vs PixLib

2006-11-08 Thread Muzak
See reply inline.. - Original Message - From: "Marcelo de Moraes Serpa" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, November 08, 2006 1:51 PM Subject: Re: [Flashcoders] Q:Framework ARP vs PixLib > Hi Muzak, > > Can you p

Re: [Flashcoders] Q:Framework ARP vs PixLib

2006-11-08 Thread Muzak
Does it come with documentation? Couldn't find any useful info or documentation on osflash regarding VEGAS. All it says is: VEGAS is an AS2, AS3 and SSAS OpenSource Framework regards, Muzak - Original Message - From: "eka" <[EMAIL PROTECTED]> To: "Flash

Re: [Flashcoders] EventDispatcher and onEnterFrame.... problems

2006-11-08 Thread Muzak
>From a person who keeps posting against the use of 'this' and who says it's >bad practice I'd expect something better than using nested functions, especially if there's no need for it whatsoever. - Original Message - From: "Steven Sacks | BLITZ" <[EMAIL PROTECTED]> To: "Flashcoders ma

Re: [Flashcoders] TAMARIN!!

2006-11-10 Thread Muzak
Make sure to read this before getting any wild ideas :-) http://www.mozilla.org/projects/tamarin/faq.html regards, Muzak - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Friday, November 10, 2006 2:12 PM Subject: [Flashcoders] TAMARIN!! > > Wow > What great n

Re: [Flashcoders] frustrated with textFields: getting height while textisn't fully 'there'

2006-11-12 Thread Muzak
Create a second textfield (hidden) that is as wide as the original, is only one line high and does not autosize, dump the text in it and grab its maxscroll value. regards, Muzak - Original Message - From: "grimmwerks" <[EMAIL PROTECTED]> To: "Flashcoders mailin

Re: [Flashcoders] Remoting blank requests

2006-11-14 Thread Muzak
If I'm not mistaken, blank/empty calls are made to either create a connection or check if the service exists. I'm not 100% sure about that though. regards, Muzak - Original Message - From: "Janis Radins" <[EMAIL PROTECTED]> To: "Flashcoders mailing li

Re: [Flashcoders] Flash 8: Code editors

2006-11-17 Thread Muzak
t Or for a non-open source eclipse AS plugin, try: http://fdt.powerflasher.com/flashsite/flash.htm PHP: http://www.phpeclipse.de/tiki-view_articles.php Coldfusion: http://www.cfeclipse.org/ XML: http://www.xmlbuddy.com/ There's plenty of plugins out there.. regards, Muzak - Origin

Re: [Flashcoders] as 2 email validation class

2006-11-19 Thread Muzak
http://muzakdeezign.com/flashcoders/?q=email%20validation Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

Re: [Flashcoders] Tween color of dynamic text

2006-11-22 Thread Muzak
You can use the decimal values just fine with setRGB. var _clr:Color = new Color(_mc); _clr.setRGB(4951245); regards, Muzak - Original Message - From: "eric dolecki" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, November 22, 2006 2:52 PM

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-24 Thread Muzak
mx.remoting.Services or mx.remoting.NetServices? You can not use the Responder class with NetServices, you have to use the new mx.remoting.Services class. regards, Muzak - Original Message - From: "Graham Pearson" <[EMAIL PROTECTED]> To: "Flashcoders mailing list"

Re: [Flashcoders] AS2 Flash Remoting Troubles

2006-11-25 Thread Muzak
hservices/gateway/";, webServiceLog, "properties.cfc.flashchat", null, null); createAccount_btn.addEventListener("click", Delegate.create(this, this.createAccountClickHandler)); stop(); regards, Muzak - Original Message - From: "Graham Pearson&quo

Re: [Flashcoders] components are Evil?

2006-11-25 Thread Muzak
, in my opinion. regards, Muzak - Original Message - From: "JulianG" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Saturday, November 25, 2006 10:22 PM Subject: Re: [Flashcoders] components are Evil? >I have the same impression. > I found it ea

Re: [Flashcoders] Old Flash Problem - Clips stop receiving clicks

2006-11-29 Thread Muzak
den/invisible/unremovable) movieclip instance in the main timeline created as soon as you use a v2 component. regards, Muzak - Original Message - From: "Steven Sacks | BLITZ" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, November 29, 2006 3:47

Re: [Flashcoders] Re: FLV Duration

2006-12-05 Thread Muzak
google (works on macs) http://www.google.com/ http://www.google.be/search?hl=en&q=flv+metadata+mac&meta= - Original Message - From: "Terrence Rajaram" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Tuesday, December 05, 2006 4:25 PM Subject: Re: [Flashcoders] Re: FLV Duration

Re: [Flashcoders] Q: Best tool for AS3 development

2007-04-25 Thread Muzak
associates a class with it and writes the .as file to disk. Here's a rather old demo of the Panel http://muzakdeezign.com/arp/create_component_demo.html regards, Muzak - Original Message - From: "Ash Warren" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 25, 200

Re: [Flashcoders] Q: Best tool for AS3 development

2007-04-25 Thread Muzak
info here: http://livedocs.adobe.com/flex/201/langref/flash/display/AVM1Movie.html regards, Muzak - Original Message - From: "Gustavo Duenas" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 25, 2007 7:56 PM Subject: Re: [Flashcoders] Q: Best tool for AS3 development > cas

Re: [Flashcoders] Adobe to Open Source Flex!!!

2007-04-26 Thread Muzak
Make sure to read the FAQ http://labs.adobe.com/wiki/index.php/Flex_Open_Source_FAQ What components are being released to open source? Adobe plans to release all of the components of the Flex SDK needed to create Flex applications, including the Java source code for the ActionScript and MXML c

Re: [Flashcoders] Adobe to Open Source Flex!!!

2007-04-26 Thread Muzak
e.. e.g. the Flex SDK. http://www.adobe.com/products/flex/sdk/ But now instead of the SDK just being "free" it becomes open source under an MPL license. So to simplify things, this is just a license shift ;-) regards, Muzak ___ Flashcoders

Re: [Flashcoders] Flash Remoting in AS2 w/ .NET

2007-04-26 Thread Muzak
d: import full.namespace.to.ClientInfo; var clientInfo:ClientInfo; regards, Muzak - Original Message - From: "Randy Tinfow" <[EMAIL PROTECTED]> To: Sent: Thursday, April 26, 2007 10:21 PM Subject: [Flashcoders] Flash Remoting in AS2 w/ .NET .NET Code: asoClientInfo.ASType = "Cli

Re: [Flashcoders] should be simple: MovieClip drawing API

2007-04-26 Thread Muzak
You need to use lineTo in the loop, instead of moveTo. You should also look into using Point (flash.geom.Point) for the x,y positions rather than Array's. Here's a slightly modified version: import flash.geom.Point; var RED = 0xFF; // some defined (x, y) coordinates var nw_pt:Point = new P

Re: [Flashcoders] Clear Set Interval Q:

2007-04-27 Thread Muzak
at your sample code shows those same numbers (11x per frame) ;-) regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

Re: [Flashcoders] Wave effect

2007-04-27 Thread Muzak
google: "flash mac dock" here's one: http://jrgraphix.net/research/flash-dock-mx-2004.php there's more of them, check google. - Original Message - From: "Parvaiz Patel" <[EMAIL PROTECTED]> To: Sent: Friday, April 27, 2007 2:50 PM Subject: [Flashcoders] Wave effect > > Hi, > > Anybod

Re: [Flashcoders] how to write a class that loads XML?

2007-04-27 Thread Muzak
ny errors after that (at least for a while untill they run out of synch again). Muzak - Original Message - From: "sebastian chedal" <[EMAIL PROTECTED]> To: Sent: Friday, April 27, 2007 2:53 PM Subject: Re: [Flashcoders] how to write a class that loads XML? > ok i was

Re: [Flashcoders] Duplicating a movieclip/sprite in AS3

2007-04-27 Thread Muzak
instead of an Image component. http://www.adobe.com/2006/mxml"; layout="absolute"> regards, Muzak - Original Message - From: "ben gomez farrell" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, April 27, 20

Re: [Flashcoders] Flex eclipse classpath

2007-04-29 Thread Muzak
Practices: http://www.adobe.com/devnet/flash/articles/as_bestpractices.html It's written for AS2 but most of it applies to AS3 or programming in general as well. regards, Muzak - Original Message - From: "tommek" <[EMAIL PROTECTED]> To: Sent: Sunday, April 2

Re: [Flashcoders] Flex eclipse classpath

2007-04-29 Thread Muzak
If you added the folder "c:\AS3_com" to the project's source path that should suffice. Once added, it should show up in the Navigator panel under the project it was added to. - project name - [source path] AS3_com regards, Muzak - Original Message - From: &

Re: [Flashcoders] dynamic image loading in mc

2007-05-01 Thread Muzak
Please sign up for the flashnewbie list and try your question there. http://chattyfig.figleaf.com/mailman/listinfo/flashnewbie regards, Muzak - Original Message - From: "mastro" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 01, 2007 9:10 AM Subject: Re: [Flashcoders] dynam

Re: [Flashcoders] Two column forms and removing null

2007-05-01 Thread Muzak
Dennis, Try the "flexcoders" list ;-) http://groups.yahoo.com/group/flexcoders/ regards, Muzak - Original Message - From: "Dennis Asher" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 01, 2007 3:18 AM Subject: [Flashcoders] Two column forms and removing null &g

Re: [Flashcoders] Study material for flash certification

2007-05-01 Thread Muzak
Look for this one on amazon.com: Macromedia Flash 8 On Demand Muzak - Original Message - From: "Prince Zain" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 01, 2007 9:27 AM Subject: [Flashcoders] Study material for flash certification > Hi All, > > I wanted t

Re: [Flashcoders] AS3 Metadata references

2007-05-02 Thread Muzak
http://blogs.adobe.com/rgonzalez/2006/06/modular_applications_part_2.html So right now I guess you're best bet is to just google, which is how I found all of the above. regards, Muzak - Original Message - From: "Matt Muller" <[EMAIL PROTECTED]> To: "Flashcoders mail

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

2007-05-03 Thread Muzak
sk me. Of course, in AS3 attachMovie is gone and we can just use: var mc:CustomClip = new CustomClip(); ;-) regards, Muzak - Original Message - From: "Matthias Dittgen" <[EMAIL PROTECTED]> To: Sent: Thursday, May 03, 2007 9:43 AM Subject: Re: [Flashcoders] AS2: gene

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

2007-05-03 Thread Muzak
Yup. Since I'm working in the Flash IDE, I don't see why I shouldn't. - Original Message - From: "Joe Wheeler" <[EMAIL PROTECTED]> To: ; "'Muzak'" <[EMAIL PROTECTED]> Sent: Thursday, May 03, 2007 11:28 AM Subject: Re: Re: [Fla

Re: [Flashcoders] Flash / Java Communication with ExternalInterface

2007-05-03 Thread Muzak
tools for that such as MDM Zinc, SWHX, Apollo (alpha).. http://haxe.org/swhx http://www.multidmedia.com/software/zinc/ http://labs.adobe.com/technologies/apollo/ For Flash to server communication there's all kinds of options. regards, Muzak - Original Message - From: "Ala

Re: [Flashcoders] Flash / Java Communication with ExternalInterface

2007-05-03 Thread Muzak
In that case, look into JSON. http://www.json.org/ regards, Muzak - Original Message - From: "Alain Rousseau" <[EMAIL PROTECTED]> To: Sent: Friday, May 04, 2007 12:40 AM Subject: Re: [Flashcoders] Flash / Java Communication with ExternalInterface > Currently we&#x

Re: [Flashcoders] Missing fl.* AS3 Packages in Flash CS3

2007-05-03 Thread Muzak
s (not sure how much slower though). regards, Muzak > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Paul Chang > Sent: Thursday, May 03, 2007 8:26 PM > To: Flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] Missing fl.* AS3

Re: [Flashcoders] _searchKey???

2007-05-03 Thread Muzak
> "_searchKey" is added as a variable to all the movieclips on the stage > and is interfering with extremely basic functionality What is it exactly that goes haywire? regards, Muzak - Original Message - From: "Scott Boepple" <[EMAIL PROTECTED]> To: Se

Re: [Flashcoders] Re: AS2: Design Pattern: event based or pointer? frommodel or controller?

2007-05-04 Thread Muzak
EventDispatcher is the way to go. Also make sure to look into the Delegate class in case you're not familiar with it. mx.utils.Delegate http://livedocs.adobe.com/flash/8/main/3430.html http://livedocs.adobe.com/flash/8/main/2988.html regards, Muzak - Original Message -

Re: [Flashcoders] _searchKey???

2007-05-04 Thread Muzak
Ah, that's the "annoying focusmanager stealing focus - bug" ;-) http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg22433.html regards, Muzak - Original Message - From: "Scott Boepple" <[EMAIL PROTECTED]> To: Sent: Friday, May 04, 2007 7:

Re: [Flashcoders] Syntax for dynamically calling a function

2007-05-04 Thread Muzak
to be the one I'd say you should avoid ;-) regards, Muzak ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Sof

Re: [Flashcoders] LoadVars array.length problem

2007-05-05 Thread Muzak
Dump the textfile idea and use XML instead, which is far better suited for stuff like menu's. regards, Muzak - Original Message - From: "John Trentini" <[EMAIL PROTECTED]> To: Sent: Saturday, May 05,

Re: [Flashcoders] LoadVars array.length problem

2007-05-05 Thread Muzak
ob and all that.. regards, Muzak - Original Message - From: "eka" <[EMAIL PROTECTED]> To: Sent: Saturday, May 05, 2007 10:07 AM Subject: Re: [Flashcoders] LoadVars array.length problem > Hello :) > > It's more easy to use

Re: [Flashcoders] LoadVars array.length problem

2007-05-05 Thread Muzak
bout us news portfolio regards, Muzak - Original Message - From: "John Trentini" <[EMAIL PROTECTED]> To: Sent: Saturday, May 05, 2007 10:04 AM Subject: Re: [Flashcoders] LoadVars array.length problem > That sounds right, even to me, eheheh! > > I was trying

Re: [Flashcoders] Flash is BUGGED with Panels

2007-05-05 Thread Muzak
being assigned a numeric ID and getting messed up when you add new ones. Just delete the panelset.xml file and restart Flash. regards, Muzak - Original Message - From: "Steven Sacks" <[EMAIL PROTECTED]> To: Sent: Saturday, May 05, 2007 10:22 PM Subject: [Flashcoders]

Re: [Flashcoders] Flash 8 OSX - Classpath woes

2007-05-05 Thread Muzak
Delete .aso files (in Command or Control menu) and recompile. - Original Message - From: "Steven Sacks" <[EMAIL PROTECTED]> To: Sent: Sunday, May 06, 2007 12:40 AM Subject: [Flashcoders] Flash 8 OSX - Classpath woes > Calling all OSX Flash users: > > Does the classpath > > ./classes >

Re: [Flashcoders] Syntax for dynamically calling a function

2007-05-05 Thread Muzak
I mentioned this in another thread not to long ago. http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg31071.html http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg31112.html regards, Muzak - Original Message - From: "Jesse Graupmann" <[EMAIL P

Re: [Flashcoders][OT] is the Flash9/CS3 delivered to anyone yet?

2007-05-09 Thread Muzak
http://www.google.com/search?hl=en&q=1327+invalid+drive+error - Original Message - From: "Kevin Matzdorf" <[EMAIL PROTECTED]> To: Sent: Thursday, May 10, 2007 4:39 AM Subject: Re: [Flashcoders][OT] is the Flash9/CS3 delivered to anyone yet? > has anyone received a 1327 invalid drive e

Re: [Flashcoders] popup blockers and flash

2007-05-10 Thread Muzak
show us some code. - Original Message - From: "Paul Chang" <[EMAIL PROTECTED]> To: Sent: Thursday, May 10, 2007 6:07 AM Subject: [Flashcoders] popup blockers and flash > I've been experiencing some inconsistent behaviors using ExternalInterface > (AS2) to call JavaScript to launch a

Re: [Flashcoders] popup blockers and flash

2007-05-10 Thread Muzak
You're not "calling" javascript (as in: invoking a Javascript function), you're executing it directly. Have you tried calling a jas function in the browser rather than executing js directly? regards, Muzak - Original Message - From: "Paul Chang" <[EMAI

Re: [Flashcoders] looking for library naming conventions

2007-05-10 Thread Muzak
Application etc.. And those end up in folders (and their assets in subfolders) with folder names indicating what they are Forms Controls Containers etc.. regards, Muzak - Original Message - From: "Steven Sacks" <[EMAIL PROTECTED]> To: Sent: Thursday, May 10, 2007 8:4

Re: [Flashcoders] looking for library naming conventions

2007-05-10 Thread Muzak
For naming instances etc.. on stage, I suggest you read this: http://www.adobe.com/devnet/flash/articles/as_bestpractices.html regards, Muzak - Original Message - From: "Hans Wichman" <[EMAIL PROTECTED]> To: Sent: Friday, May 11, 2007 12:15 AM Subject: Re: [Flashcod

Re: [Flashcoders] Any way to get a local image file into your SWF?

2007-05-11 Thread Muzak
nope - Original Message - From: "ben gomez farrell" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, May 11, 2007 4:16 PM Subject: [Flashcoders] Any way to get a local image file into your SWF? >I know, I know, the FileReference.browse() and .upload() methods were there

<    1   2   3   4   5   6   7   8   9   >