roodkapje
04-01-2003, 11:06 AM
ah, my first post... glad to find you all here....
if somebody doesn't help me i'm gonna cry...
before you say, "that won't solve your problem" understand that i've been working on this site for threew= weeks straight.
i've got actionscript coming out of my hair follicles!!! AAA!!!
so yeah, um... heres the problem...
i hope someone can tell me what i am doing wrong.
i need to change the size of a font depending on how much text is loaded into a text box (from an xml file) the font is i guess what one calls ėmbedded meaning i specified it to be included with the flash movie here is my code so far:
if ( thisTxt != "" ){
thurston.teenAgeRiot = thisTxt
if ( thisTxt.length < 100 ){
thisTextFormat = new TextFormat();
thisTextFormat.size = 80;
thurston.teenAgeRiot.setTextFormat(thisTextFormat) ;
}
else {
thisTextFormat = new TextFormat();
thisTextFormat.size = 20;
thurston.teenAgeRiot.setTextFormat(thisTextFormat) ;
}
}
else {
thurston.teenAgeRiot = ""
}
}
i've never tried to use this setTextFormat thingy before so i am understandable confuuuuused :confused:
if somebody doesn't help me i'm gonna cry...
before you say, "that won't solve your problem" understand that i've been working on this site for threew= weeks straight.
i've got actionscript coming out of my hair follicles!!! AAA!!!
so yeah, um... heres the problem...
i hope someone can tell me what i am doing wrong.
i need to change the size of a font depending on how much text is loaded into a text box (from an xml file) the font is i guess what one calls ėmbedded meaning i specified it to be included with the flash movie here is my code so far:
if ( thisTxt != "" ){
thurston.teenAgeRiot = thisTxt
if ( thisTxt.length < 100 ){
thisTextFormat = new TextFormat();
thisTextFormat.size = 80;
thurston.teenAgeRiot.setTextFormat(thisTextFormat) ;
}
else {
thisTextFormat = new TextFormat();
thisTextFormat.size = 20;
thurston.teenAgeRiot.setTextFormat(thisTextFormat) ;
}
}
else {
thurston.teenAgeRiot = ""
}
}
i've never tried to use this setTextFormat thingy before so i am understandable confuuuuused :confused: