Thank you MAxweet , it is a window. I put the code .
You say em that put in another windows?
best regarrds
function interface_grafico(thisObj) {
var myScript_Data = new Object();
myScript_Data.scriptName = "Titulacion: Creado por Israel Diaz Torralba Diciembre-2011";
function myScript_buildUI(thisObj) {
var pal = (thisObj instanceof Panel) ? thisObj : new Window("palette", myScript_Data.scriptName, undefined);
if (pal != null) {
var res=
"Group { orientation: 'column', \
_panel: Panel{text:'Ruta del Archivo' , \
_descrip:StaticText{text:'Separa Campos con # con Nombre Rotulo, Numero de R, Textos uno detras de otro' ,properties:{scrolling:false,multiline:false}},\
_name:Group { orientation : 'row', \
_Ele_Archivo:Button{ text:'Elegir Archivo' }, \
_compo_mismo:Checkbox{ text:'Unica Secuencia' }, \
}, \
}, \
_render_name:Panel{text:'Salida de render' ,properties:{borderStyle:'etched'},alignment:'left',\
_name:Group { orientation : 'row',\
_Crear:Button{ text:'Crear Bandas y Renders' },\
_Workinfo:DropDownList {title: 'outputModule',alignment :'left'},\
_Render:Button{ text:'Renderizar' }, \
},\
}, \
manolo:Progressbar{visible:'1',alignment:'center',size:[300,20],}, \
_descrip:StaticText{text:'Creado por Israel Diaz Torralba www.virtualsets.es' ,properties:{scrolling:false,multiline:false}},\
}";
pal.grp = pal.add(res);
pal.layout.layout(true);
//pal.grp._panel2.text = "example of accessing UI elements";
return pal;
}
}
if (parseFloat(app.version) < 8 ) {
alert("This script requires After Effects CS4 or later");
} else {
var my = myScript_buildUI(thisObj);
if (my != null) {
if (my instanceof Window) {
my.center();
my.show();
}
//my.grp._panel2.text = "another ui access example";
}
}
return my
}
var my=interface_grafico(this);