Marcel Posted December 4, 2004 Share Posted December 4, 2004 problem jest prosty, ja jednak nie wiem jak sobie z tym poradzić: jak powinien wyglądać AS we Flashu5, aby np: po naciśnięciu przycisku movieclip o nazwie clip1 wędrował do klatki 5 ? Pozdrawiam. Link to comment Share on other sites More sharing options...
leander Posted December 4, 2004 Share Posted December 4, 2004 mozesz uzyc notacji kropkowej: on (release) { _root.clip1.gotoAndStop(5); } lub "with" on (release) { with (_root.clip1) { gotoAndStop(5); } } lub "tellTarget" on (release) { tellTarget (_root.clip1) { gotoAndStop(5); } } Link to comment Share on other sites More sharing options...
Marcel Posted December 4, 2004 Author Share Posted December 4, 2004 dzięki leander za rychłą odpowiedź, te kody jednak nie działają, zapewne pominąłem jakiś drobny szczegół... Link to comment Share on other sites More sharing options...
leander Posted December 4, 2004 Share Posted December 4, 2004 Wszystko przez brak "instance name". W AS odwolujesz sie do niej a nie nazwy symbolu. Ta sluzy jedynie dla celow organizacyjnych, zebys szybciej cos znalazl w bibliotece symboli np Link to comment Share on other sites More sharing options...
Marcel Posted December 5, 2004 Author Share Posted December 5, 2004 oczywiście się zgadza, dzięki za pomoc Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now