Hi all,

I'm using the JS integration kit in a project that requires Flash 7.

It's working, but in certain cases, it causes the page to flicker.  The page
doesn't refresh, which is weird, it just flickers...

Here's what I'm doing:

//call a js function from Flash
proxy.call('play');

//here's the js function I'm calling.  When it's called, I want to notify
Flash that it has been called so I can take the next step.
function play() {
    callFlash("onPlay", true);
}

//and here's the JS function I use to call back to Flash:
function callFlash() {
   flashProxy.call.apply(flashProxy, arguments);
}

I'm concerned that, because the integration kit uses local connection,
processes like this aren't really possible.  Meaning, maybe I can't call a
function and *immediately* call back into Flash.  That would be a bummer.

If anyone has any ideas on this, I'd love to hear them.  I'm about to go
back to watched variables on the root timeline.  Which would  be sad, as
it's nice to be able to pass typed objects back and forth in Flash 7...

Thanks,

--
Jim Kremens
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to