Re: [Flashcoders] E4X question

2009-04-30 Thread Muzak
var floorplan:XML = ; var dep:String = "Reception"; trace("floor: ", floorplan.floor.dept.(@name == dep).parent().toXMLString()); //output: floor: Is that what you're looking for? regards, Muzak - Original Message - From: "Mendelsohn, Michael" To: "

Re: [Flashcoders] E4X question

2009-04-30 Thread Gregory Boland
Mike, take the XMLList that you have and run a for each loop on it looking for a match at the name attribute for each (var element:XML in FloorPlanData.floor){ if(eleme...@name == thisLabel){ return element } } or something along those lines Hope this is what you were asking gre

Re: [Flashcoders] Batch wrapping a bunch of FLV files in SWFs

2009-04-30 Thread Steve Mathews
http://www.ffmpeg.org/ maybe? On Thu, Apr 30, 2009 at 10:23 AM, Henry Cooke < aninfinitenumberofmonk...@gmail.com> wrote: > Anyone know a good way of doing this? > I've got a big stack of FLVs that I need to wrap up in SWFs so I can > control > their timelines properly. > > I'd love it if there w

[Flashcoders] [OT] Help needed in Bratislava

2009-04-30 Thread Kenneth Kawamoto
I need someone who can help me in Bratislava urgently. I need a voice recorded for a corporate Flash piece I am working on. If you have a microphone and can record voice digitally in Bratislava, please contact me off-list. The job is straightforward and the recording should not take long. TI

Re: [Flashcoders] AS3 Papervision Question

2009-04-30 Thread Omar Fouad
No one? On Sun, Apr 26, 2009 at 8:49 AM, Omar Fouad wrote: > So there is a way to apply multiple movieClips, or material to a sphere? > > > On Sun, Apr 26, 2009 at 8:41 AM, Christoffer Enedahl < > christof...@enedahl.com> wrote: > >> That site is not using papervision, it's using prerendered cli

RE: [Flashcoders] E4X question

2009-04-30 Thread Mendelsohn, Michael
Thanks for replying, Cor. Yes, when the xml is loaded, the Event.COMPLETE function gets fired. That part isn't the problem because I'm already doing other things with the XML. It's just this bit that I can't get an XMLList for. What really happens is Sprites within a ScrollPane component get

[Flashcoders] E4X question

2009-04-30 Thread Mendelsohn, Michael
Hi list... I'm still relatively new with E4X. I can't get seem to get this function to return the name of the floor that the department is on. I.E., pass a string, traverse the xml, get the parent's name attribute. In my second attempt, I figured to test for the property name first, because

[Flashcoders] :::: social bookmarking Flash widget

2009-04-30 Thread artur
does one exist out there? im having issues using ShareThis ( cant create dynamic link content ) and AddThis ( not flash friendly..needs wmode transparency ) thanks -- *artur :.* - *www.artur.com* - *ar...@artur.com* - *ph:646.797.3320* ___ Flashcode

Re: [Flashcoders] Batch wrapping a bunch of FLV files in SWFs

2009-04-30 Thread Muzak
You know you can control flv's right? - Original Message - From: "Henry Cooke" To: "Flash Coders List" Sent: Thursday, April 30, 2009 7:23 PM Subject: [Flashcoders] Batch wrapping a bunch of FLV files in SWFs Anyone know a good way of doing this? I've got a big stack of FLVs that I

[Flashcoders] Batch wrapping a bunch of FLV files in SWFs

2009-04-30 Thread Henry Cooke
Anyone know a good way of doing this? I've got a big stack of FLVs that I need to wrap up in SWFs so I can control their timelines properly. I'd love it if there was a command line tool like swfmill or swftools to do it, but I'm willing to try anything that works ;) h. __