|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Embedded Fonts
i've got the following code (attached)...
the movie is nested within a movie that's nested within a movie. the problem here is, the text is invisible. now, if i open it up in a browser without loading it into a parent movie, the text shows up fine (look at http://www.icdsolutions.net/catchaw...ages/survey.swf) but, like i said, loading this movie into another movie makes the text invisible. can anyone advise on the problem here? I have a the proper font in the library of this movie - do i need to add fonts to the library in its parent movies as well? for (i=0; i<questions_array.length; i++) { survey_mc.attachMovie("surveyQuestion_mc", "question_mc"+i, i); clip_mc = survey_mc["question_mc"+i]; clip_mc._y = clipYPos; clip_mc._x = 5; clips.push(clip_mc); clip_mc.createTextField("question_txt", i, 0, 0, 400, 10); clip_mc.question_txt.text = questions_array[i].SurveyQuestionDesc; if (questions_array[i].Required == "true") { clip_mc.question_txt.text = clip_mc.question_txt.text+" (Required)"; } clip_mc.question_txt.autoSize = true; clip_mc.question_txt.embedFonts = true; clip_mc.question_txt.setTextFormat(question_fmt); clip_mc.question_txt.multiline = true; clip_mc.question_txt.wordWrap = true; } |
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > Embedded Fonts |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|