Question
Error 1061
Here is my code, I keep recieving error 1061.
| public var userID:String; | ||
| public var myUserID:String; | ||
| public var myUsername:String; |
profile_btn.addEventListener(MouseEvent.CLICK, this.profileButtonClick);
| private function profileButtonClick(_arg1:MouseEvent):void{ | |
| var _local2:URLRequest = new URLRequest(("http://www.domain.com/userprofile.php?user=" + myUsername)); | |
| navigateToURL(_local2, "_blank"); | |
| } |
The point of this is to click on either a button or link to go directly to user's profile.
