Hi,
I have a e-postcard, where U can choose parts, combine them together, add some
text.
the idea of this postcard is that after U choose the parts U want, you can
send it to somebody.
All parts are separate movies.
the button has code:
on (release) {
loadpart (partname, partplace);
}
the function loadpart contains nest:
functions loadpart (name, place) {
_root.place.loadmovie (name);
}
--------------------------------------------------------------------------------
--
now the headache:
after i have sected all parts added text, i want to send it to friend.
how can i make flash remember all the parts and text which i have choosed?
I have idea to generate a link something like this:
/postcard.php?=part1name&part2name&text6
but how can i make flash to read those variables?
thanks.
Motion Maker - 22 Feb 2006 22:24 GMT
I would create an id number. Then the user hits a link to a serverside
script that looks up the id which has the assembly details for the Flash
movie.

Signature
Lon Hosford
www.lonhosford.com
May many happy bits flow your way!
Hi,
I have a e-postcard, where U can choose parts, combine them together, add
some
text.
the idea of this postcard is that after U choose the parts U want, you can
send it to somebody.
All parts are separate movies.
the button has code:
on (release) {
loadpart (partname, partplace);
}
the function loadpart contains nest:
functions loadpart (name, place) {
_root.place.loadmovie (name);
}
--------------------------------------------------------------------------------
--
now the headache:
after i have sected all parts added text, i want to send it to friend.
how can i make flash remember all the parts and text which i have choosed?
I have idea to generate a link something like this:
/postcard.php?=part1name&part2name&text6
but how can i make flash to read those variables?
thanks.