freed102 Arayashiki | bien sur, mais les elements de cette fonctions ne sont pas concernés par la question puisque les objets créés se positionnent, eux, directement sur la scene (pour l'instant !)
Code :
- function CreateTextObject()
- {
- MyCreateTextfield(["txt_largeur"+_global.ObjectNumber],"Largeur",_global.zindex,25,_global.yindex);
- MyCreateInputfield(["val_largeur"+_global.ObjectNumber],"0",_global.zindex,85,_global.yindex);
- MyCreateTextfield(["txt_hauteur"+_global.ObjectNumber],"Hauteur",_global.zindex,25,_global.yindex);
- MyCreateInputfield(["txtval_hauteur"+_global.ObjectNumber],"0",_global.zindex,85,_global.yindex);
- MyCreateTextfield(["txt_y"+_global.ObjectNumber],"Y",_global.zindex,25,_global.yindex);
- MyCreateInputfield(["txtval_y"+_global.ObjectNumber],"0",_global.zindex,85,_global.yindex);
- MyCreateTextfield(["txt_x"+_global.ObjectNumber],"X",_global.zindex,25,_global.yindex);
- MyCreateInputfield(["txtval_x"+_global.ObjectNumber],"0",_global.zindex,85,_global.yindex);
- _global.zindex++;
- }
|
et voici la suite (provisoire !)
Code :
- function MyCreateTextfield(field,valeur,zindex,x,y)
- {
- _root.createTextField(field,zindex,x,y,65,20);
- _root[field].type = "Static";
- _root[field].multiline = true;
- _root[field].wordWrap = true;
- _root[field].border = false;
- _root[field].background = false;
- _root[field].text=valeur;
- _root[field].setTextFormat(Fname);
- _global.zindex++;
- }
- function MyCreateInputfield(field,valeur,zindex,x,y)
- {
- _root.createTextField(field,zindex,x,y,50,20);
- _root[field].type = "input";
- _root[field].multiline = true;
- _root[field].wordWrap = true;
- _root[field].border = true;
- _root[field].background = true;
- _root[field].setTextFormat(Fname);
- _root[field].text=valeur;
- _global.zindex++;
- _global.yindex=_global.yindex+30;
- }
|
Message édité par freed102 le 19-01-2005 à 11:01:03
|