If anybody can help ... pls do
Thanks
Posted 07 October 2006 - 10:52 PM
Posted 08 October 2006 - 03:58 AM
on(release) {
_root.gotoAndStop(MapPageNum);
}
Change the MapPageNum to the number of the frame that you want to link the country to.
Posted 08 October 2006 - 04:51 AM
Posted 08 October 2006 - 06:35 AM
Posted 08 October 2006 - 09:34 AM
Posted 12 October 2006 - 05:15 PM
Posted 12 October 2006 - 09:09 PM
// Setup rollover highlights for EVERY state at once.
// No way I want to see define each one, one by one.
// See "var i = 0" - it is the reason we started with 0 in the naming scheme.
for(var i = 0; i < 50; i++){
// Loop through every state.
var thisState = this['state'+i];
// Assign rollover action, in this case goto frame 2 of the state. (the highlight state).
thisState.onRollOver = function(){
this.gotoAndStop(2);
}
// Assign rollout action, go back to normal un-highlighted state.
thisState.onRollOut = function(){
this.gotoAndStop(1);
}
// Do something if the state is clicked. You only mentioned rollover.. so I just traced the MovieClip name.
thisState.onRelease = function(){
trace("Clicked:"+this._name);
}
}
Posted 13 October 2006 - 12:52 AM
thisState.onRelease = function(){
trace("Clicked:"+this._name);
}
thisState.onRelease = function(){
_root.gotoAndStop(this._name);
}
Posted 13 October 2006 - 01:16 AM
Posted 13 October 2006 - 07:46 AM
Posted 13 October 2006 - 10:44 AM
on(release){
getURL("maine.html","_blank"); // Example of opening Maine's html file in new window.
}
Posted 04 August 2007 - 08:07 PM
Posted 06 August 2007 - 02:05 PM
Edited by zoom4267, 06 August 2007 - 07:41 PM.
0 members, 1 guests, 0 anonymous users