Render.ru

Garbage-Cherry Lips !!! KAK ????????????

#1
nedavno videl klip Garbage Cherry Lips gde Ona tipa nevidimka i tolko perchatki na ney i sapogi.. i muzikanti tozhe - odna odezhda v vozduhe poloshetsa..glavnoe chto tilnaya chast odezhdi vidna i kamera dvigaetsa.. NAROOOD !! Podelites..ili hotya bi predpolozhite...kak eto sdelat??? Eto vryad li Chroma Key.. ne tak li??? S neterpeniem zhdu otzivov !!!
 
#2
// Script Name: Garbage-Cherry Lips

global proc addSets()
{
// create UI layout - vars for global sizing
int $uiLabelWidth = 280;
int $uiInputWidth = 30;
int $uiWidth = $uiLabelWidth + $uiInputWidth + 50;

// delete UI function on close/open
if ( `window -exists addSets` == true )
deleteUI addSets;
window
-title ":: Set Manager ::"
-maximizeButton false
-minimizeButton true
-sizeable true
-resizeToFitChildren false
-menuBar true
-menuBarVisible true
-wh 400 200
addSets;
// begin actual form content
string $aForm = `formLayout -numberOfDivisions 100`;
string $aScroll = `scrollLayout -hst 16 -vst 16 -childResizable true -minChildWidth $uiWidth`;
columnLayout -adjustableColumn true -rowSpacing 6;
// main editable area (collapsable)
/*frameLayout
-label "Current Sets"
-labelAlign "center"
-cll true
-mh 3
-bs "etchedIn"
-bv true
-lw 100
aFrame;*/
// begin input area
columnLayout -adjustableColumn true;

string $Buttons = "SetButton";
string $ButtonOFF = "OffButton";
string $onButton = "";
string $offButton = "";
string $SetNames[] = `ls -sets "*_SET*"`;
int $NumSets = `size($SetNames)`;

for ($i = 0; $i < $NumSets; $i++) {
rowLayout
-numberOfColumns 3
-cat 1 "left" 5
-columnWidth 1 $uiLabelWidth
-columnWidth 2 $uiInputWidth
-columnWidth 3 $uiInputWidth;

$onButton = "onButton" + $i;
$offButton = "offButton" + $i;

text -label $SetNames[$i];
button -l "ON"
-c ("select -add " + $SetNames[$i])
$onButton;

button -l "OFF"
-c ("select -d " + $SetNames[$i])
$offButton;
setParent ..;
}
setParent ..;
setParent ..;
setParent ..;

// buttonz...
string $aRefresh = `button
-label "Refresh"
-command "addSets"
aRefreshButton`;
string $aClose = `button
-label "Close"
-command "deleteUI addSets"
aCloseButton`;

// set form layouts
formLayout -edit
-attachForm $aScroll "top" 2
-attachForm $aScroll "left" 2
-attachControl $aScroll "bottom" 2 $aRefresh
-attachForm $aScroll "right" 2

-attachNone $aRefresh "top"
-attachForm $aRefresh "left" 2
-attachForm $aRefresh "bottom" 2
-attachPosition $aRefresh "right" 2 50

-attachNone $aClose "top"
-attachPosition $aClose "left" 2 50
-attachForm $aClose "bottom" 2
-attachForm $aClose "right" 2

$aForm;

showWindow addSets;
 
#5
Слушай, а по человечески могёшь обьяснить? Как ЭТИМ пользоваться... вроде бы сохранил как МЕЛ скрипт..но не пошло почему то.. может ты мне скрипт пришлёь? Обьясни плиз..я в МЕЛе не разбираюсь..
 
Сверху