The McLeodGaming forums were permanently closed on April 30th, 2020. You are currently viewing a read-only archive.
View unanswered posts | View active topics It is currently Fri May 15, 2020 5:43 am

Forum rules


IMPORTANT

This Forum is for Flash related questions ONLY! Do not ask questions about spriting, Game Maker, Photoshop, or anything else not related to Flash.



 [ 2 posts ] 
[Request] Can someone fix my code 
Author Message

Joined: Wed Dec 24, 2008 7:21 am
Posts: 32
im trying to learn a newgrounds tutorial using flash 8 pro but i keep getting something saying syntax error! can someone help me

Edited by X2I
Code:
onClipEvent(load) {
  var speed:Number = 0;
  var walk:Number = 3;
  var run:Number = 6;
  var grav:Number = 0;
  var falling:Number = 0;
  var jumped:Boolean = false;
  var jumpHeight:Number = 15;
  var touchingGround:Boolean = false;
  var scale:Number = _xscale;
}

onClipEvent(enterFrame) {
  if (!touchingGround) {
    grav++;
    this._y += grav;
  } else {
    grav = 0;
  }

  if (_root.ground.hitTest(_x,_y,true)) {
    touchingGround = true;
  } else {
    touchingGround = false;
  }
}

and this is the error: **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 12: Statement block must be terminated by '}'
onClipEvent(enterFrame) {

**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 23: Syntax error.

Total ActionScript Errors: 2 Reported Errors: 2

_________________
[URL="http://www.mubos-md.com/licensemaker/levelup.php?21466"]Image
Click here to level up my license![/URL]
Pssst wanna know whats going on in the sff2 devsection?
http://tinyurl.com/www-ssf2secrets-net
[URL="http://www.mubos-md.com/brawlcards/levelup.php?37098"]Image
Click here to level up my card![/URL]


Wed Dec 31, 2008 1:22 pm
User avatar

Joined: Mon Aug 11, 2008 1:09 pm
Posts: 166
Location: England lol
Gender: Male
Currently Playing: Minecraft
I have edited the code in your first post to be correct - you missed an } at the end meaning the second onClipEvent wasn't being terminated.


Wed Dec 31, 2008 10:32 pm
WWW
Display posts from previous:  Sort by  
 [ 2 posts ] 

Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

cron
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software for PTF.