Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
Thomas Finke #1
Mousecursor has "textbox-style" ???
Hallo,
why has my mousecursor between the buttons the "textbox-style" ?
Thanks,
Thomas
meinFormat = new TextFormat();
meinFormat.color = 0x0000FF;
meinFormat.font = "Arial";
meinFormat.align = "left";
meinFormat.size = 14;
meinFormat.bold = true;
meinFormat.leftMargin=5;
v = new LoadVars();
v.onLoad = function(geladen) {
if(geladen) {
// _root.variable0 = this.variable0;
// _root.variable1 = this.variable1;
for (i=1; i<=8; i++)
{
_root["variable"+i]=this["variable"+(i-1)];
duplicateMovieClip(_root.feld_0, "feld_" add i, 10+i);
//_root["kreis_"+i]._xscale += 40;
//_root["kreis_"+i]._yscale += 0;
_root["feld_"+i]._x = 20+110*(i-1);
_root["feld_"+i]._y = 0;
_root["feld_"+i].createTextField("link",i,0,0,90,24);
_root["feld_"+i].link.multiline = false;
_root["feld_"+i].link.wordWrap = false;
_root["feld_"+i].link.border = false;
_root["feld_"+i].link.type = "dynamic";
_root["feld_"+i].link.text = _root["variable"+i];
_root["feld_"+i].link.setTextFormat(meinFormat);
}
for (i=1; i<=8; i++)
{
duplicateMovieClip(_root.but_0, "but_" add i, 20+i);
_root.but_0._visible=false;
_root["but_"+i]._x = 65+110*(i-1);
_root["but_"+i]._y = 12;
}
}
}
v.load("variablen.txt");
Thomas Finke Guest
-
Nested Style to exact "Word" or "Small Phrase"
Ok, this question is for all you nested style experts - I use and love nested styles, but there's one trick I haven't figured out. As background, I... -
"Object reference not set" when loading a textbox in a user control
Hi All, I have a user control that shows name and address for a person in a text box. When the page hosting the control loads up, it calls a... -
"Wrong" parent for TextBox controls in composite control
Hi! I have built two very similar composite controls that consists of a number of textboxes each. In the PreRender-event I have the following... -
Help please: Exception when with <input type="file"> but not with Textbox
I've encounted a pretty strange problem and I'm not quite sure what to make of it. I have a web service that consumes an XML file as well as a... -
runat="server"....a simple html textbox or a webform server textbox...that is the question.
I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the...



Reply With Quote

