Is there anyone who has experiences in embedding Flash ActiveXControl in ArborText? I want to know how to pass FlashVars to the embedded Flash movie in Arbortext?
I assume it is also in the ControlName_OnInitialize function. But what's the format? I didn't find any information on embedding Flash within Arbortext in the help documents or online at all. Your help is really valuable.
Also can I define the width and height and ScaleMode within OnInitialize function in the way below? I generally want to know how to write embed/param tag that we usually do in a html page.
/*
* Initialization
*/
function FlashTest_OnInitialize(ActiveNode) {
FlashTest.Movie = "C:/test.swf";
FlashTest.Loop = false;
FlashTest.Height = 500;
FlashTest.Width = 800;
FlashTest.ScaleMode = "ShowAll";
FlashTest.Play();
}
But it didn't work. Maybe I am missing something here.
Thanks very much