Skip to search.
jsosa · JavaScript OSA-Talk

Group Information

  • Members: 63
  • Category: AppleScript
  • Founded: Jan 25, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 498 - 529 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
498 Arthur Knapp
admiralnovia Offline Send Email
Feb 28, 2006
9:33 pm
I've been using a text file containing every jsosa object, method, and property that I am aware of; as an "aid to memory". It doesn't explain what things do,...
499 Arthur Knapp
admiralnovia Offline Send Email
Mar 5, 2006
3:55 pm
I've made an archive of a clippings folder, and put it into my public iDisk thingy: http://homepage.mac.com/admiralnovia/FileSharing1.html It is a work in...
500 Arthur Knapp
admiralnovia Offline Send Email
Mar 10, 2006
7:03 pm
// Proposed changes and additions to the JavaScript Library file // embedded in the JavaScript OSA component. // I have yet to create a non-trivial jsosa...
501 Arthur Knapp
admiralnovia Offline Send Email
Mar 10, 2006
7:56 pm
Whoops. ... [snip] ... Replace the above with: if ( c == "." ) { while ( path.slice( 0, 3 ) == "../" ) { me = me.container; path = path.slice( 3 ); } return...
502 Arthur Knapp
admiralnovia Offline Send Email
Mar 10, 2006
8:02 pm
... I've also placed a copy of the corrected script here: http://homepage.mac.com/admiralnovia/FileSharing1.html -- Arthur...
503 Arthur Knapp
admiralnovia Offline Send Email
Mar 13, 2006
8:55 pm
I'm working on some example files of using JavaScript OSA in combination with the Pashua GUI system. They're not finished yet, but should be soon: ...
504 Arthur Knapp
admiralnovia Offline Send Email
Mar 15, 2006
6:25 pm
A quick thought: How hard would it be to create special notation for accessing the ._types and ._constants objects? I was thinking of a double underscore...
505 Mark Alldritt
malldritt2000 Offline Send Email
Mar 16, 2006
6:34 pm
Hi, ... Okay, I'll look into something like this. Thanks also for the proposed code. I've filed it all in my bug tracking system that that I can integrate it...
506 Arthur Knapp
admiralnovia Offline Send Email
Mar 17, 2006
3:35 pm
... Thanks Mark. I know (assume) that your freeware projects are not at the top of your priorities, which is perfectly OK. The 2.0 version of JSOSA is so...
507 Arthur Knapp
admiralnovia Offline Send Email
Mar 18, 2006
5:17 am
So there's this cool unix-shell thingy called "defaults" that I've just become aware of. I've thrown together the following object-wrapper as an example of...
508 Arthur Knapp
admiralnovia Offline Send Email
Mar 26, 2006
6:32 pm
I've thrown together a JSOSA port of an old AppleScript I wrote for using the Unix "openssl" encryption and encoding command: ...
511 Mark Alldritt
malldritt2000 Offline Send Email
Sep 21, 2006
11:20 pm
Hi Folks, I got a email recently from a user asking if there is an Intel version of javaScript OSA. This made me realize that I had not released the final ...
512 Mark Alldritt
malldritt2000 Offline Send Email
Nov 15, 2006
10:22 pm
Hi Folks, I've posted JavaScript 2.0.1 to the JavaScript OSA web site. This version has been available as part of Script Debugger 4 for some time. You can...
513 smakofsky Offline Send Email Jan 4, 2007
3:08 pm
I'm running a script via terminal using: osascript -lJavaScript filename.js but I can't seem to be able to output any text to the terminal. Core.message is...
514 Mark Alldritt
malldritt2000 Offline Send Email
Jan 4, 2007
4:39 pm
Hi, ... The problem here is the osascript tool. There is a 'log' AppleEvent for this purpose, but osascript does not seem to respond to it. Testing from...
515 smakofsky Offline Send Email Jan 4, 2007
4:52 pm
Ah, ok..: var Test = "Hello World"; MacOS.appSelf().do_shell_script("echo " + Test); Seemed to do the trick. Would be nice to just have Core.Write() or ...
516 John Love-Jensen
eljay@... Send Email
Jan 4, 2007
6:54 pm
Hi Steve, Instead of JSOSA, you may want to consider using a Java based JavaScript engine: For example... ...
517 smakofsky Offline Send Email Jan 5, 2007
2:43 pm
I initally tried rhino before I found JSOSA - but it didnt appear to be able to interact with apple events. Do you know if it can? ... JavaScript ... ...
518 John (Eljay) Love-Jen...
eljay@... Send Email
Jan 5, 2007
3:25 pm
... I do not know. I presume it does not, given that it is Java based and runs in a JVM. (Not that running in a JVM makes it impossible to interact with AE....
519 Mark Alldritt
malldritt2000 Offline Send Email
Jan 5, 2007
3:59 pm
Hi, ... JavaScript OSA's ability to generate AppleEvents is its unique feature. JavaScript OSA uses the Spider Monkey (Mozilla's C JavaScript implementation)...
520 smakofsky Offline Send Email Jan 5, 2007
5:14 pm
Which is the *exact* reason I'd rather use JSOSA. Having apple event support is killer. Being new to the mac world, I'm surprised that OSA (specifically ...
521 Mark Alldritt
malldritt2000 Offline Send Email
Jan 5, 2007
6:32 pm
Hi, ... That's probably a subject for an entire book. The OSA (Open Scripting Architecture) predates Windows Scripting Host and was a very good idea, though...
522 Mark Alldritt
malldritt2000 Offline Send Email
Jan 7, 2007
3:06 am
Hi Folks, I'm cross posting this message to all the LNS Mailing lists, so I apologize if you see it more than once. I've begun a blog to document my LNS...
523 Mark Alldritt
malldritt2000 Offline Send Email
Jan 7, 2007
4:05 am
Hi Folks, Here's a tech note explaining how to get the 10.4 Script Editor to open JavaScript OSA scripts: http://www.latenightsw.com/blog/?p=10 Cheers -Mark ...
524 Hardy Machia
hardymacia Online Now Send Email
Apr 18, 2007
6:30 pm
While I'm not sure my problem is related to JSOSA, it is a JSOSA app that I'm trying to open to edit so I'll start here and hope something has some...
525 Mark Alldritt
malldritt2000 Offline Send Email
Apr 18, 2007
6:39 pm
Hi, ... This is a Script Editor bug. This entry on my Blog describes how to work around the problem: http://www.latenightsw.com/blog/?p=10 Cheers -Mark ... ...
526 greenie64738 Offline Send Email Aug 25, 2007
11:49 pm
Hi all, I experimented with Vienna and jsosa and managed to get references to folders and articles but I didn't find a way to flag, select or delete an...
527 Mark Alldritt
malldritt2000 Offline Send Email
Aug 28, 2007
4:17 pm
Hi, ... I'm not familiar with Vienna. However, if you post the source of your script we may be able to offer suggestions. Cheers -Mark ... Mark Alldritt...
528 greenie64738 Offline Send Email Sep 2, 2007
1:16 pm
Hi, and thanks for the reply. Though, meanwhile, I found the reason for the problems myself. The problem was that I am a newbie to Applescript and didn't...
529 selva kumar
templateteam Offline Send Email
Oct 12, 2007
11:38 am
Hello All, I am new to this group. I want to do programming in Mac thru Java to control applications. Regards Selva........... ...
Messages 498 - 529 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help