Search found 21 matches

by tapsystem
April 20th, 2013, 10:14 am
Forum: Scripts Discussion
Topic: check footage item as sequence
Replies: 4
Views: 11488

Re: check footage item as sequence

Hi,

tks for your feedback, idea is good to check at import time, but my objectif is to work with missing footage ....
so i can't work by testing file importation, because these file don't exist ;o(

Maybe another idea

Tks

Mr
by tapsystem
April 3rd, 2013, 12:57 pm
Forum: Scripts Discussion
Topic: check footage item as sequence
Replies: 4
Views: 11488

check footage item as sequence

Hi, a new question :roll: When i'm working with item in project panel, i need to know if the item is an images sequence or a single image ... i try to list item to check link and work with it, i need to know which entry are a sequence entry ... I've try several solution but i can find the good one :...
by tapsystem
April 1st, 2013, 11:57 pm
Forum: Scripts Discussion
Topic: Integrate a color picker in UI Panel
Replies: 4
Views: 21601

Re: Integrate a color picker in UI Panel

Hi,

No comments ? is it not interresting ? :( or perfect ? :wink:

Mr
by tapsystem
March 23rd, 2013, 6:07 pm
Forum: Scripts Discussion
Topic: UI Panel scrolling with mouse wheel
Replies: 0
Views: 7561

UI Panel scrolling with mouse wheel

Hi,

there is a way to add a vertical scrolling to an UIpanel without scrollbar, but with the wheel mouse (middle button) ? :shock:

Tks

Mr
by tapsystem
March 23rd, 2013, 8:43 am
Forum: Scripts Discussion
Topic: AE color window
Replies: 7
Views: 14260

Re: AE color window

Hi,

tks for all your feedback, i got my solution :wink:

If someone is looking for the same thing, i have made another post with my script :
:arrow: viewtopic.php?f=8&t=2186

Mr
by tapsystem
March 23rd, 2013, 8:43 am
Forum: Scripts Discussion
Topic: popup solid settings
Replies: 7
Views: 14310

Re: popup solid settings

Hi,

tks for all your feedback, i got my solution :wink:

If someone is looking for the same thing, i have made another post with my script :
:arrow: viewtopic.php?f=8&t=2186

Mr
by tapsystem
March 23rd, 2013, 8:40 am
Forum: Scripts Discussion
Topic: Integrate a color picker in UI Panel
Replies: 4
Views: 21601

Integrate a color picker in UI Panel

Hi, I've finaly found a solution to request a color to the user by using the after effect color window with the 'pipette' (color picker), I post this script here if someone else look for something similar, or if you have some notes/comments to make this function better. var solidColorPickerName=&quo...
by tapsystem
March 22nd, 2013, 9:00 am
Forum: Scripts Discussion
Topic: popup solid settings
Replies: 7
Views: 14310

Re: popup solid settings

Hi, i'm stay trying to find a solution to manage a color by soliding setting but it's not easy .... :cry: I know activeItem is a read only element, but there is a way to set an item from the project panel as activeItem without user action, only a button clic in a ui panel ? :? Tks for your help Mr
by tapsystem
March 21st, 2013, 1:59 pm
Forum: Scripts Discussion
Topic: File.openDialog make me crasy
Replies: 1
Views: 8570

Re: File.openDialog make me crasy

Ok, i got the solution .... no more help needed :D the solution is in the ";" but not like write in the js guide of adobe, you need to separate only the extensions by ";" exemple : var srcFile=File.openDialog("Choose color File (XML or ASE)","XML or ASE:*.xml;*.ase...
by tapsystem
March 21st, 2013, 1:41 pm
Forum: Scripts Discussion
Topic: File.openDialog make me crasy
Replies: 1
Views: 8570

File.openDialog make me crasy

Hi, i don't like help file when information are bad !!!! :evil: ( Javascript tool guide - Adobe) ... I'm trying to popup a dialog box to select file (xml or ase) js guide give this exemple for filter : "JavaScript:*.jsx;All files:*.*" If you try do do this you can't get it to work, the goo...
by tapsystem
March 16th, 2013, 2:24 pm
Forum: Scripts Discussion
Topic: linked expression
Replies: 2
Views: 7950

Re: linked expression

Hi, Tks for your feedback, There is no simple way when you try to make some fct that are not in this original application :D So, if someone have the same problem or needs, i have past bellow my functions that i have write to search for expression in the project with a filter array to ignore some com...
by tapsystem
March 12th, 2013, 12:09 pm
Forum: Scripts Discussion
Topic: linked expression
Replies: 2
Views: 7950

linked expression

Hi, i have some effect color controls that are used to store a color value and pointed in different effect by expression. I want to add in my script a function to return the number of links to this controller (expressions that are pointing this value), is there a simple way to do that ? Tks :wink: Mr
by tapsystem
March 2nd, 2013, 4:58 pm
Forum: Scripts Discussion
Topic: popup solid settings
Replies: 7
Views: 14310

Re: popup solid settings

Hi

I was not know this command and it will be usefull for other scripts.
but my intention was to point a solid in the project items and launch its setting but without selecting it in the projet panel.

Tks
Mr
by tapsystem
March 2nd, 2013, 4:55 pm
Forum: Scripts Discussion
Topic: AE color window
Replies: 7
Views: 14260

Re: AE color window

Hi,

Tks for your feedback
my objectif was to work with the "pipette" in the solid setting windows to return a color,*but if i can't, i'll continue working with copy/past of hexa color...

Tks for help
Mr
by tapsystem
March 2nd, 2013, 4:11 pm
Forum: Scripts Discussion
Topic: Run script from script
Replies: 2
Views: 8777

Re: Run script from script

Hi,

i think you can do something like that :

var scriptFile = new File("yourScriptPath + yourScriptFileName");
scriptFile.open();
eval(scriptFile.read());
scriptFile.close();

Mr