Search found 57 matches

by Impudent1
January 8th, 2005, 3:30 pm
Forum: Scripts Discussion
Topic: Quotes within quotes
Replies: 4
Views: 11659

I would think just using basic nesting quotes should do it without having to escape the character. ie: instead of " This is " nested " text " which it would interpret as: This is text use " This is 'nested' text" you could similarly use 'This is "nested" text'...
by Impudent1
December 5th, 2004, 11:26 am
Forum: Impudent 1's Scripts
Topic: Backup Project
Replies: 6
Views: 33875

ah yes sorry 6.5 and hopefully beyond only :)

I would be curious to see if it spawned and ran the sh file. If it does, super, if not I will have to look into it running a doshell actionscript instead.
by Impudent1
November 25th, 2004, 12:36 am
Forum: Impudent 1's Scripts
Topic: Render and shutdown
Replies: 11
Views: 51974

Render and shutdown

As per discussions on the AE Listserv I have tossed together a basic render and shutdown script. The script will render all queued objects in the render queue then it will shutdown. This has not been tested on mac to please let me know how well it works http://www.leapfrog-productions.com/Scripts/A_...
by Impudent1
November 25th, 2004, 12:30 am
Forum: Impudent 1's Scripts
Topic: Muster Batch Submit
Replies: 8
Views: 41945

I have updated the script to hopefully allow osx usage. The changes should have it call out to mrtool vs mrtool.exe and execute a bash script vs a bat file. It has not been tested on mac so please give me some feedback on how it works :) http://www.leapfrog-productions.com/Scripts/MusterSubmit/A_Mus...
by Impudent1
November 25th, 2004, 12:25 am
Forum: Impudent 1's Scripts
Topic: Submit to Muster Render UI
Replies: 9
Views: 43518

Ok I have tried modifying the muster batch submit to run a shell script instead of a bat file and calling out just to Mrtool that way. Please give the new version of that a try. If it works I will update the full UI submit script
by Impudent1
November 25th, 2004, 12:17 am
Forum: Impudent 1's Scripts
Topic: Backup Project
Replies: 6
Views: 33875

I have not tested this on the mac side of things but this *should* work

http://www.leapfrog-productions.com/Scr ... t_v1_2.jsx

Let me know how it works out :)
by Impudent1
November 3rd, 2004, 3:00 pm
Forum: Impudent 1's Scripts
Topic: Submit to Muster Render UI
Replies: 9
Views: 43518

ty for your comments, I am glad to be able to give back to the community that has shared a ton with me :) I am kinda cheating by using the MExplorer.exe. I have been informed by the VVertex people that it is preferred to use Mrtool. There is a slight bit of change in the syntax to use it but you cou...
by Impudent1
October 26th, 2004, 1:41 pm
Forum: Scripts Discussion
Topic: Compify
Replies: 6
Views: 14473

hmm I havent looked at your script but I would say you could take a peek at the muster batch submit script I made. In that I had to do a -1 to the returned number of queued objects, so perhaps you have to just shuffle your index back or forward by one?
by Impudent1
October 18th, 2004, 5:19 pm
Forum: General Scripts Library
Topic: Upload to Client site[work in progress]
Replies: 5
Views: 18329

Well I have been beating my head on trying to make a mysql socket connection, I did notice that even tho in the docs it says you can use an ip, even the emailmethods demo does not seem to work, have to use the domain name. Also I have been getting huge stack overflow errors on trying different things.
by Impudent1
October 14th, 2004, 12:48 pm
Forum: Scripts Discussion
Topic: Create a new folder inside a project
Replies: 7
Views: 17492

Well for one its not posted as a final script, those are all in the actual scripts area, this was put up for discussion.

It has only been tested on windows so might not work on mac as well.
by Impudent1
October 12th, 2004, 10:54 pm
Forum: Scripts Discussion
Topic: Create a new folder inside a project
Replies: 7
Views: 17492

Well I finally got around to doing some playing with the project vs folder concept. http://www.leapfrog-productions.com/Scripts/DefaultFolders_v1_9.jsx I stripped out the other functions and made it with creating projects, this of course makes the appundogroup sorta not work but I am ok with that pe...
by Impudent1
October 12th, 2004, 7:51 pm
Forum: Impudent 1's Scripts
Topic: Muster Batch Submit
Replies: 8
Views: 41945

Muster Batch Submit

http://www.leapfrog-productions.com/Scripts/MusterSubmit/A_Muster_Batch_v1.jsx is a script built to parse the current projects existing render queue and let the user select which of those to send to the Muster render controller software. http://www.leapfrog-productions.com/Scripts/MusterSubmit/Muste...
by Impudent1
October 12th, 2004, 7:26 pm
Forum: Impudent 1's Scripts
Topic: Submit to Muster Render UI
Replies: 9
Views: 43518

I have updated this to make it compatible with the new A_Muster_Batch.jsx script.

The only change is in what prefs line we query to see if the default fallback settings have been saved to the ae prefs text file.

http://www.leapfrog-productions.com/Scr ... t_v1_1.jsx
by Impudent1
October 8th, 2004, 1:43 pm
Forum: General Scripts Library
Topic: Upload to Client site[work in progress]
Replies: 5
Views: 18329

hmm didnt even think about using the socket object. My thoughts were to just dump out a text file that contained all the INSERT information. Then running that file as a bat file from the script. so on those lines the text would dump out lines of: INSERT INTO clientDB (`client`, `project`,`name`,`com...
by Impudent1
October 7th, 2004, 3:36 pm
Forum: General Scripts Library
Topic: Upload to Client site[work in progress]
Replies: 5
Views: 18329

very nice :) I have done some playing with sending things back and forth with mysql so I will have to peek at your work when I get a chance. If nothing else it should be pretty straight forward to make a new table and then have the script you wrote output a text files that will connect to mysql and ...