Joel Afemi

Greenhorn
+ Follow
since Nov 14, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Joel Afemi

ActionScript 3.0... could that be the language?
12 years ago
Ah I see, thats not good! I'll see If I can find somewhere that could help... Im not too sure on the language either, guess I'll have to find out!
12 years ago
Hi people, this is my first post but I have a feeling I way be coming here a lot! I just started working with Flash Proffesional CS5 in University and I've been given some tasks to do and have hit a dead end! I need to create code that works out how many days are in a month depending on which month it is.

These are the Syntax Errors that I cant seem to fix:
1. 1084: Syntax error: expecting identifier before logicalor.
2. 1084: Syntax error: expecting semicolon before rightparen.
3. 1084: Syntax error: expecting leftparen before else.
4. 1084: Syntax error: expecting identifier before rightbrace.
5. 1084: Syntax error: expecting rightparen before rightbrace.
6. 1084: Syntax error: expecting identifier before rightbrace.

And this is the code I have so far (excuse the layout and such):

package {
import flash.display.Sprite;

public class Main extends Sprite {

public function Main() {
var month:int = 8;

if (month = 4) || (month = 6) || (month = 9) || (month = 11)
trace ("DaysInMonth = 30");
else if (month = 2)
if (isLeapYear)
trace ("DaysInMonth = 29") ;
else
trace ("DaysInMonth = 28") ;
end if
else
trace ("DaysInMonth = 31") ;
end if
}

I'd apreciate if somebody could fix this code for me, whilst indicating (in a different colour font?) what has been added to the code and any general tips to avoid these mistakes in the first place.

Much thanks!
12 years ago