Page 1 of 1

AppleScript terminology dictionary (object model and verbs)

PostPosted: Sun Apr 17, 2005 7:34 pm
by matt (support)
I found a utility (HTMLDictionary) which does a good job of converting AppleScript dictionaries to HTML. Here is Indigo's dictionary, which might be a good reference bookmark to have around.

Regards,
Matt

PostPosted: Fri Oct 06, 2006 9:14 am
by dtich
hey matt, do you have an updated dictionary on the to do list?

:)

PostPosted: Fri Oct 06, 2006 9:22 am
by matt (support)
Hi Dylan,

Probably not until the latest AppleScript changes (and future additions over the next few builds) are solidified some more. But you do know that the Script Editor can open the dictionary of the IndigoServer to show you the new verbs, right?

Regards,
Matt

PostPosted: Fri Oct 06, 2006 9:38 am
by dtich
yes, no i do... i just liked to have it without script ed open... i don't have the server installed on the powerbook either. is that program that made the dictionary still avail? i couldn't find it.

no worries. thx.

PostPosted: Wed Jan 03, 2007 9:14 pm
by matt (support)
FYI, I've updated the posted AppleScript dictionary (link in first post of thread) for the 2.0 changes.

PostPosted: Tue Dec 18, 2007 9:46 pm
by dtich
Is the dictionary up to date for 3.0 (and leopard) in the 3.0b8 release? When I open the dictionary in script editor in leopard all I see is the required section.



hey geekinsc, make sure u open the 'indigoserver' dict, not the client.

New version coming for 4.0?

PostPosted: Wed Feb 18, 2009 12:33 pm
by jnscolo
Just curious, not pushing.

I tore down my Indigo installation at my second home, and now I'm starting to rebuild it after a major remodel (is there any other kind?) This will really help in the scripting I do. TIA.

Re: New version coming for 4.0?

PostPosted: Wed Feb 18, 2009 1:30 pm
by matt (support)
The currently posted dictionary (link in top most post) is pretty recent. It hasn't been updated for 4.0 yet, but includes all of the 3.0 changes. The only change for 4.0 at this point are some additional Trigger Action model attributes. We'll update the posted dictionary after 4.0 ships as well.

Re: AppleScript terminology dictionary (object model and ver

PostPosted: Wed Jun 25, 2014 7:04 am
by jenkins007
The dictionary link is broken and takes you back to the Indigo home page. Is the dictionary updated for the latest version?

Re: AppleScript terminology dictionary (object model and ver

PostPosted: Wed Jun 25, 2014 12:39 pm
by matt (support)
Hi Matthew,

Sorry, I've now fixed the link.

Re: AppleScript terminology dictionary (object model and ver

PostPosted: Sun May 31, 2015 7:49 pm
by 4billl
Is there an AppleScript comand to start and stop the Indigo server?
Obviously, this would have to be outside of Indigo.
I'm thinking of a Cron call to an AppleScript (or other script) or a remote call to "restart" the Indigo server in case something has locked up Indigo.
Right now, I have to manually stop & start Indigo via remote login using iTeleport or Timbiktu.

Re: AppleScript terminology dictionary (object model and ver

PostPosted: Mon Jun 01, 2015 11:01 am
by jay (support)
To stop the server:
Code: Select all
tell application "IndigoServer"
   quit
end tell


To start the server:
Code: Select all
tell application "Finder"
   open POSIX file "/Library/Application Support/Perceptive Automation/Indigo 6/IndigoServer.app"
end tell