Hey there,
I’m busy building a map. The data being used is xml.
Everything is working fine. The map is split up into various mc’s which represent the various states. When you hover over the mc it pulls a the relevant xml information.
something like:
[AS]
myState.onRollOver = function(){
_root.popU._visible = 100;
popU.startDrag ();
popU._x = _xmouse;
popU._y = _ymouse;
_root.popU.satename.text = statename[2];
}
myState.onRollOut = function(){
_root.popU._visible = 0;
}
}
[/AS]
But I’ve got a million rollover functions… for all the mc’s… Can someone steer me in the right direction… so I can have one mouse event for all of them?
Thx for any help regarding this…
Keith