Search found 30 matches

by Alan Eddie
October 7th, 2012, 9:52 am
Forum: Scripts Discussion
Topic: Progress Bars and User Updates
Replies: 10
Views: 26347

Re: Progress Bars and User Updates

Yes, using the update() method. It's so strange, seems to work when it likes. On testing - works about 60 percent of the time, other times just jumps from 0 to 100 percent. Anyway it's no big deal there are other ways around it. I tried exiting the main process and running the update in a separate f...
by Alan Eddie
October 5th, 2012, 3:28 am
Forum: Scripts Discussion
Topic: Progress Bars and User Updates
Replies: 10
Views: 26347

Re: Progress Bars and User Updates

Was there any update on this issue for CS6? On win7 works sometimes, then not others (in panel, haven't tested window...). Thanks. Alan.
by Alan Eddie
August 20th, 2012, 4:07 am
Forum: Script requests
Topic: Isolate Current Visible Layers and / Shy / Hide others
Replies: 3
Views: 15717

Re: Isolate Current Visible Layers and / Shy / Hide others

I wrote a script that addresses this issue:

http://aescripts.com/isolate/


Thanks, Alan.
by Alan Eddie
March 6th, 2012, 2:49 am
Forum: Scripts Discussion
Topic: catching errors - app.onError
Replies: 2
Views: 8312

Re: catching errors - app.onError

This was dealt with on the Adobe forums.

A try and catch statment was a more elegant solution for this problem.
Especially as the error was specific and expected in certain situations.
by Alan Eddie
March 6th, 2012, 2:34 am
Forum: Scripts Discussion
Topic: Accessing effect parameters
Replies: 1
Views: 5969

Re: Accessing effect parameters

Check out Gimme proper path on AEScripts.com - it will give you the numerical positions by just selecting them rather than counting. At least then your script is reliable.
by Alan Eddie
February 8th, 2012, 4:05 am
Forum: Scripts Discussion
Topic: catching errors - app.onError
Replies: 2
Views: 8312

catching errors - app.onError

app.onError = err; function err(errString) { alert(errString); } app.onError = err; Hi there can anybody give me an example of how to use the code above to test if a statment is giving an error, let the alert happen and if it does, to exit the current script/function? I'm a bit hazy on callback fun...
by Alan Eddie
January 30th, 2012, 9:06 am
Forum: Scripts Discussion
Topic: system.osName
Replies: 2
Views: 7089

Re: system.osName

Ok working now...

$.os.indexOf("Windows") != -1

is working instead.
by Alan Eddie
January 30th, 2012, 4:41 am
Forum: Scripts Discussion
Topic: system.osName
Replies: 2
Views: 7089

Re: system.osName

$.writeln(system.osName);

is giving me.........


<![CDATA[
]]>Result: undefined


hmmmm.
by Alan Eddie
January 30th, 2012, 2:09 am
Forum: Scripts Discussion
Topic: system.osName
Replies: 2
Views: 7089

system.osName

alert(system.osName);
is giving me undefined on Win 7 x64 ?


Can't figure it out... I know it's something ultra simple that I have overlooked.
I am getting the build number etc from the other object properties.

Can anybody tell me the obvious?
by Alan Eddie
January 29th, 2012, 7:34 am
Forum: Scripts Discussion
Topic: Scroll bar in UI panel
Replies: 1
Views: 6180

Re: Scroll bar in UI panel

Yes you can, there is a scrollbar object -javascript_tools_guide.pdf - p71.
by Alan Eddie
January 22nd, 2012, 1:05 pm
Forum: Scripts Discussion
Topic: AE CS5 issue
Replies: 5
Views: 15654

Re: AE CS5 issue

If you are running the script from the AFX interface then that means there is a bug in the script and it is not completing it's function, the error line will be hilighted. If you are just double clicking on the file in a browser, the file has been associated with the Javascript toolkit (for coding) ...
by Alan Eddie
January 22nd, 2012, 12:59 pm
Forum: Scripts Discussion
Topic: Solution to the CS5-5.5 dropdownlist bug?
Replies: 0
Views: 6255

Solution to the CS5-5.5 dropdownlist bug?

Hi there, searched this and Adobe forums re: the above issue. I currently have a listbox where the user can scroll up and down with the arrow keys, it works but is not a very elegant replacement for the dropdown list. My GUI panel's height must remain only 150px and the dropdownlist would contain 20...
by Alan Eddie
January 20th, 2012, 11:31 am
Forum: Script requests
Topic: Calling pulldown values
Replies: 6
Views: 16579

Re: Calling pulldown values

by Alan Eddie
January 20th, 2012, 11:27 am
Forum: Script requests
Topic: Tweaking the collect files function
Replies: 1
Views: 7463

Re: Tweaking the collect files function

Hi there,
Hopefully end Jan/Start of Feb I will be releasing a script (as part of a pack) that organizes the project panel, it tidys everything up. It doesn't get into collecting files etc. but will give a good head start. It will be on AEScripts.com. I will post here when it's ready anyway.
by Alan Eddie
January 18th, 2012, 5:28 am
Forum: Scripts Discussion
Topic: Get file name of img seq except frame padding?
Replies: 6
Views: 14967

Re: Get file name of img seq except frame padding?

Hi there, before I found this post I was working with some of these problems. This is some code I had generated, I just said I would post it here for reference. var testRegExp = new RegExp ("[0-9]+\.[A-Za-z]{1,3}$"); //will return 0023.tga for example... var testString = app.project.item(i...