[Flashcoders] FLVplayback IE loading progress problem

2007-06-08 Thread Felipe Hefler
Hi Folks! I'm using FLVplayback component. I'm having some trouble when playing a FLV file on IE (6 or 7). The download progress bar just doesn't work. On firefox, safari it works perfectly. Does anyone know about this issue? thanks! ___

Re: [Flashcoders] Passing a Function as Parameter and call functionlater

2007-02-19 Thread Felipe Hefler
Thank you all guys! Great job. But I still have something to ask, silly or not. One thing eval does for me and I don't know if I'm right or wrong, is when I use it (despite I know it's not the better solution), it let's me leave my function like this: _anywhere.rew(mcToRewind,

[Flashcoders] Passing a Function as Parameter and call function later

2007-02-18 Thread Felipe Hefler
Hi everyone! I'm having trouble with this issue: function rew(m:MovieClip, f:Function) { m.onEnterFrame = function() { var cf:Number = m._currentframe; var tf:Number = m._totalframes; if (cf=tf cf1) { m.gotoAndStop(--cf); } else if (cf==1) {

Re: [Flashcoders] Passing a Function as Parameter and call function later

2007-02-18 Thread Felipe Hefler
; } }; } function sayHello() { trace(hallo); } Felipe Hefler schrieb: Hi everyone! I'm having trouble with this issue: function rew(m:MovieClip, f:Function) { m.onEnterFrame = function() { var cf:Number = m._currentframe; var tf:Number = m._totalframes; if (cf=tf cf1

Re: [Flashcoders] Passing a Function as Parameter and call function later

2007-02-18 Thread Felipe Hefler
I've tried it, and didn't work. Can you say how this reference should be? On 18/02/07, Wagner Amaral [EMAIL PROTECTED] wrote: I'm not testing, but you could use: f.call(); as long as f is a reference to a Function object On 2/18/07, Felipe Hefler [EMAIL PROTECTED] wrote: Thank you