Hi there,
Storyboard:
A/ Let a qualified-user place a dot on a country map and this dot will be shown on the map. When other users come by they see dot’s and those dot’s trigger a image.
1 Create a map, duh
2 Use the mouse to get the coordinates (_x and _y position) onRelease will be the selected coordinates.
3 Create a preview-scene were the qualified user sees the placement of his dot.
4 If oke, a image upload scene is triggered (the selected _x and _y coordinates are hidden)
5 The qualified user selects a image on his computer.
6 Again a preview scene, now with the dot on the map and the selected image.
7 If oke the user sends the coordinates and image to the server (i will use php-files to upload the info and a mysql-db to store the info)
I am stuck with step 2. In the attach file you can see what i have so fare.
The trace messages are the data i want to send to a php script. And think i must create an array in flash something like:
coords = new array();
for (i=0;i<=v;i++)
{
coords.dotName = "dot"+v;
coords.dotXCoord = +_root.xcoord
coords.dotYCoord = +_root.ycoord
}
You gotta see the attach .fla to understand this. I have the values collected in “controller” movieClip.
Any tips, suggestions?