Re: [Flashcoders] streaming mp3s not consistent

2008-10-09 Thread Allandt Bik-Elliott (Receptacle)
what would be the netstream method to do this please? On 6 Oct 2008, at 12:40, Allandt Bik-Elliott (Receptacle) wrote: hi guys i have a quick question regarding streaming mp3s. I have several (hundred) dynamically loaded mp3s that i've been streaming into flash using the following code:

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread allandt bik-elliott
at what point do daily job updates become spam? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread Cedric Muller
LOL! I think people need to answer an as3 quiz in order to register so that only qualified people are subscribed, WHAT A GOOD IDEA :) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread Michael William Ypes
I agree and although the occasional job is nice, if only to see what the market is like, I do feel that Beau is starting to use this list as his personal source for flash/flex developers. And what cracks me up even more is that he does not want any recruiters replying to his jobs. Isn't he

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread John R. Sweeney Jr
Why set your sights so LOW... ;) on 10/9/08 7:21 AM, Weyert de Boer at [EMAIL PROTECTED] wrote: I am still waiting for that job offer on the list that requires me to travel to big cities around the globe every n weeks. And of course allows me to telecommute, pays my health care

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread Paul Andrews
- Original Message - From: Weyert de Boer [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Thursday, October 09, 2008 1:21 PM Subject: Re: [Flashcoders] RESUME: Senior Flash Developer (2) I am still waiting for that job offer on the list that requires me

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread Weyert de Boer
I am still waiting for that job offer on the list that requires me to travel to big cities around the globe every n weeks. And of course allows me to telecommute, pays my health care insurance. Not forget pays the ecnomy class tickets to the islands in the pacific where I prefer to telecommute

[Flashcoders] System.security HELP

2008-10-09 Thread Corban Baxter
Hey guys! i have a really weird question I have never ran into before. i am trying to host some SWF's on two serperate domains and get them to talk to each other. But i keep getting the error *** Security Sandbox Violation *** SecurityDomain 'http://www.mydomain-other.com/mySWF.swf' tried to

[Flashcoders] Question e4x attributes text replace

2008-10-09 Thread Jiri Heitlager
Hello, I have this xml file that I would like to filter on a certain string $$lang$$ and I was wondering if it is possible in one go using regExp instead of looping through an XMLList var conf:XML = config assets asset id=chapter1 path=assets/$$lang$$/chapter1.swf /

Re: [Flashcoders] Question e4x attributes text replace

2008-10-09 Thread Ian Thomas
Convert the XML to a string. Do the regExp replace on the string. Reparse the XML? e.g. var str:String=xml.toXMLString(); // do replacement here... xml=new XML(str); Might not be the fastest in the world, depending on the amount of XML you are parsing, but it'll do the job. HTH, Ian On

[Flashcoders] Re: masking w/o using bitmapCaching = true?

2008-10-09 Thread sebastian
Hello good folks, I was wondering if the silence to this email was an indication that there is no workaround/solution? :( Thank you kindly, Seb. sebastian wrote: Hello folks, quick question, I have a scrolling menu here and in the current design it has 'bitmapCaching = true' for the entire

Re: [Flashcoders] Re: masking w/o using bitmapCaching = true?

2008-10-09 Thread laurent
yes, you don't use bitmapCaching with animated movie. Catching must be done when nothing moves. You can try enabling and disabling BitmapCaching after and before animating it's content. L sebastian a écrit : Hello good folks, I was wondering if the silence to this email was an indication

Re: [Flashcoders] streaming mp3s not consistent

2008-10-09 Thread laurent
If it's event sounds, it sounds you should download them all at first. L Allandt Bik-Elliott (Receptacle) a écrit : what would be the netstream method to do this please? On 6 Oct 2008, at 12:40, Allandt Bik-Elliott (Receptacle) wrote: hi guys i have a quick question regarding streaming

RE: [Flashcoders] Re: masking w/o using bitmapCaching = true?

2008-10-09 Thread Keith Reinfeld
Sebastian, With cacheAsBitmap = false, can you overlay your menu with a gradient that has a transparent center then, using a separate graphic, mask the menu only? Regards, -Keith http://keithreinfeld.home.comcast.net ___ Flashcoders mailing

Re: [Flashcoders] can audio be extracted from .flv (audio only) and converted to .mp3 using AS3?

2008-10-09 Thread Glen Pike
Hi, I have been looking into this and ffmpeg should now be able to extract the MP3 from an FLV - a recent update includes the Nelly Moser codec. All my bookmarks are at work, but I will forward them tomorrow and if you are still stuck, I will post them. If you google flv mp3 ffmpeg

Re: [Flashcoders] System.security HELP

2008-10-09 Thread Glen Pike
Hi, I am not sure about 2 SWF's communicating across domains - that sounds like it would use JavaScript, which probably won't work because it is essentially cross site scripting (XSS), which is usually forbidden for JS. If you are loading one SWF inside another, you need to have a

Re: [Flashcoders] System.security HELP

2008-10-09 Thread Corban Baxter
yeah thats the thing. I have a loded SWF that is trying to talk to the main swf from mydomain.com. I can make it do the reverse but I was getting the out of context error in both cases. On Thu, Oct 9, 2008 at 3:14 PM, Glen Pike [EMAIL PROTECTED] wrote: Hi, I am not sure about 2 SWF's

Re: [Flashcoders] Re: masking w/o using bitmapCaching = true?

2008-10-09 Thread Eduardo Omine
You should try BlendMode.ERASE. Draw a gradient with alpha=0 at center, and alpha=1 at the edges. Place it right on top of your menu and set its blendMode to ERASE. The sprite containing the menu and the mask must have blendMode set to LAYER (or any other blendMode with a similar working).