| Author |
Message |
|
matt (support)
Site Admin
Joined: Jan 27, 2003 Posts: 11698 Location: Texas
|
 New Indigo Script Library Page (about time!)
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
Last edited by matt (support) on Wed Apr 29, 2009 4:53 pm, edited 1 time in total.
|
| Fri Jun 04, 2004 3:22 pm |
|
 |
|
JeffB
Joined: Apr 29, 2009 Posts: 4 Location: Phoenix, AZ
|
 Thanks!
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? 
|
| Wed Apr 29, 2009 4:43 pm |
|
 |
|
matt (support)
Site Admin
Joined: Jan 27, 2003 Posts: 11698 Location: Texas
|
 Re: Thanks!
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.
_________________
|
| Wed Apr 29, 2009 4:54 pm |
|
 |
|
randysk
Joined: Feb 26, 2007 Posts: 33
|
 Missing Download Link
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.
|
| Sat Dec 12, 2009 9:06 am |
|
 |
|
jay (support)
Site Admin
Joined: Mar 19, 2008 Posts: 6667 Location: Austin, Texas
|
 Re: Missing Download Link
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.
_________________ Jay (Indigo Support)
|
| Sat Dec 12, 2009 10:14 am |
|
 |
|
Jpaction
Joined: Jun 18, 2011 Posts: 15
|
 Re: New Indigo Script Library Page (about time!)
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
Attachments:
Screen Shot 2011-10-23 at 11.51.37 AM.png [ 60.08 KiB | Viewed 1205 times ]
|
| Sun Oct 23, 2011 12:53 pm |
|
 |
|
matt (support)
Site Admin
Joined: Jan 27, 2003 Posts: 11698 Location: Texas
|
 Re: New Indigo Script Library Page (about time!)
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
_________________
|
| Sun Oct 23, 2011 12:55 pm |
|
 |
|
Jpaction
Joined: Jun 18, 2011 Posts: 15
|
 Re: New Indigo Script Library Page (about time!)
Awesome! Thanks!
|
| Sun Oct 23, 2011 2:31 pm |
|
|