when you say escape php - you mean simply send the variable like this:
<EMBED src='hsa1.swf?roomnumber=<?echo $roomnumber?>'
basically i want to send in a room number and have a star display in a map of that room
here's my flash code:
onClipEvent (load) {
roomnumber=_root.movie;
this.loadVariables("hsa1.php",0,"GET");
// set them all to invisible
for(i=100;i<=117;i++){
roomnum=_root["rm"+i];
roomnum._visible=false;
}//end for
}//end onclipevent(load)
onClipEvent (enterFrame) {
showstar=root["rm"+root.roomnumber];
showstar._visible=true;
}//end onclipevent(enterframe)