[Flashcoders] Re: Changing width of seekBar during playback (AS2, FLVPlayback)

2009-03-10 Thread jonas magnusson
Probably solved the seekbar issue. If anyone happen to have the same problem in the future: Seems I can get it working by making two seekbars and encapsulating them in container_mc's. On newSize i set the new size of both seekbars, do remove movieclip on prev_container.seekBarHandle_mc then set

Re: [Flashcoders] Re: Changing width of seekBar during playback (AS2, FLVPlayback)

2009-03-10 Thread Muzak
The following works for me: FLVPlayback and SeekBar instance on stage. A button that, when clicked, will toggle the size of the seekbar. In the button click handler: - resize the seekbar - set the seekBar property of the video playback to null - remove the seekbar handle (seekBarHandle_mc)

RE: [Flashcoders] AS3 - XML Filter by Date

2009-03-10 Thread Doug Coning
Thank you, that helped a lot. For anyone else trying to filter by date, here's the line of code: var today:Date = new Date(); var showXML:XMLList = result_xml.item.(new Date(date.toString()) = today); Thanks, Doug Coning Senior Flash / ASP.Net Developer Webize Interactive Media

Re: [Flashcoders] Re: Changing width of seekBar during playback (AS2, FLVPlayback)

2009-03-10 Thread jonas magnusson
Thanks Muzak, Seems like setting it to null loses the reference, and then since it's not the same, the seekBar property can be updated again. Working with Flash often leads to creative workarounds.. :) Cheers, /Jonas On Tue, Mar 10, 2009 at 1:19 PM, Muzak p.ginnebe...@telenet.be wrote: The