Hi folks, I am building CodeWarrior projects with the following script. var cwIde = MacOS.appBySignature("CWIE", true, false); //set the timeout so we can...
Abhijit Gupta
abhijit.gupta@...
Aug 2, 2001 4:28 am
283
... I suspect a Desktop database problem. Try rebuilding it and see if that makes a difference. I tried the following simplified script here and it works: Var...
Mark Alldritt
alldritt@...
Aug 2, 2001 4:22 pm
284
... I am unfamiliar with CodeWarrior scripting, however... ... You have an extranious "end" in the above source. Arthur J. Knapp http://www.stellarvisions.com ...
Arthur J Knapp
arthur@...
Aug 2, 2001 8:25 pm
285
Hi , Thanks Mark & Arthur for your suggestion. After rebuilding the desktop problem is still there. On Mac 9,I solved problem embedding apple script. var...
Abhijit Gupta
abhijit.gupta@...
Aug 5, 2001 12:46 pm
286
Hi , This mail is in continuation of my previous mail. On Mac OS 9 MacOS.finder().display_dialog is working but it is not working on Mac OS X. Is it a bug or...
Abhijit Gupta
abhijit.gupta@...
Aug 5, 2001 1:30 pm
287
... Under MacOS X, scripting addition commands can only be executed from the current process (MacOS.appSelf()). ... Shameless Plug: In Script Debugger's...
Mark Alldritt
alldritt@...
Aug 5, 2001 4:04 pm
288
Hi, I am using Apple Script Editor and XML Tools from Late Night Software . Following code is working fine. property theXMLSource : "<start abc1=\"value1\" ...
Abhijit Gupta
abhijit.gupta@...
Aug 6, 2001 12:52 pm
289
... A question like this probably best directed at one of the AppleScript mailing lists. Anyway, to understand how to access these attributes, you need to...
Mark Alldritt
alldritt@...
Aug 6, 2001 6:00 pm
290
... Mark, I was surprised that you didn't mention Core.XML.parse: var theXMLSource = ' \ <start> \ <tag attribute1="value1"...
Arthur J Knapp
arthur@...
Aug 7, 2001 10:54 pm
291
If you look back in the list for some posts from myself and answers by Mark, there are some bugs in the Core.XML.parse - I don't remember the details off the...
Morgan Jones
morgan@...
Aug 7, 2001 10:59 pm
292
... I'm not promoting this XML parser because it has not been revved to support any of the new functionality of the XML Tools 2.x osax. There are a number of...
Mark Alldritt
alldritt@...
Aug 7, 2001 11:14 pm
293
... [snip] ... Right you are: Morgan's <http://groups.yahoo.com/group/jsosa/message/269> Mark's <http://groups.yahoo.com/group/jsosa/message/270> P.S....
Arthur J Knapp
arthur@...
Aug 7, 2001 11:27 pm
294
... Good stuff. :) ... No complaints from me. :) P.S. I'm not a programmer, but I have seen that Apple's new "CoreFoundation" includes what it calls XML...
Arthur J Knapp
arthur@...
Aug 7, 2001 11:50 pm
295
i've tried out the js version of "Save & Restore Desktop" however i get this error message : TypeError: MacOS.appSelf().new_file is not a fonction. aroses at...
BricoleYvon@...
Aug 19, 2001 12:30 pm
296
... Somewhere along the way, the new file command in the Standard Additions scripting addition (part of AppleScript) was renamed 'choose file name'. So, rename...
Mark Alldritt
alldritt@...
Aug 19, 2001 4:51 pm
297
Dans un courrier daté du 19/08/01 18:51:45, alldritt@... a écrit : <<> var outFile = MacOS.appSelf().new_file("Save Desktop State:"); ... So,...
BricoleYvon@...
Aug 20, 2001 6:37 am
298
i got it with Save Desktop.js the change to make was : var outFile = MacOS.appSelf().choose_file_name("Save Desktop State:"); now the problème arrose with...
BricoleYvon@...
Aug 20, 2001 1:39 pm
299
... Now, it just means that the XML data contains invalid characters. In this case, its the TM character in item 2. XML data can only contain 7-bit ascii,...
Mark Alldritt
alldritt@...
Aug 20, 2001 3:37 pm
300
Dans un courrier daté du 20/08/01 17:46:22, alldritt@... a écrit : <<Now, it just means that the XML data contains invalid characters. In this ...
BricoleYvon@...
Aug 20, 2001 4:57 pm
301
Hi Folks, I just ran across this article on the O'Reilly Network wed site about JavaScript OSA: ...
Mark Alldritt
alldritt@...
Sep 9, 2001 1:07 am
302
... This is fantastic!!! I noticed that the article's author, Richard Hough, is a Canadian. Coincidence, Mark? ;-) Arthur J. Knapp ...
Arthur J Knapp
arthur@...
Sep 9, 2001 2:50 pm
303
Jeff
jeff@...
Sep 25, 2001 1:07 pm
304
Hi Folks, F.Y.I. The just released Script Debugger 3.0 offers improved support for JavaScript OSA. Most importantly, Script Debugger can now display ...
Mark Alldritt
alldritt@...
Sep 27, 2001 6:58 pm
305
Oh, I forgot to mention an important item: a great new JavaScript OSA document written by Matt Neuburg is also included with JavaScript OSA 1.0 (see the...
Mark Alldritt
alldritt@...
Sep 27, 2001 7:06 pm
306
Any advance info on this new Apple project "AppleScript Studio"? mpm...
Michael Myers
myersm@...
Sep 27, 2001 7:46 pm
307
on 27/9/2001 12:43 PM, Michael Myers at myersm@... ... They have not shown any of it to me yet... I guess the big question for JavaScript...
Mark Alldritt
alldritt@...
Sep 27, 2001 7:54 pm
308
Hello, How can I get rid of all the tooltips. I looked in all the preferences panels and in the documentation but I don't see a way to stop tooltips appearing...
Emmanuel. M. Decarie
emm@...
Oct 5, 2001 6:04 pm
309
... There is no way presently to disable those tool tips. There are preferences settings to hide tool tips in dictionary windows, script windows and browsers....
Mark Alldritt
alldritt@...
Oct 5, 2001 6:16 pm
310
Thanks Mark for the answer. For the next SD revision, I suggest a global pref to toggle off globally all tooltips. Cheers ... -- ...
Emmanuel. M. Decarie
emm@...
Oct 5, 2001 6:23 pm
311
Currently I have FileMaker perform the looping and call my javascript each time through the loop, but I wan to have the javascript control the looping. I want...