Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

mackenziej14390
mackenziej14390
Offline

Badges

Badges
1

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
2

Discussions

Discussions
2

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by mackenziej14390
Customize the badges you want to showcase on your profile
1084:Syntax error:expecting right brace before end of program. It was working before earlier but now it doesn't. - Adobe Experience Cloud 01-02-2016
Heres my code: import flash.events.MouseEvent;/*When home button is clicked, goes directly back to the home frame*/home_btn.addEventListener(MouseEvent.CLICK,goHome);/*Function acts as a command when MouseEvent is interacted with*/function goHome(event:MouseEvent):void {/* Goes to home frame and stops animation*/gotoAndStop("home"); /* Curly brace next line */}/*Function tells animation to set language to display as Englsih*/function setLanguage():void { /* If statement is the choice at the cros...

Views

476

Likes

0

Replies

0
Error 1084: Expecting right brace before end of program. Same error shows up on line 52 twice. Please help! I am trying to make a hexagon a circle race. - Adobe Experience Cloud 31-01-2016
package { import flash.display.MovieClip; import flash.events.Event; public class GameStates extends MovieClip { public var winnder:String; pulbic function GameStates() { // constructor code } public function sayWelcome():void { trace("Welcome to my game!"); } public function moveNext():void { gotoAndStop(currentFrame + 1); } public function movePrev():void { gotoAndStop(currentFrame - 1); } public function startGame():void { addEventListener(Event.ENTER_FRAME, moveHexagon); addEventListener(Eve...

Views

273

Likes

0

Replies

0