| Author |
may you guess where error I get: script: stop/start animation image
|
Leonidas Savvides
Ranch Hand
Joined: Jan 31, 2010
Posts: 397
|
|
may you guess where error I get stop/start animation
|
 |
Hunter McMillen
Ranch Hand
Joined: Mar 13, 2009
Posts: 490
|
|
I don't think you are allowed to have access modifiers inside the main method. I am not completely sure about that. But I just did a small test:
And got these compile errors:
TestPublic.java:5: illegal start of expression
public int FIVE = 5;
^
TestPublic.java:6: illegal start of expression
private int SIX = 6;
^
TestPublic.java:7: illegal start of expression
protected int SEVEN = 7;
Based off that id say the access modifiers are a no-no in the main method.
Hunter
|
"If the facts don't fit the theory, get new facts" --Albert Einstein
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9940
|
|
|
My guess is you don't want that 'public' before you declare those method variables. Or, you want to move the declaration outside of the main() method.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32611
|
|
|
As well as public private and protected being prohibited inside methods, why are you not marking all your fields private?
|
 |
Leonidas Savvides
Ranch Hand
Joined: Jan 31, 2010
Posts: 397
|
|
I post a new ver here: http://www.coderanch.com/t/503190/java/java/well-did-as-below-but
but I get no errors[run or compile] but no appear the stop/start buttons ONLY the ani img well?
|
 |
 |
|
|
subject: may you guess where error I get: script: stop/start animation image
|
|
|