PDA

View Full Version : A stupid newbie question


kyle@cin.com
03-24-2001, 04:04 PM
Quick, probably silly question.

I have a page with a script that sets up a function. Lets call the function CHANGER. What I want to do is have a flash movie call the javascript function with 3 variables.

I.E. "CHANGER("000000","FFFFFF",50);"

What command do I need to use to make this work. Or is it not that simple?

PLEASE help.

Kyle

edeveloper
03-24-2001, 07:42 PM
in da page:
<script>
function doSumptin(strParam1,strParam2,intParam3){
var doinIt = document.doIt(strParam1,strParam2,intParam3);
}

in da flash:
on (release){
getURL("javascript:doSumptin('value1','value2',3)","","POST");
}

kyle@cin.com
03-24-2001, 08:38 PM
Thank you muchly!!