Ren,
> Anyhow, I had a thought, is my script AS2 or AS3?
>
> on (release) {
> _parent.gotoAndPlay("Hostel_CommCent");
> }
Any time you see on() or onClipEvent(), you know you're
dealing with
ActionScript 1.0 or 2.0 -- not 3.0. Those functions, on() and
onClipEvent(), allow you to attach code directly to objects,
which isn't
allowed in AS3. (Instead, all code is attached in keyframes
in AS3, or in
external text files.)
David Stiller
Co-author, ActionScript 3.0 Quick Reference Guide
http://tinyurl.com/dpsAS3QuickReferenceGuide
"Luck is the residue of good design."