Search found 51 matches

by bkan
December 2nd, 2016, 5:42 am
Forum: Scripts Discussion
Topic: Run an explorer windows from After effects
Replies: 7
Views: 14996

Re: Run an explorer windows from After effects

Oh!! Thanks a lot, it is working!!
by bkan
December 2nd, 2016, 5:17 am
Forum: Scripts Discussion
Topic: Run an explorer windows from After effects
Replies: 7
Views: 14996

Re: Run an explorer windows from After effects

OK, thank you!
Just another precision : if my string is : ""/e/RESSOURCES/SONS/CARTOONS"", the explorer windows open "/e/RESSOURCES" and select the "CARTOONS" folder instead of going into this folder....!
by bkan
December 2nd, 2016, 4:48 am
Forum: Scripts Discussion
Topic: Run an explorer windows from After effects
Replies: 7
Views: 14996

Re: Run an explorer windows from After effects

Hello,
Thank you for your answer. Have you got an example of a string you put in your "filePath" variable?
Thank you!
by bkan
December 2nd, 2016, 1:34 am
Forum: Scripts Discussion
Topic: Run an explorer windows from After effects
Replies: 7
Views: 14996

Run an explorer windows from After effects

Hello, I try to run an explorer windows via after effects script. My script is based on this :    var path = tabBtns_foldersSpecific_path[myNumber];       if($.os.indexOf("Win") != -1){      cmd = "explorer " + String(path);           }else{      cmd += (("open \""...
by bkan
November 26th, 2015, 1:28 am
Forum: Scripts Discussion
Topic: How to check if an effect is missing
Replies: 6
Views: 14388

Re: How to check if an effect is missing

Try this, it is working for me : function checkForInstalledEffect(matchName) { var fx = app.effects, n, N=fx.length; for (n=0; n<N; n++) if (fx[n].matchName === matchName) return true; return false; }; function applyEffectsAndSliders(effectMatchName){ app.beginUndoGroup("AK_toolbar"); var ...
by bkan
November 26th, 2015, 1:03 am
Forum: Scripts Discussion
Topic: onResizing question
Replies: 0
Views: 7878

onResizing question

Hello,
I've got a horizontal serie of button on a single group in my script.
If the user resize the palette, I would like that the buttons which are hidden goes on a second horizontal group to adapt the UI on the size of the palette. Sorry for my english, I'm french!

Thank you
by bkan
November 1st, 2015, 10:54 pm
Forum: Scripts Discussion
Topic: edittext scrollable
Replies: 1
Views: 7011

edittext scrollable

Hello, I have an edittext with scrollable on true (var textXML = helpMenu_helpText.add ('statictext', undefined,'',{multiline: true,scrolling: true});) My input is a xml and I change the content of the edittext with a onChange function. My text has no scrolling bar on the right and I cant read all t...
by bkan
July 27th, 2015, 3:06 am
Forum: Scripts Discussion
Topic: Formating a text from a text document
Replies: 0
Views: 7579

Formating a text from a text document

Hello,
I've got some texts from a XML file which are loaded in a StaticText in my script, and I would like to format it (bold, italic,....) : is it possible?

Thank you in advance!
by bkan
June 30th, 2015, 9:42 am
Forum: Scripts Discussion
Topic: formating "alert" text
Replies: 1
Views: 8612

formating "alert" text

Hello,
I would like to format my alert texts. I know the "\n" to return to the line (excuse for my bad english!).
But I also would like to make it bold and italic : do you know if it is possible?

Thank you!
by bkan
June 26th, 2015, 8:38 am
Forum: Scripts Discussion
Topic: Script protected with password
Replies: 1
Views: 7182

Re: Script protected with password

Ok sorry I found a solution! It is : function checkCode(){ if(check==null){ } else{ if(check==goodCode){ app.settings.saveSetting("AK_toolkit", "password","ok"); alert("Registration Successful\nThank you for purchasing AK toolkit!"); myScript(this); } else{ al...
by bkan
June 26th, 2015, 8:23 am
Forum: Scripts Discussion
Topic: Script protected with password
Replies: 1
Views: 7182

Script protected with password

Hello, I'm trying to protect my script with a password. I want to launch a "prompt function " before starting my script to ask the user a password. I have tried this : doRun = true; var champLicense = "trial"; var goodCode = "aftershine"; var check; function afficheProm...
by bkan
January 27th, 2015, 9:22 am
Forum: Scripts Discussion
Topic: Custom Scrollbar
Replies: 0
Views: 7772

Custom Scrollbar

Hi,
I didn't find anything on the web about customing a scrollbar in the scriptsUI.
I just know I can write this :
scrollBar:Scrollbar{value:100},\

I tried to add these parameters but it does not work :
scrollBar:Scrollbar{value:100,scrollButtons: false},\

Any ideas?

Thanks!
by bkan
November 15th, 2014, 9:09 am
Forum: Scripts Discussion
Topic: Create a custom Control effect
Replies: 35
Views: 92621

Re: Create a custom Control effect

Hello, I noticed that it is possible to create an external XML file which is linked to the PresetEffects.xml file. The simple camera rig from maaltanon use this, because when you install his script, you also copy a folder which contains a xml file with his custom control effect. It would be REALLY G...
by bkan
November 15th, 2014, 7:02 am
Forum: Scripts Discussion
Topic: Ckeck if a property is one, two or three dimensions
Replies: 2
Views: 8927

Ckeck if a property is one, two or three dimensions

Hello, I want to know how many dimensions the selected property have. I don't find anything on this subject, please help me! For example, if the selected property is "rotation", I want to know that there is only one dimension, but for the position, i need to know there is 2. I know you kno...