Page 1 of 1

New Indigo Script Library Page (about time!)

PostPosted: Fri Jun 04, 2004 3:22 pm
by matt (support)
After much procrastinating, I've finally put up the Indigo Script Library page. Here you can find a collection of useful Indigo AppleScripts (and applications), and a few links to good AppleScript resources.

If you come up with a script that you think will be useful for other Indigo users and it is written such that it can be easily used by others, then please submit it. I'm already quite impressed with the collection of scripts we have, many of which were contributed by you all.

Regards,
Matt

Thanks!

PostPosted: Wed Apr 29, 2009 4:43 pm
by JeffB
Hey, that's great I ran across this, but do you intend to link it into the support pages or the file library link for when my short term memory sets in? :D

Re: Thanks!

PostPosted: Wed Apr 29, 2009 4:54 pm
by matt (support)
The above is actually referring to the User Contribution Library. We just called it the Indigo Script Library initially, but it expanded to include some things that are not necessarily scripts.

Missing Download Link

PostPosted: Sat Dec 12, 2009 9:06 am
by randysk
The first item listed "Accessibility and Assistive Automation" mentions two scripts, but doesn't have the download link like other items. How can I get those scripts? Thanks.

Re: Missing Download Link

PostPosted: Sat Dec 12, 2009 10:14 am
by jay (support)
randysk wrote:
The first item listed "Accessibility and Assistive Automation" mentions two scripts, but doesn't have the download link like other items. How can I get those scripts? Thanks.


We ship those scripts with Indigo (note in the Installation section it says Installed by Indigo). By default, they're in this folder:

/Library/Application Support/Perceptive Automation/Indigo 4/Scripts/Attachments

Which means they're loaded and ready to use.

Re: New Indigo Script Library Page (about time!)

PostPosted: Sun Oct 23, 2011 12:53 pm
by Jpaction
I am trying to do what I thought would be something simple. Update a variable with the product of two other variables. I can't get it to work because I get the following error. Is there a better way of doing this or is this even possible?

Thanks,
Jim

Re: New Indigo Script Library Page (about time!)

PostPosted: Sun Oct 23, 2011 12:55 pm
by matt (support)
Change the script to:

Code: Select all
set num1 to (value of variable "iLeafMeter") as number
set num2 to (value of variable "iLeafPGERate") as number
set T1 to num1 * num2
set value of variable "iLeafCost" to T1

Re: New Indigo Script Library Page (about time!)

PostPosted: Sun Oct 23, 2011 2:31 pm
by Jpaction
Awesome! Thanks!