hi zusammen,
also ich hab da auch n bissl probleme mit dem ding.
ich hab eine recht simple navi gebaut, das is für einen der punkte das script:
Code:
_root.hauptnavigation.main_btn_1.onRollOver = function() {
this.gotoAndStop(2);
SWFAddress.setStatus('leistungen');
_root.openDropdown(1);
}
_root.hauptnavigation.main_btn_1.onRollOut = function() {
this.gotoAndStop(1);
_root.closeDropdown(1);
SWFAddress.resetStatus();
}
_root.hauptnavigation.main_btn_1.onRelease = function() {
this.gotoAndStop(2);
this.enabled = false;
SWFAddress.setValue('leistungen');
_root.hauptnavigation.main_btn_2.enabled = true;
_root.hauptnavigation.main_btn_2.gotoAndStop(1);
_root.hauptnavigation.main_btn_3.enabled = true;
_root.hauptnavigation.main_btn_3.gotoAndStop(1);
_root.hauptnavigation.main_btn_4.enabled = true;
_root.hauptnavigation.main_btn_4.gotoAndStop(1);
} die swfadress-funktionen klappen alle, nur dass das ding nicht auf dem frame stehen bleibt.
also ich springe zu dem frame "leistungen" bei klick,title und browser reagieren, nur springt das flash in der zeitliste wieder auf frame 2 (home) zurück...
auf dem frame is der bezeichner $, so wie ich das aus dem beispiel-file im swfadress.zip gefunden hatte...
->
http://asual.com/swfaddress/samples/flash/
hab nun auf das frame zusätzlich noch stop(); gepackt, was allerdings auch nix bringt...
jemand n tipp? bin ich blind?
danke
tom