Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var SHELL = _global.getCurrentShell();
- var ENGINE = _global.getCurrentEngine();
- function gameCoordinates()
- {
- var room_mc = ENGINE.my_room_movieclips.room_mc;
- var GAME;
- var coordinates = "%";
- if(room_mc.roomfunctionality._GAME != null) //GAME = room_mc.roomfunctionality._GAME;
- {
- var xc = ENGINE.my_room_movieclips.room_mc.roomfunctionality._GAME._x;
- var yc = ENGINE.my_room_movieclips.room_mc.roomfunctionality._GAME._y;
- coordinates = xc + "%" + yc;
- }
- else if(room_mc.GAME != null) //GAME = room_mc.GAME;
- {
- var xc = ENGINE.my_room_movieclips.room_mc.GAME._x;
- var yc = ENGINE.my_room_movieclips.room_mc.GAME._y;
- coordinates = xc + "%" + yc;
- }
- id__txt.text = coordinates;
- return coordinates;
- }
- gameCoordinates();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement