[Flashcoders] Dynamic e4x searches...

2009-09-09 Thread Glen Pike
Hi, I am having some issues with e4x filtering when I try and use a dynamic element in my expressions... Using the XML below (somewhat truncated) I am trying to match either the id or the name depending on the variable type passed in: private function

Re: [Flashcoders] streaming video on my server

2009-09-09 Thread Bassam M
thank you Jared, I found the solution it was the MIME TYPE i have to add flv MIME type to the IIS http://kb2.adobe.com/cps/194/tn_19439.html On Wed, Sep 9, 2009 at 1:05 AM, jared stanley jared.stan...@gmail.comwrote: I remember running into this a few years ago; it had to do with the server

Re: [Flashcoders] streaming video on my server

2009-09-09 Thread jared stanley
glad it worked! On Wed, Sep 9, 2009 at 1:53 PM, Bassam M sense...@gmail.com wrote: thank you Jared, I found the solution it was the MIME TYPE i have to add flv MIME type to the IIS http://kb2.adobe.com/cps/194/tn_19439.html On Wed, Sep 9, 2009 at 1:05 AM, jared stanley

Re: [Flashcoders] Dynamic e4x searches...

2009-09-09 Thread Taka Kojima
Hey Glen, It's quite simple actually, just use [brackets]. Look at the below code: var xml:XML = subscribeable object id1/id namesystem_management/name notifications notification id1/id namestatus/name /notification /notifications /object object

[Flashcoders] sound stick around issue

2009-09-09 Thread Sam Brown
Hello all, I have an issue which will probably be a softball for you guys... Basically I have a gallery-type nav; when you click on an item, an external swf is loaded into a container_mc. The container_mc lives in the main timeline and is simply used to tween the loaded swf in/out and around.

Re: [Flashcoders] sound stick around issue

2009-09-09 Thread Karl DeSaulniers
Well this may not stop the flv from playing and it's AS2 code, so there may be an equivilant in AS3, but try. stopAllSounds; At the end of the out transition. HTHs Karl Sent from losPhone On Sep 9, 2009, at 8:53 PM, Sam Brown 4sambr...@gmail.com wrote: Hello all, I have an issue which

[Flashcoders] [JOB] Flash Developer, Delray, FL | 75-110k

2009-09-09 Thread Beau Gould (OSS)
Flash Developer, Delray, FL | 75-110k This is a full time, on-site, salaried position located near Delray, FL. No telecommuting allowed. US Citizens, Green Card holders or EAD only please. Local candidates preferred; however, candidates considering relocating at own expense considered as well.

Re: [Flashcoders] sound stick around issue

2009-09-09 Thread Karl DeSaulniers
Oops I think it's actually stopAllSounds(); Karl Sent from losPhone On Sep 9, 2009, at 11:03 PM, Karl DeSaulniers k...@designdrumm.com wrote: Well this may not stop the flv from playing and it's AS2 code, so there may be an equivilant in AS3, but try. stopAllSounds; At the end of the

Re: [Flashcoders] sound stick around issue

2009-09-09 Thread Sam Brown
Hey Karl, Thank you for the suggestion - you've helped me get to the bottom of this. Although stopAllSounds() is AS2, that was enough of a breadcrumb to find the AS3 equivalent: // make sure you import this class: import flash.media.SoundMixer; // triggered in the out transition