From: Laser Lips on
On Jan 6, 4:24 pm, capt edgar <capted...(a)googlemail.com> wrote:
> Hi there
> can u suggest some good jscript editors please?
> I'm a newbie to programming

I use EditPlus for most languages.
It's fantastic and free.
http://www.editplus.com/

Graham
From: Dr J R Stockton on
In comp.lang.javascript message <0dc68d24-87eb-4118-b086-f1ec36eb71f7(a)21
g2000yqj.googlegroups.com>, Thu, 7 Jan 2010 02:11:23, Laser Lips
<loudsphiers(a)gmail.com> posted:
>On Jan 6, 4:24�pm, capt edgar <capted...(a)googlemail.com> wrote:
>> Hi there
>> can u suggest some good jscript editors please?
>> I'm a newbie to programming
>
>I use EditPlus for most languages.
>It's fantastic and free.
>http://www.editplus.com/

Near the top of that page, I see " Click here to Buy Now". The download
page includes "EditPlus Text Editor is distributed as Shareware. You can
download the evaluation version and try it for 30 days. If you find it
useful and decide to keep using EditPlus Text Editor after the
evaluation period has expired, you must buy a license.".

--
(c) John Stockton, nr London UK. ???@merlyn.demon.co.uk Turnpike v6.05 MIME.
Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links.
Check boilerplate spelling -- error is a public sign of incompetence.
Never fully trust an article from a poster who gives no full real name.
From: Hans-Georg Michna on
While we're at it, are there any development environments for
JavaScript around, where you can edit and run and debug all in
the same window?

Eclipse makes a half-hearted attempt at auto-completion, but it
doesn't work most of the time. And to my knowledge you can't
debug in it.

I know Firebug and the debugger built into Internet Explorer 8,
and they are both fairly good, but you cannot edit in them.

Hans-Georg
From: Garrett Smith on
Hans-Georg Michna wrote:
> While we're at it, are there any development environments for
> JavaScript around, where you can edit and run and debug all in
> the same window?
>
> Eclipse makes a half-hearted attempt at auto-completion, but it
> doesn't work most of the time. And to my knowledge you can't
> debug in it.
>

I think Chrome has an Eclipse debugger, though I've not used it.
Blackberry has an Eclipse debugger that I have used.

> I know Firebug and the debugger built into Internet Explorer 8,
> and they are both fairly good, but you cannot edit in them.
>

I'd like to set up IE for debugging in Eclipse, but don't know how.
--
Garrett
comp.lang.javascript FAQ: http://jibbering.com/faq/
From: Thomas 'PointedEars' Lahn on
Garrett Smith wrote:

> Hans-Georg Michna wrote:
>> While we're at it, are there any development environments for
>> JavaScript around, where you can edit and run and debug all in
>> the same window?
>>
>> Eclipse makes a half-hearted attempt at auto-completion, but it
>> doesn't work most of the time.

The problem as I see it is that Eclipse is originally a Java IDE, and
plugins are developed by Java people (JSDT is apparently developed by IBM).
Few of them appear to understand that you cannot program in a prototype-
based language like you would in a class-based language. They (need to)
mistake function identifiers for class names (but only if their `prototype'
property is involved), for example, to get Eclipse recognize constructors
and prototype properties. And to date JSDT does not appear to support any
object literals at all.

Auto-completion works better, though, if you add the necessary libraries in
your project (i.e. "ECMAScript Built-In Library", and e.g. "ECMA 3 Browser
Support Library", "Internet Explorer Support Library", and "FireFox Support
Library"); it can also be useful to set the Default 'SuperType' to
"Window() in ECMA 3 Browser Support Library" once you added it. (Of
course, you should not be complaining about missing auto-completion before
you have added "JavaScript Support" to your project under the project's
context menu's Configure submenu. I made that mistake once ;-))

>> And to my knowledge you can't debug in it.
>
> I think Chrome has an Eclipse debugger, though I've not used it.
> Blackberry has an Eclipse debugger that I have used.

Are you saying Chrome and BlackBerry would run Eclipse on debugging?

>> I know Firebug and the debugger built into Internet Explorer 8,
>> and they are both fairly good, but you cannot edit in them.
>
> I'd like to set up IE for debugging in Eclipse, but don't know how.

Plugin description says it should be possible using the Ajax Toolkit
Framework (ATF) now integrated into the Web Tools Platform (WTP), but AIUI
you need to start MSHTML from within Eclipse (in case you though vice-
versa). I have not tried it because Microsoft Script Debugger sufficed for
me to date.


PointedEars
--
Use any version of Microsoft Frontpage to create your site.
(This won't prevent people from viewing your source, but no one
will want to steal it.)
-- from <http://www.vortex-webdesign.com/help/hidesource.htm> (404-comp.)