Man am I having a day of grief. I’m trying to target labeled frames using a simple gotoAndStop command but for some bizzare reason the code doesn’t recognise labels only frames. Here’s a chunk.
var varPageLocation;
var varPageLocation = ‘WhoWeAre’;
switch (varPageLocation) {
case ‘Home’ :
gotoAndPlay(2);
trace(‘Home’);
break;
Anyone know whay this may be?