I am creating this flash feature for a furniture site were the user can drag and drop various objects, as well as rotate them (note: it only needs to be a 2D vied from the top) and be able to save them and view them later.
Does anybody know of any AS that can be used to do this, or even better a tutorial showing how thins can be done.
To drag it:[AS]on (press) {
startDrag(this);
}
on (release) {
stopDrag();
}[/AS]As far as doing the other stuff you mentioned, that’s a little out of my league.