flash data integration:
Maybe this is the forum for this question...
What I have is a flash module where people go through and click options to
have something customized and built visually in front of them. I have that part
going fine and it works/looks great.
Now, what I need to have going on in the background is that every time they
select an option, it stores the code for that option in some sort of hidden
text field. There will be four choices they go through, so it should be
selecting the options, comma deliminated, and holding the info as the user goes
through.
At the end, when they click submit, I need to have it take all that info and
send it on with a javascript function. I need to know how to have it collect
and hold the info along the way, then at the end send that JavaScript function
with it in there (I have the function ready)
The JavaScript function will be like this, where "a" "b" "c" etc is the data
we've collected on the way throughout the module:
JavaScript:SubmitCustom(a, b, c, d);
an example of the link created on th easpx page would be
javascript:SubmitCustomBoot('Bare', '1', 'Cast', 'Comfort');
Now, I guess the basic question would also be if from flash you can call
client side JavaScript functions that exist outside the flash?
I haven't done anything like this before, so any and all input (and hopefully
the info about how to successfully do this) would be appreciated!