Hi Folks, Its been a bit slow on this list for the last while so I thought I would let you all know what's happening. I'm working on JavaScript OSA 1.0b10...
Mark Alldritt
alldritt@...
Jan 16, 2001 5:32 pm
225
... Would any (kind, polite) messages from developers to any Apple contacts help? Rgds Aldo...
Aldo Bergamini
aaberga@...
Jan 16, 2001 10:59 pm
226
... I think it'd be fantastic if JSOSA was included with Mac OS X. Steve -- Steve Roy <sroy@...>...
Steve Roy
sroy@...
Jan 17, 2001 1:34 pm
227
... I'm sure it couldn't hurt. From what I have been told, Apple considers OSX feature complete, and adding JSOSA presents a problem. Cheers -Mark ... Mark...
Mark Alldritt
alldritt@...
Jan 18, 2001 5:20 am
228
Documentation for the JavaScript 1.5's core language is now available: <http://developer.netscape.com/docs/manuals/js/core/jsref15/contents.html> JavaScript...
Arthur J Knapp
arthur@...
Jan 26, 2001 4:44 pm
229
I have, for reasons probably best left undiscussed in the plain view of people of sensitivity and intelligence, been trying to figure out how to get some JSOSA...
dshafer@...
Jan 28, 2001 1:19 am
230
Turns out, as is often the case, that I was overcomplicating things. Although I'm sure there will turn out to be additional issues, all you have to do to run...
dshafer@...
Jan 28, 2001 6:40 am
231
I am getting double emails...
Robert L Hicks
bobhicks@...
Jan 28, 2001 7:21 pm
232
Hi all, Yet again, I'm translating from AppleScript to JavaScript and getting stuck. This time, with Toast: tell application "Adaptec Toast 4.1.1" activate ...
Morgan Jones
morgan@...
Jan 29, 2001 7:28 pm
233
... Another thing you can do is: set the scriptingLanguage of the object to javascript. There's a popUp button/menu in HyperCards scriptEditor to set the...
Chris Heidecker
hechris@...
Jan 30, 2001 12:17 am
234
... Thanks, Chris. I tried that first, but to no avail. There's no way to call the JavaScript from another HC object as far as I can tell. Thus my question...
dshafer@...
Jan 30, 2001 12:41 am
235
... I don't have toast here so I can't try it, but I think you need to rewrite your code as follows: var ref = make(toast._types.Mac_Volume_disc); Cheers -Mark...
Mark Alldritt
alldritt@...
Jan 30, 2001 4:29 am
236
... JavaScript OSA does not support saving scripts as Ron-Only scripts. This is because JS osa stores scripts internally in source form and compiles they as ...
Mark Alldritt
alldritt@...
Jan 30, 2001 4:31 am
237
... That was it - it works great. Now that I see it, it makes lots of sense - I remember the _types slot from some of the finder examples for type checking of...
Morgan Jones
morgan@...
Jan 30, 2001 4:12 pm
238
... Yeah, the very nature of JavaScript would make "run only" an impossible concept. In the newest versions of JavaScript, all objects have a "toSource"...
Is it possible for one javascript script to call a handler in another javascript script? I gave this a shot via something like: var aScript = new...
Morgan Jones
morgan@...
Jan 31, 2001 12:00 am
241
... There's a limitation in the b9 build that requires you to use specific OSA components (AppleScript, JavaScript) to make this work. The upcoming b10 build...
Mark Alldritt
alldritt@...
Jan 31, 2001 1:23 am
242
Hi, I'm working with a few applications that need an alias as a parameter type - one in particular is toast with the following entry in its dictionary: add to:...
Morgan Jones
morgan@...
Jan 31, 2001 10:41 pm
243
... I think you've found a hole in the JavaScript OSA object model. Have you tried installing the Jon's Commands OSAX? It has coercion handlers for all the...
Mark Alldritt
alldritt@...
Feb 1, 2001 5:08 pm
244
... I noticed that the dictionary specifically says "list of alias" Maybe if you tried this: toast.add_to( ref, [ new MacOS.FileSpec("folderName) ] ); -- { ...
Arthur J Knapp
arthur@...
Feb 1, 2001 5:52 pm
245
... Hmm. Tried both of these, and I'm still getting the coersion problem. Interestingly enough, I get a different error message on: add_to( ref, [ new...
Morgan Jones
morgan@...
Feb 1, 2001 6:44 pm
246
Well, after spending better than 20 hours I finally got this all doped out. I'm going to post a new thread-starter on the subject which might help future...
dshafer@...
Feb 1, 2001 10:55 pm
247
After spending a considerable number of hours rummaging about in the HyperCard attic, I finally figured out how to incorporate the JSOSA stuff into HyperCard....
dshafer@...
Feb 1, 2001 11:25 pm
248
I just spent some time composing a long message about how to use JSOSA stuff from HyperCard. When I hit the "send" button, it seemed like everything went fine...
dshafer@...
Feb 1, 2001 11:26 pm
249
Showed up here... ver interesting :) Cam ... From: <dshafer@...> To: <jsosa@yahoogroups.com> Sent: Friday, February 02, 2001 12:20 PM Subject: [jsosa]...
Macros
macros@...
Feb 1, 2001 11:47 pm
250
I suspect I may have found a bug rather than just asking questions. Here's the AppleScript to set the position and size of a window in the finder: tell...
Morgan Jones
morgan@...
Feb 2, 2001 12:12 am
251
I would say that it's probably a memory error. try increasing the memory allocated to your script editor. Cam ... to ... more...
Macros
macros@...
Feb 2, 2001 12:21 am
252
On the missing post issue: I did get a copy of my post that I just sent. Morgan...
Morgan Jones
morgan@...
Feb 2, 2001 12:23 am
253
Gave that a shot - I increased the memory size for ScriptDebugger to 12MB - didn't change anything, unfortunately. Morgan...