hcl-bot
1
Ok this is a tricky one… I have a program in flash mx 2004… it used to be just plain flash mx… there is a line
getURL(“javascript:{var JPat='” add Pat add “‘;var JInsti=’” add Insti add “‘;var JPhone=’” add Phone add “‘;var JFax=’” add Fax add “‘;var JOrdr=’” add Ordr add “‘;var JPO=’” add PO add “‘;var JSI=’” add SI add “'; updates(JPat, JInsti, JPhone, JFax, JOrdr, JPO, JSI)}”);
that USED to work in Flash MX now it doesnt in Flash MX 2004… the .swf is embeded in the database…
Any Reason Why this No Longer works??
Thanks,
Carlos
hcl-bot
2
Subject: Flash and Domino 6??
Not that has anything to do with Domino, but there have been changes to ActionScript between MX and MX 2004.
hcl-bot
3
Subject: RE: Flash and Domino 6??
just to answer my own question and for anyone else who embeds flash within domino… the syntax now is this…
var url = “javascript:uploader('” + variable1 + “‘,’” variable2 + “')”;
// geturl
getURL(url);
before you had to rename the variables to new ones before they were sent off… such as this…
getURL(“javascript:{var Variable1='” add Variable2 add “'; updates(Variable1, Variable2)}”);