[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
Tried using the standalone Flex Builder, and tried changing the SDK
Between Flex 3 and Flex 3.0.0.477.  I'm getting it to detect arbitrary
code (gibberish in the middle of a line) and bracket errors, but it
still won't throw anything if I ignore a semicolon or anything like that.



[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
Alright, I just did a fresh install on a different computer with the
same result.

I've got to be doing something wrong...



Re: [flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread Toby Ashley
Semi-colons at the end of each line are optional in AS3, which is why Flex
Builder won't be highlighting those.

What other errors are still being ignored?


On Wed, Jul 2, 2008 at 4:27 PM, steve.baney [EMAIL PROTECTED] wrote:

 Alright, I just did a fresh install on a different computer with the
 same result.

 I've got to be doing something wrong...


 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
 Links






[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
Thanks for the response!  I'm sure I sound like a raving lunatic by
now, but I'm halfway through wasting a second day of coding trying to
figure this out...

OK good call on the semicolons, I could have sworn it was throwing
errors on missing semicolons before I was having these issues though.

OK i just figured out some weirdness, I removed the '' from the end
of my ADG declaration (mxml), and it won't throw an error in source
mode, but as soon as I switched to design it knew there was a problem
and on what line it was on.  Weirdness...

Here's one I would think should cause an error:
var x:int = 'a string';

No go though...



[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
Almost there...

I created a new test project which finds errors just fine.  Now I just
need to see what I messed up in my actual project.  Any ideas?



Re: [flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread Toby Ashley
Yeah that should definitely cause an error. I'm out of ideas I'm afraid,
good luck sorting it



On Wed, Jul 2, 2008 at 5:05 PM, steve.baney [EMAIL PROTECTED] wrote:

 Thanks for the response!  I'm sure I sound like a raving lunatic by
 now, but I'm halfway through wasting a second day of coding trying to
 figure this out...

 OK good call on the semicolons, I could have sworn it was throwing
 errors on missing semicolons before I was having these issues though.

 OK i just figured out some weirdness, I removed the '' from the end
 of my ADG declaration (mxml), and it won't throw an error in source
 mode, but as soon as I switched to design it knew there was a problem
 and on what line it was on.  Weirdness...

 Here's one I would think should cause an error:
 var x:int = 'a string';

 No go though...


 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
 Links






[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
I think this was the problem

.actionScriptProperties

Had this:

applications/

Instead of:

applications
application path=MainView.mxml/
/applications

No idea how that happened, or if I have it solved all the way, but if
that was it...man I feel dumb...

Thanks for the assistance, that really did help me come at it from a
different angle.

I'll post up any further progress.



[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
Nope, still bad...



[flexcoders] Re: Flex Builder Eclipse Builder Syntax Checking

2008-07-02 Thread steve.baney
FIXED:

I'm still not sure exactly what was messing me up, but I reverted to
the root version from my CVS repository and slowly updated the files
from my newest version, testing the error checking and that the
project would still build after updating each file.  Fortunately I
hadn't coded too much in the current branch yet, so it didn't take to
long to bring the root version up to speed.

Thanks for all the help!