> I've uploaded the new DLL to our company site, and you can retrieve it
> here...
>
> http://dev.hand-multimedia.co.nz/js32.dll
>
Thanks Glenn
Andrew Poulos
Glenn Bull wrote:
> Hello fellow awarians,
>
> For those of you who are using JavaScript in Authorware, there is some
> great news! When the AW team integrated the ability for us to
> use JavaScript, by keeping the actual DLL related to the language
> unaltered, we have been able to download the source code to updated
> versions of the language, compile it to a new DLL, and replace the
> existing JS32.dll with the new one.
--
Erik Lord
http://www.capemedia.net
Adobe Community Expert - Authorware
http://www.adobe.com/communities/experts/
------------------------------------------------------------------------
http://www.awaretips.net - samples, tips, products, faqs, and links!
*Search the A'ware newsgroup archives*
http://groups.google.com/group/macromedia.authorware
I'm off doing other things besides Javascripting these days. But could you can
shoot me over a quick list of new JS features? I'll use it as a starting guide
to update to my JavaScript Quick Reference.
There are seven new Array methods that can be separated into two categories,
item location methods and iterative methods. The item location methods are:
a.. indexOf() - returns the index of the given item's first occurrence.
b.. lastIndexOf() - returns the index of the given item's last occurrence.
The iterative methods are:
a.. every() - runs a function on every item in the array and returns true
if the function returns true for every item.
b.. filter() - runs a function on every item in the array and returns an
array of all items for which the function returns true.
c.. forEach() - runs a function on every item in the array.
d.. map() - runs a function on every item in the array and returns the
results in an array.
e.. some() - runs a function on every item in the array and returns true
if the function returns true for any item.
Regards, Glenn.
"Ron Lubensky" <webfor...@macromedia.com> wrote in message
news:esadcb$sl7$1...@forums.macromedia.com...
Glenn.
"Ron Lubensky" <webfor...@macromedia.com> wrote in message
news:esairk$58h$1...@forums.macromedia.com...