Re: [Flashcoders] how do i say "string" + anything?

2009-09-24 Thread strk
On Wed, Sep 23, 2009 at 05:36:20PM -0700, Steven Sacks wrote: > var compareBranch:String = "index/nav/home/whatever/else"; > > if (compareBranch.indexOf(event.validBranch) > -1) Would fail if the substring is found farther than the beginning. Should be checked for being == 0 eventually. --strk;

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-24 Thread Geografiek
Hi list, I have a .fla with symbols in the library and a docClass.as going with it. When I publish, I get the following waring message: "WARNING: Actions on button or MovieClip instances are not supported in ActionScript 3.0. All scripts on object instances will be ignored." But I can't fin

Re: [Flashcoders] how do i say "string" + anything?

2009-09-24 Thread Nicolas Cacace
You have to cast the variable as a String before the concatination or the two values might be incompatable ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] FOTB

2009-09-24 Thread matt
Hey, did anyone attend/pay attention to Flash on the Beach? Seems like some great content this year, was wondering what the list thought. Some cool stuff like Joa Ebert's Apparat & Andre Michelle's sound/PixelBender stuff, but since this list generally runs toward the less esoteric aspects of AS3,

Re: [Flashcoders] FOTB

2009-09-24 Thread Mauro Martins
I liked the new path that Flash IDE is taking. More interaction between coders and designers and better workflow between Flash Builder and Flash IDE. Code completion is nice! 2009/9/24 matt > Hey, did anyone attend/pay attention to Flash on the Beach? > Seems like some great content this year,

Re: [Flashcoders] FOTB

2009-09-24 Thread Iestyn Lloyd
On Thu, Sep 24, 2009 at 3:51 PM, matt wrote: > Hey, did anyone attend/pay attention to Flash on the Beach? > Seems like some great content this year, was wondering what the list > thought. > Some cool stuff like Joa Ebert's Apparat & Andre Michelle's > sound/PixelBender stuff, but since this list

RE: [Flashcoders] FOTB

2009-09-24 Thread David Hunter
Really wanted to go but left it late and missed out on tickets. Were any of the talks filmed and will they be posted online to watch? Cheers, Dave > Date: Thu, 24 Sep 2009 07:51:37 -0700 > From: m...@moonbootmedia.com > To: flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] FOTB > > Hey,

[Flashcoders] RE: RE: swf behaving differently in different domain and other issues loading swf (Isaac Alves) (Keith Reinfeld)

2009-09-24 Thread Isaac Alves
Keith, I´m sorry but the only reply I-ve found from you here (at least on this topic) was this one where you talked about checking the xml file, and I-ve only received it now, actually 45 minutes ago in my gmail inbox That aside I try to answer all the replies, but since I-ve been doing so mu

[Flashcoders] Invitation to connect on LinkedIn

2009-09-24 Thread Pedro Kostelec
LinkedIn Pedro Kostelec souhaite se connecter à vous sur LinkedIn : -- Marc, I'd like to add you to my professional network on LinkedIn. - Pedro Accepter l'invitation de Pedro Kostelec http://www.linkedin.com/e/XEzBlT6odM8buZtuxRkFg2aRojmbrR

RE: [Flashcoders] FOTB

2009-09-24 Thread Merrill, Jason
>> Were any of the talks filmed and will they be posted online to watch? Check this out: http://cs5.org/?p=238 Jason Merrill Bank of America Global Learning Learning & Performance Soluions Monthly meetings on making the most of the Adobe Flash Platform - presented by bank associates, Ad

[Flashcoders] building custom libraries and components using FlashDevelop and Flex SDK

2009-09-24 Thread Isaac Alves
Hello, I'm giving a try on FlashDevelop with Flex SDK, and a lot of things are new to me . My study background is on Graphic Design, so I know little about programming. One of the reasons I´m migrating to FD it is that I would like to build my own libraries (menus , slideshows, and other stuff) a

Re: [Flashcoders] Invitation to connect on LinkedIn

2009-09-24 Thread Gregory Boland
Pedro, The flashcoders list is not someone's email from some guy named Marc. It is a list of people who all subscribe and can send emails to help get questions answered or help answer questions. the list is not a real person so I'm not sure how much luck your gonna have inviting it to be friends

[Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread Don Schnell - TFE
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread William Chadwick
Not sure what you want, as there is no text in your message. But if you want to know about how SharedObject's work, here you go. Local SharedObjects (AKA 'Flash Cookies') are stored in the following path in a directory with a random name: C:\Documents and Settings\USERNAME\Application Data\Macrome

[Flashcoders] Best way to detect key KEY_DOWN on MovieClip

2009-09-24 Thread ktt
Hello, I would like to add listener to movieclip, listenining for DELETE. What is the best way to do that? In Actionscript 3 it gets complicated. Thank you in advance, Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://c

[Flashcoders] JPGEncoder and com folder

2009-09-24 Thread Bassam M
Hi guys anybody know where is the folder com.adobe I'm confuse about the class I don't know wher it's and I want to use JPEGEncoder but I'm getting error 1172: Definition com.adobe.images:JPGEncoder could not be found. so I want to place it inside the exact folder any Idea

Re: [Flashcoders] audio pause/resume problem

2009-09-24 Thread Steven Sacks
http://www.stevensacks.net/2008/08/07/bug-with-sound-channel-position-and-mp3s-less-than-128kbps On Sep 23, 2009, at 6:19 AM, Rodrigo Augusto Guerra wrote: c'mom guys...no one knows? i'm in a dead end here i can't guarantee that everybody will have FP 10 to avoid this :) - Origin

Re: [Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread Don Schnell - TFE
Thanks William, I am not sure why there was no text in my original post but my issue is how to prevent data from being cached in IE & Firefox. My SWFs load in data from a flat text file and I tried using the following No-Cache settings before the head but they don't seem to prevent this issue.

RE: [Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread Chris Foster
Hi Don, The conventional way to avoid loading cached content into Flash is to call a unique URL for the content every time. One way to do this is to append a random number or UTC timecode (in milliseconds) to your URL, for example (AS3): var l:Loader = new Loader(); var req:URLRequest = new URLRe

Re: [Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread Joseph Balderson
You cannot prevent a file from being cached in the browser; what most "cache" settings are designed to do is prevent session information and cookies from being cached. The best you can do is force the browser to grab the file from the server each and every time it is viewed, which acheives the d

RE: [Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread Chris Foster
Sorry - formatting got screwed up there... one more try... AS3 example of 'anticache' technique. - var l:Loader = new Loader(); var req:URLRequest = new URLRequest("your url here"); var vars:URLVariables = new URLVariables(); req.method = URLRequestMethod.POS

Re: [Flashcoders] Flash Cache in IE & FF

2009-09-24 Thread Don Schnell - TFE
Thanks Chris, I forgot all about that technique (been away from this for a little bit)! *Don * Chris Foster wrote: Sorry - formatting got screwed up there... one more try... AS3 example of 'anticache' technique. - var l:Loader = new Loader(); var req:URLR