From 344402e916d630e9e6bc07dd932d680955fe0ba8 Mon Sep 17 00:00:00 2001 From: yorch Date: Wed, 3 Dec 2014 17:26:05 -0800 Subject: [PATCH] Changed individual tools filenames, for better organization --- ScriptUI Panels/yToolBox.jsx | 1 + ScriptUI Panels/yToolBox_0.4.2.1a.jsx | 1 - yScripts/{ => wip}/replaceLogos.jsx | 0 .../{ => wip}/y_GenericNewScript_0.1a.jsx | 0 yScripts/{ => wip}/y_MultiRenamer_0.1a.jsx | 0 yScripts/{ => wip}/y_MultiRenamer_0.2a.jsx | 0 yScripts/{ => wip}/y_renderMarkers.jsx | 0 yScripts/{ => wip}/y_renderMarkers_0.1a.jsx | 0 yScripts/{ => wip}/y_rndrTools.jsx | 0 ...{y_CornerPin_0.11a.jsx => y_CornerPin.jsx} | 0 yScripts/y_CornerPin_0.1a.jsx | 100 ---------- ...y_colorProbe_0.2a.jsx => y_colorProbe.jsx} | 0 ...y_puppetRig_0.3.7a.jsx => y_puppetRig.jsx} | 0 ...tStructure_0.1a.jsx => y_setStructure.jsx} | 0 ...onLayer_0.3a.jsx => y_stopMotionLayer.jsx} | 0 ...Between2_0.12b.jsx => y_yBindBetween2.jsx} | 0 yScripts/y_yBindBetween2_0.12_old.jsx | 182 ----------------- yScripts/y_yBindBetween2_0.12a.jsx | 186 ------------------ 18 files changed, 1 insertion(+), 469 deletions(-) create mode 100644 ScriptUI Panels/yToolBox.jsx delete mode 100644 ScriptUI Panels/yToolBox_0.4.2.1a.jsx rename yScripts/{ => wip}/replaceLogos.jsx (100%) rename yScripts/{ => wip}/y_GenericNewScript_0.1a.jsx (100%) rename yScripts/{ => wip}/y_MultiRenamer_0.1a.jsx (100%) rename yScripts/{ => wip}/y_MultiRenamer_0.2a.jsx (100%) rename yScripts/{ => wip}/y_renderMarkers.jsx (100%) rename yScripts/{ => wip}/y_renderMarkers_0.1a.jsx (100%) rename yScripts/{ => wip}/y_rndrTools.jsx (100%) rename yScripts/{y_CornerPin_0.11a.jsx => y_CornerPin.jsx} (100%) delete mode 100755 yScripts/y_CornerPin_0.1a.jsx rename yScripts/{y_colorProbe_0.2a.jsx => y_colorProbe.jsx} (100%) rename yScripts/{y_puppetRig_0.3.7a.jsx => y_puppetRig.jsx} (100%) rename yScripts/{y_setStructure_0.1a.jsx => y_setStructure.jsx} (100%) rename yScripts/{y_stopMotionLayer_0.3a.jsx => y_stopMotionLayer.jsx} (100%) rename yScripts/{y_yBindBetween2_0.12b.jsx => y_yBindBetween2.jsx} (100%) delete mode 100755 yScripts/y_yBindBetween2_0.12_old.jsx delete mode 100755 yScripts/y_yBindBetween2_0.12a.jsx diff --git a/ScriptUI Panels/yToolBox.jsx b/ScriptUI Panels/yToolBox.jsx new file mode 100644 index 0000000..88ed4cd --- /dev/null +++ b/ScriptUI Panels/yToolBox.jsx @@ -0,0 +1 @@ +function yToolBox(thisObj){ yToolBox_data = new Object(); yToolBox_data.icon = new File('../yScripts/yNet.png'); yToolBox_data.header = new File('../yScripts/header.png'); yToolBox_data.info = 'yorchnet.com'; yToolBox_data.name ='yToolBox'; yToolBox_data.ver ='0.4.2.1 alpha'; yToolBox_data.desc='Working tools so far...'; yToolBox_data.buttonWidth=126; yToolBox_data.buttonHeight=30; yToolBox_data.tools = []; #include "../yScripts/y_JSExtensions.jsx"; //INCLUDED TOOLS #include "../yScripts/y_setStructure.jsx"; #include "../yScripts/y_puppetRig.jsx"; #include "../yScripts/y_colorProbe.jsx"; #include "../yScripts/y_yBindBetween2.jsx"; #include "../yScripts/y_stopMotionLayer.jsx"; #include "../yScripts/y_CornerPin.jsx"; yToolBox_data.window = (thisObj instanceof Panel) ? thisObj : new Window("palette", yToolBox_data.info , undefined, {resizeable:true}); //MAIN WINDOW STRUCTURE. var res_header ="group { orientation:'column', alignment:['fill','fill'],margins:[0,0,0,0] \ header: Group { orientation:'column', alignment:['center','top'],margins:[0,0,0,0]\ title: Image {icon:'"+yToolBox_data.header.path+'/'+yToolBox_data.header.name+"',preferredSize: [175, 35]},\ ver: StaticText { text:'"+yToolBox_data.ver+"', alignment:['center','center']}\ desc: StaticText { text:'"+yToolBox_data.desc+"', alignment:['center','center']}, \ }, \ main: Group { orientation:'column',alignment:['fill','fill'], alignChildren:['center','center']," var res = ""; //To be populated with the included Tools var res_footer ="}, \ cmds: Group { alignment:['center','bottom'], \ icn_app: Image {icon:'"+ yToolBox_data.icon.path+'/'+ yToolBox_data.icon.name+"',preferredSize: [15, 18]},\ txt_info: StaticText { text:'"+yToolBox_data.info+"', alignment:['fill','center'] },\ }, \ }"; //POPULATE res with included tools. for (i=0;i