Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Disappearing Text


When I export my completed flash project and move it offsite onto another computer the text does not appear. I am not using a custom text throughout my site. I used Arial hroughout the whole site to try and avoid this problem however even using Arial it doesn't appear.

Does anyone know why and if so how i can fix the problem? Am i exporting it wrongly?




FlashKit > Flash Help > Flash Newbies
Posted on: 12-02-2005, 08:40 PM


View Complete Forum Thread with Replies

Sponsored Links:

Disappearing Text
Hi all, in a bind here.

I'm editing a file containing text which must be HelveticaNeue Medium Condensed. Upon loading the file Flash asks me to substitute the font, even though I do have the font on my machine. Unlike any other font, (HelveticaNeue Medium Condensed) is displayed with parenthesis when I select it within Flash's drop down box in the properties panel.

Main problem is when I build the swf the text does not appear, the box is completely blank.

Any ideas? When I select "View/Antialias Text" the text does appear smoothed which is supposed to indicate the font is properly embedded.

Thanks so much!

View Replies !    View Related
Disappearing Text.
When I rotate text 90o and convert it to a symbol and add actionscript it disappears from the movie when I test it. Rotate it back so it is in the normal position and it appears again. Why is it doing this and is there a way to make it appear when rotated?
Thanks
ES

View Replies !    View Related
Disappearing Text?
I was making a rolling credit scene using motion tween. The text were like 45 points. Since it was a very long list it had to go out of the far off boundary where you can't see it when editing. I previewed the scene and like around in the middle the text just disappears below. What the heck is that about?

View Replies !    View Related
Disappearing Text?
Hi guys

I'm creating this flash app which is generating a rather strange bug.
On some computers, when you move the mouse over a dynamic textfield on the stage, the text disappears... The entire textfield doesnt necessarily disappear, just where the mouse goes over an individual letter........

so if you had the word "monkey" and hovered the mouse over "mon", you'd be left with "key"

Has anyone experienced this problem before?

Here's the URL if anyone fancies a play:
http://www.frema.ecs.soton.ac.uk/db/...ble=conceptmap

View Replies !    View Related
[F8] Disappearing Text
Dear All

I have a text component which I have linked to an external sytle sheet and a text file (all located in the same folder).

I convereted the text component to a movie clip so that I could have it coming in from the side of my file. This all worked fine and dandy.

I then decided that a mask would be a good idea, just ot tidy it up. I placed a mask fdirectly above the text layer and linked them.

The mc (with the component) flies in very neatly now, but the text has disappeared. In the help files I read something that gave me the idea of turning the mask into an mc but that didn't help.

The attached fla shows what I mean - press the "about us" link

I would greately value any support

thanks

Edward

View Replies !    View Related
Disappearing Text
I'm trying to create a quick animation...I have the first part of it all set, but then when I try to put a motion tween with text....it all disappears and only the 1st part (that i didnt want a motion tween in) stays and floats around the stage...I have no idea whats going on...please help?

View Replies !    View Related
[CS3] Disappearing Text
When I publish as both SWF and EXE, not all of my text blocks appear. Most of them do, but there are two areas that just show up as blank.

Any suggestions before I slit my wrist?

View Replies !    View Related
[CS3] Text Disappearing? HUH?
http://www.wardrobeworldbrissouth.co...be_trends.html

The above link is my website I'm nearly finished on. However, there is something that is bugging me, and forever will continue to bug me until I figure out whats wrong. You will see a few links at the top of the page:
Walk-
Reach-
Linen
and so on.

Where it says Walk-...its meant to say Walk-in...

Here is what I HAVE done on my FLA file:
Embedded every item of text in that box.
Actually written in the word "In"
Resized the .swf file that it is now so that it is 1000 * 600 instead of 1200 * 800
Even when it was at 1200 * 800 (in both the dreamweaver import, and the 'test movie' section of flash) the text seems to be missing.

WHAT IS WRONG?
Let me know if I have to upload the FLA and I will next time I'm at THAT computer.

(it is the same thing for all the other wardrobe designs too, except Reach-In...which has for some reason got smaller sized text)

View Replies !    View Related
Text Disappearing
I've run into a peculiar problem with a Flash subpage (several of them actually).

On all of the following pages the header text for the garments shown (the bold text on the top left with the drop-shadow) will have sections cut off the end or the beginning as if there were a transparency layer issue. The problem is intermittent and only happens when you click on the icons at the top in a certain order. It almost seems arbitrary and random.

The files are at:

http://www.flagsgolf.com/cgsflash.html
http://www.flagsgolf.com/mockflash.html
http://www.flagsgolf.com/ls_trous.html

I have moved all of the text in question onto the top layer of the master file and this anomaly does not show up when testing the file in Flash itself. Please let me know if anyone can think of an obvious solution.

Andy

View Replies !    View Related
Disappearing Text
I have a dynamic text field that has the text in it. I've made it dynamic in order to refer to it in some code for a scroller. The text is on the screen when I'm in production, but when I preview the movie, the text does not appear. I did a trace on the text field, and it says it's there, but the text is missing. Any thoughts on where it went?

View Replies !    View Related
Disappearing Text.. ?
i'm creating a text button, i transform it to rotate 90 CCW and it disappears out of sight..

funny thing is, if i'm using a rollover, the rollovers work but the text doesn't show up...

why would a simple transform make the text not show up?

View Replies !    View Related
Disappearing Text (again)
I want to create a site in which all graphics, and user interface elements (text/form fields etc.) are skewed and rotated. So I've been experimenting a bit with dynamic textfields, and have gotten myself into serious problems!!!

It would seem that a rotated textfield need to have an embedded font in order to show, so I've created a font in the library, and given it a linkage identifier ("myfont") for use with the textFormat() class.

Here's the code for that part:


Code:
var my_fmt:TextFormat = new TextFormat();
my_fmt.font = "myfont";
my_fmt.color = 0xFFFFFF;
Next, I created the textfield itself ("my_txt"). It can contain HTML, so I also load an external stylesheet for the purpose of formatting the text:


Code:
var styleObj = new TextField.StyleSheet();
styleObj.load('style.css');
styleObj.onLoad = function(success) {
if (!success) {
setText(my_txt, "could not load CSS!");
} else {
setText(my_txt,str);
}
my_txt._visible = true;
};
Oh, and I set the embedFonts flag to true:

my_txt.embedFonts = true;

Now were getting to the part strange part... the setText() function seems to depend on commands in a certain order, to avoid problems with non-appearing text ? If I change the order of a single of these lines, the function refuse to work:


Code:
function setText(target, strText) {
target.htmlText = strText;
target.setTextFormat(my_fmt);
target.styleSheet = styleObj;
}
But worse is the fact that I cannot set the text later on. The text simply disappear if the setText() function is called more than once.

Anybody ?

View Replies !    View Related
Disappearing Text.. ?
i'm creating a text button, i transform it to rotate 90 CCW and it disappears out of sight..

funny thing is, if i'm using a rollover, the rollovers work but the text doesn't show up...

why would a simple transform make the text not show up?

View Replies !    View Related
Disappearing Text (again)
I want to create a site in which all graphics, and user interface elements (text/form fields etc.) are skewed and rotated. So I've been experimenting a bit with dynamic textfields, and have gotten myself into serious problems!!!

It would seem that a rotated textfield need to have an embedded font in order to show, so I've created a font in the library, and given it a linkage identifier ("myfont") for use with the textFormat() class.

Here's the code for that part:


Code:
var my_fmt:TextFormat = new TextFormat();
my_fmt.font = "myfont";
my_fmt.color = 0xFFFFFF;
Next, I created the textfield itself ("my_txt"). It can contain HTML, so I also load an external stylesheet for the purpose of formatting the text:


Code:
var styleObj = new TextField.StyleSheet();
styleObj.load('style.css');
styleObj.onLoad = function(success) {
if (!success) {
setText(my_txt, "could not load CSS!");
} else {
setText(my_txt,str);
}
my_txt._visible = true;
};
Oh, and I set the embedFonts flag to true:

my_txt.embedFonts = true;

Now were getting to the part strange part... the setText() function seems to depend on commands in a certain order, to avoid problems with non-appearing text ? If I change the order of a single of these lines, the function refuse to work:


Code:
function setText(target, strText) {
target.htmlText = strText;
target.setTextFormat(my_fmt);
target.styleSheet = styleObj;
}
But worse is the fact that I cannot set the text later on. The text simply disappear if the setText() function is called more than once.

Anybody ?

View Replies !    View Related
Disappearing Text
i searched on this, but only found one post with the problem and it wasnt answered.

Anyway, i have a text field that I am setting multiline, wordWrap, autoSize all to true. Then I am embedding the font through the "character" button by choosing uppercase, lowercase, Numberals, and Punctuation. The problem is that my dynamic text gets assigned correctly, but the last line of multiline text items disappears. If I have 3 lines of text, it shows the first two lines, third one disappears. Anyone run into anything similar? This is MX 04 I am using.

View Replies !    View Related
SetChildIndex Of Text Field -- Text Disappearing?
I'm setting the child index of a dynamic text field so that it always sits on top of whatever else gets placed on the stage using the following code:


Code:
setChildIndex(fpsText, fpsText.parent.numChildren-1);
I've tried a number of variations, including this.numChildren-1, this.parent.numChildren-1, etc. Basically, if I get the text field to sit on top of everything like I want it to, then I only see the background color of the text field, but the text itself disappears. Does anyone know why this is happening and how to fix it?

View Replies !    View Related
Disappearing Lines Of Text
hi,
i've a strange problem trying to move some differently sized dynamic multiline text boxes. when you scroll up or down(using the up and down buttons in particular) all but the first lines of text are lost from the multiline boxes. but if you click on any of those, the text reappears. now it's not actually scrolling, it just redraws the boxes in different positions.
i have tried messing about with all the text box attributes, removed the drawn boxes, no luck. i am just wondering if anyone has come across this anomaly, or even it's just me.
here is the movie:
http://www.chistyler.com/dem.swf
thanks for any advice,

Chi

View Replies !    View Related
Disappearing Text In A Combo Box
I'm setting up an insect key using combo boxes. When the user chooses an answer in the combo box, it is replaced by a new one (or an answer appears). Sometimes, after 2 or so attachMovies (the combo boxes are inside MCs), the text disappears in the display. When you click on the box, you can see all of the choices, but once you choose something, you can't see it in the box.

I'm not using removeMovieClip to unload what's been loaded. I'm just attaching everything to level 1 and that clears out any loaded mc. Any ideas?

here's the swf so you can play with it. It's not complete, so you may run into dead ends. http://plaza.ufl.edu/tiberivs/key3.swf

View Replies !    View Related
Disappearing Text Fields
In the example code below, I create a dynamic text field with embedded fonts to display over a movie clip with a loaded jpg. The first text field displays correctly. However, as soon as additional fields are declared the first field disappears.

Why does the first text field disappear when I add additional text fields?


Code:

_root.createEmptyMovieClip("ourMovieClip",1);
ourMovieClip._x = 0;
ourMovieClip._y = 0;
_root.ourMovieClip.createEmptyMovieClip("holder",10);
_root.ourMovieClip.holder.loadMovie("b_dontwalk.jpg");
ourMovieClip.createTextField("counter",11,25,25,200,200);
ourMovieClip.counter.embedFonts = true;
ourMovieClip.counter.textColor = "0x000000";
newText1 = new TextFormat();
newText1.font = "Arial";
ourMovieClip.counter.text = '00:00:00';
ourMovieClip.counter.setTextFormat(newText1);
ourMovieClip.counter._alpha = 70;

ourMovieClip.createTextField("lyrics",11,25,250,200,200);
ourMovieClip.lyrics.embedFonts = true;
ourMovieClip.lyrics.textColor = "0x000000";
newText2 = new TextFormat();
newText2.font = "Arial";
ourMovieClip.lyrics.text = 'xx:xx:xx';
ourMovieClip.lyrics.setTextFormat(newText2);
ourMovieClip.lyrics._alpha = 70;

View Replies !    View Related
Disappearing Dynamic Text
Hello ladies and gents,

I am rookie .. . .so bear with me.

I have created several little movies, one of which contains some dynamic text and a universal time clock (which of course has to contain dynamic text as well), that are suppose to load into a parent movie. They do and they are all sexy and stuff, except for the one "child" that contains the above mentioned items . . . .they do not show up at all. All the other components of the movie work fine.

Please help a rookie out

aswg


ps: when I play the test movie, the dynamic text components and text show up. They just do not show up in the parent movie.

View Replies !    View Related
[F8] Partially Disappearing Text. Anyone Had This?
Hi all,
I have created a Flash program to teach 5th graders about Electrical circuits at this address:

http://www.goldenmultimedia.com/teslatime/pretest.html

It seems to work fine for me (and others), but today we tried it out with about 40+ kids in a local school, and some of the text was missing from the Question sections (after the video bit). Specifically the text was missing for Question #2, answer D. It should have read "D. When electrons break free and flow". Instead it just said "D. When electrons ". It happened in other spots too, but always in the Question sections, and sometimes the cutoff was even in the middle of a letter.

It seemed to happen only when we put a copy of the program on the local server (instead of accessing it over the web), but I wonder if the problem could be that I used the "drop shadow" filter on the text? I've heard cautions about using the filters, but I always thought it was just a frame rate issue. This was happening when the playhead was stopped. Each computer had the latest Flash Player.

I'll take any suggestions! Thanks,

- Kent

View Replies !    View Related
Text Embed Disappearing
So I have some dynamic text, I want it to fade out when I run a function.
I discover that you have to embed fonts or it'll just sit there and do nothing (I had already added a font to the library to cover the usage of a non system font). So I embed the font and discover that now when I change the text field from its original name it actually just disappears.
In fact if I take the textfield and just run embedfonts = true on it the it disappears.

Could anyone enlighten me to what stupid reason flash has for doing this?

Thanks in advance!!

note the clip is nested inside a parent clip, but I just tried it on the _root and it still disappeared

View Replies !    View Related
Dynamic Text (XML) Disappearing
I have a MC that is my button and inside that MC there are two frames:

- an up state that contains a dynamic text box (DTB) (with instance name and no var) and an outline.

- an over state that contains a DTB (with instance name and no var) and another MC for a fade-in background.

The data for these text boxes are being read from and XML file. All is great when I DON'T embed the fonts - except for any formatting on the DTB at all (spacing, bolding, etc.). So naturally, I thought I needed to embed the font outlines to get it to work; however, after embedding the font (tried using the ALL characters setting) - the font disappears completely when I test the movie.

Any ideas?

Environment:
Windows XP Pro
Flash CS3 Pro & Flash 8 Pro (same behavior)
AS 2.0 (publish setting)
Flash Player 8 (publish setting)

I've attached the .fla and the xml file.

View Replies !    View Related
Disappearing Text On Rotate
why is it that when I use transform to rotate a dynamic textbox the text no longer appears when i test the movie?

View Replies !    View Related
Help: Text Disappearing When Using MX Scrollbar
The process works fine when I test the swf, but then when I place the swf into a movieclip within a movieclip, the text disappears. Scroll bar seems to still be referring to the text, but the text is just no longer visible. Does anyone have any suggestions???

View Replies !    View Related
Disappearing Dynamic Text
i have a .fla file with some dynamic text. the text is visible when i'm editing the .fla file, but when i do a control-test movie or view the published .swf file, the text is not visible. any idea what's going on?

(by the way i'm using mx, not mx 2004).

the swf is posted at
http://www.ceip.us/flash/client_test.swf


and the .fla file is posted at
http://www.ceip.us/flash/client_test.fla

any input would be much appreciated. i'm stumped.

thanks a lot!
floyd.

View Replies !    View Related
Dynamic Text Disappearing
Hellos

If any kind soul can, pls help me with this, it would be great: I added an empty movie clip called mc to _level0 at runtime. Then within this for loop I dynamically added textfields. This part works fine.

Problem: When I click through the textfields, sometimes the text just disappears. I've tried doing a trace, and the actual values are in the text field, they just aren't visible. I've seen a lot of posts with similar problems around the net, but not quite sure what solves the problem. Am I missing something obvious?


Code:

for (i = 1; i <= total_photos ; i++)
{
//create text boxes
s = "p" + i;
var sTime = eval("myEvents.time" + i)

dStDate = getStartDate(iMode);
dEndDate = getEndDate(iMode);
dShowDate = getShowDate(sTime);
if (dStDate <= dShowDate && dShowDate <= dEndDate){
j = j + 1;
if (j==1){
txtName.text = eval("myEvents.caption" + i);
txtDescr.text = eval("myEvents.descr" + i);
txtTime.text = eval("myEvents.time" + i);
imgMC.loadMovie(folderName + s + ".gif");
}
yPos = 20 * (j-1) + 10;
_level0.mc.createTextField(s, 20 + i, 5, yPos, 240, 16);
_level0.mc[s].type = "dynamic";
_level0.mc[s].selectable = true;
_level0.mc[s].multiline = true;
_level0.mc[s].embedFonts = true;
_level0.mc[s].antiAliasType = "advanced";
_level0.mc[s].textColor = 0x7D7171;
_level0.mc[s].text = eval("myEvents.caption" + i);
if ((j & 1) == 0){
_level0.mc[s].background = true;
_level0.mc[s].backgroundColor = 0xE0DCDC;
}
else{
_level0.mc[s].background = false;
}
_level0.mc[s].setTextFormat(text_fmt);
_level0.mc[s].setNewTextFormat(text_fmt);
_level0.mc[s].onSetFocus = function()
{
sName = this._name;
iLen = sName.length;
iNum = sName.substr(1, iLen-1);
txtName.text = eval("myEvents.caption" + iNum);
txtDescr.text = eval("myEvents.descr" + iNum);
txtTime.text = eval("myEvents.time" + iNum);
current_photo = folderName + sName + ".gif";
imgMC.loadMovie(current_photo);
imgMC._x = 220 + (320 - imgMC._width)/2;
this.background = true;
this.backgroundColor = 0xffffff;
}
_level0.mc[s].onRelease = function()
{
stext = this.text;
this.text = stext;
}
_level0.mc[s].onKillFocus = function()
{
sName = this._name;
iNum = sName.substr(1, sName.length-1);
if ((iNum & 1) == 0){
this.background = true;
this.backgroundColor = 0xE0DCDC;
}
else{
this.background = false;
}
}
}
}
_level0.mc._height = (j+1) * 20;
};

View Replies !    View Related
AS2: Am I XML Blind? Text Disappearing
I have a card like movieclip that contains a textfield that calls in the XML fine. But then when I motion tween and tilt the movieclip the text in the text field disappears for no reason - when I change the field to just static text and enter some jargon it works fine - so why does dynamic text disappear when ever I tilt the moveclip it sits in.

The effect I am making it like a deck of cards being dealt out so they slide across the screen at different angles.

View Replies !    View Related
Help: Text Disappearing When Using MX Scrollbar
The process works fine when I test the swf, but then when I place the swf into a movieclip within a movieclip, the text disappears. Scroll bar seems to still be referring to the text, but the text is just no longer visible. Does anyone have any suggestions???

View Replies !    View Related
Disappearing Dynamic Text
i have a .fla file with some dynamic text. the text is visible when i'm editing the .fla file, but when i do a control-test movie or view the published .swf file, the text is not visible. any idea what's going on?

(by the way i'm using mx, not mx 2004).

the swf is posted at
http://www.ceip.us/flash/client_test.swf


and the .fla file is posted at
http://www.ceip.us/flash/client_test.fla

any input would be much appreciated. i'm stumped.

thanks a lot!
floyd.

View Replies !    View Related
Disappearing Text And Images
I have created a dynamic photo book using the pageflip code from 'http://www.iparigrafika.hu/pageflip/ ' the problem is when you are turning the pages both the text and images disappear.

the text is being load into a dynamic text which is on one of the page flip movies clips, and the image is loaded using loadMovie(image,"place_holder"), any suggestions on how to get the image and text to stay on the screen while the page is turning or at the very least keep the image there.

Thank you

View Replies !    View Related
The Case Of The Disappearing Dynamic Text
I'm working on a sub-movie to load into my larger main window, and my dynamic text is disappearing. I'm setting it based on the position ("target") of a "cursor" that tracks over a small version of a larger collage of images. The cursor controls the x/y pos of a larger image masked on this sub-movie. This sub-movie loads beneath yet another mask in the main windowing movie. The text is _root level in the sub-movie. It shows up fine when I run the sub-movie alone, but if I load it, the text disappears. Curiously enough, the cursor turns to an I over where it SHOULD be. I'm loading the text out of a multidimensional array contained within the cursor object (_root.cursor). Are there any known issues with dynamic text, masks, and the like? Any settings I should try? Thanks in advance!

View Replies !    View Related
Movie Clips - Disappearing Text
Hi there,

I have movie clips in my animation which consist of a rectangle shape and a dynamic textbox. These movie clips are rotated when the user clicks a button.

Everything works fine except that when the clip is rotated the text disappears. Once rotated back to the horizontal it reappears.

Anyone have any clue why this is happening, and how it can be fixed?

Many thanks.

View Replies !    View Related
Embed Fonts - Disappearing Text
Attached you will find some sources:embed 2.fla illustrates the problem
arial.fla is just a dynamically loaded font library
info.xml is just some external text

Currently embed 2.fla works as it is. However, if you change anyone of the TextFields in the GUI to a font type of "arial" all of the embedded text will disappear. However, if they are anything but arial (as that font face is set in the info.xml file), they embed correct and display just fine.

How do I set the TextFields in the GUI to arial so that if no font face is provided in the external text it will default to arial?

Thanks for looking.

View Replies !    View Related
The Mystery Of The Disappearing Text Headers
I've run into a peculiar problem with a Flash subpage (several of them actually).

On all of the following pages the header text for the garments shown (the bold text on the top left with the drop-shadow) will have sections cut off the end or the beginning as if there were a transparency layer issue. The problem is intermittent and only happens when you click on the icons at the top in a certain order. It almost seems arbitrary and random.

The files are at:

http://www.flagsgolf.com/cgsflash.html
http://www.flagsgolf.com/mockflash.html
http://www.flagsgolf.com/ls_trous.html

I have moved all of the text in question onto the top layer of the master file and this anomaly does not show up when testing the file in Flash itself. Please let me know if anyone can think of an obvious solution.

Andy

View Replies !    View Related
Text Disappearing With Render HTML
Ok, i have a dynamic text box and the variable for the text is in the root. The only html tag I am using is <br>. If the text is displayed without html it works fine, but as soon as i enable Render as HTML, the text field goes blank. how do i fix this problem?

Current Format for variable is:

faqContent = "this is the content<br>of the faq.";

View Replies !    View Related
Disappearing Button Component Text
link here

To see the bugs, click on "mercury battery adapters" from the menu, then click on an image on the side. There is a Button that shows up, but doesn't display any text on it. There is also another one on the site, but it does the same thing.

I have heard this might be from having a mask in my index movie (which loads the child movies). I DO have the component in the index animation aswell, so it's not that. Any ideas? Thanks a ton.

View Replies !    View Related
Dynamic Text Disappearing - More Info
Any pointers in the right direction will earn you a virtual shout Guys, I neglected to mention a few things in my last post about text disappearing:

I have a movie clip (MC) into which a bunch of textfields are dynamically added. MC is masked by a movieclip (maskedView); this is done at runtime. I've implemented the scroll bar functionality (which is why I need the mask) and added the dynamic textfields to work so that when one of them is clicked, the corresponding image is shown in a separate movie clip (imgMC).

I've been nosing around Flash sites, and mostly it seems as if :
embedFonts needs to be true,
and a new font has to be created, and assigned to each text field.

I've done this, but my text still disappear and reappear - sometimes - when I click on the textfields randomly.

Pls help!

View Replies !    View Related
Dynamic Text Boxes Disappearing
Has anyone ever encountered this problem before? I have 3 dynamic text boxes in a movie. They all run off the same variable. One of the text boxes displays fine when published and printed. The other 2 disappear when printed or published. If I switch the disappearing text boxes to static, they appear just fine, however static text boxes will not work for these purposes. I have searched through all my code and I cannot find anything that would lead this to happen, especially considering that one of them works perfectly.

A little background on the project. It is an advertising web application. The end user is able to customize their own newspaper ads from a bunch of premade templates. They enter their info into the text fields, drag and drop a graphic or two and hit print. They have 2 options when printing, print 1 to a page or 2. The print 1 up dynamic text field displays fine. Behind the background (so it cannot be seen) exists the 2 up movie clip. Inside it are two exact duplicates of the print 1 up movieclip, just rotated and scaled so they will fit on one 8.5x11 piece of paper. Both of these have a dynamic text box (the copyright text) that disappears when printed or published to SWF. Rather than having to switch the copyright date on every newspaper ad section, I set it within the left navigation using the simple hardcode:


Code:
_root.copyright = "2008 ..."
This way it only needs to be set in one place per year very simply. I do not understand how the exact same symbol can display fine one way and not at all in another instance of that same symbol. Is this a flash bug or is there something I may have missed?

View Replies !    View Related
Input TextField : Disappearing Text
Check this out:
http://starcam.com/camraw

Use Safari or Firefox - IE is not an issue.

Try entering text in the username/password field a few times.
You will probably notice that on a pretty regular basis the text will disappear as you type.

Has anyone else seen this...and can anyone confirm what I am seeing?

Note: I have found that this problems shows up more often if you select the input textfield and type something - then select all text you just typed and delete using backspace. Once you delete the text...start typing again...you should see it.

View Replies !    View Related
Text Disappearing With Render HTML
Ok, i have a dynamic text box and the variable for the text is in the root. The only html tag I am using is <br>. If the text is displayed without html it works fine, but as soon as i enable Render as HTML, the text field goes blank. how do i fix this problem?

Current Format for variable is:

faqContent = "this is the content<br>of the faq.";

View Replies !    View Related
Disappearing Button Component Text
link here

To see the bugs, click on "mercury battery adapters" from the menu, then click on an image on the side. There is a Button that shows up, but doesn't display any text on it. There is also another one on the site, but it does the same thing.

I have heard this might be from having a mask in my index movie (which loads the child movies). I DO have the component in the index animation aswell, so it's not that. Any ideas? Thanks a ton.

View Replies !    View Related
Text Appearing And Disappearing In Flash
newbie here. i'm trying to make a simple flash movie that has a talk balloon/bubble used (like in cartoon strips in the newspaper to show a character talking) and then different text appearing and disappearing. That's it.

how do i do it?


seems that after buying some flash books, I use the alpha channel to make things appear and disappear (opacity) . Fine by me. But i can't seem to access it for the different text layers that i made. so do i have to make differrent movie symbols for each text script?

i'm lost at the very beginning here, as i'm new with flash, and my first thing is making text appear and disappear, rather than the more conventional animation.

please help.

thanks, b

View Replies !    View Related
Loaded External Text Disappearing
This should be an easy question to answer I think.

Today I was working on my project. I lost power in the middle.

Before I lost the power, on frame 1 I loaded external text into a text field. When I made a new key frame on the same layer after that the text loaded up for that frame as well, so that I didn't have to reload it.

Now it won't work and I have use the load script again in the following deal.

This has happened to me a few times.

Can someone tell whats going please?

View Replies !    View Related
Text Partially Disappearing Prop?
i've got a dynamic text box and sometimes the second line of text disappears. Until I hi lite it and it then becomes visible again?

View Replies !    View Related
Dynamic Text, Symbol Characters Disappearing
Hi.

I'm trying to animate text in 3d, and to do this i've made a MovieClip with a single character, created one of these for each character in my string, and animated the x, y, xscale, and yscale values to produce the effect of 3d. This works well.

My only problem is with my algorithm for setting the initial position of the text. I've attached my actionscript...

This works perfectly except for "symbol characters" like ?, !, &, @, etc.

textWidth appears to be 0 for these characters and just creates an empty MovieClip.

Any help is appreciated.

---









Attach Code

var nextPos = 0;
var kerning = 2;
for(var i = 0; i < numChars; i++)
{
// attach movie
var clip:MovieClip = this.attachMovie("clip_txt", "instance_mc_" + i, i, {_xscale: 0});

clip._txt.text = string.substr(i, 1);
clip._txt.autoSize = true;

clip._x = nextPos;// initial x position

nextPos += clip._txt.textWidth + kerning;
if(clip._txt.text == " ")
nextPos += 6;
}

























Edited: 10/01/2007 at 04:32:30 AM by mdbtgm

View Replies !    View Related
List Component Text Disappearing At Runtime
I really need help with this - I have been trying to get this to work for 2 weeks now and so far no one has been able to help. I am attempting to use components in my flash movie, but when I test the movie, none of the labels show up.

The components are placed into a movie clip that is instantiated and manipulated at runtime - in other words, it exists only in the library and is called into existence at runtime through the attachMovie method.

On the side of the screen are buttons that make this MC move around the screen.

These components I am trying to use are not being rotated, just moved (because they are inside a MC that is being moved). I've tested this and have determined that moving a component at runtime does not cause the text to disappear - only rotating it does.

If you need it, I have uploaded the source file. Just run it and you'll see the component - with no text displaying. The rows should be labeled "1" "2" and "3". Thanks in advance for any help!

If you get this far (downloading and looking at the source fla) I will go the distance here and point you directly to where this object is located. Simply open the fla's library and double click on the searchAreaContent MC inside the search panel folder. You will find the component in there.

View Replies !    View Related
Dynamic Menu Items Disappearing Text?
hey, i have created a menu that dynamically loads text for each menu item from an XML file. it works fine, but i added a rollover event to each item, and when you rollover the items, the text disappears and will never come back until you reload the swf file!!
i tried a buncha things like reloading the text after the rollover effect was triggered, but nothing seems to work!!

heres my as code:

Code:


Menu_Data = new XML();
Menu_Data.ignoreWhite = true;
Menu_Data.onLoad = function() {
menuItem = this.firstChild.childNodes;
for (var i = 0; i < menuItem.length; i++) {
item = _root.attachMovie("itemClip", "itemClip"+i, i);
item._y = 20;
item._x = 120*i;
item.itemText.itemLabel.text = menuItem[i].attributes.name;
item.Url = menuItem[i].attributes.url;
item.onRelease = function() {
getURL(this.Url, "_self");
};
item.onRollOver = function() {
this.itemText.itemLabel.textColor = 0xFF0000;
this.button.goToAndStop(2);
};
item.onRollOut = function() {
this.itemText.itemLabel.textColor = 0xAAAAAA;
this.button.goToAndStop(1);
};
}
};
Menu_Data.load("menu.xml");




thanx for anything!
dT[]

View Replies !    View Related
Dynamic Text With Scroll & The Disappearing Letters WEIRD
Hi everyone. I am having a bit of a crisis which I'm hoping someone might be able to help me out. I have a .fla file saved which I created in flash 5. I am trying to finish it off by making a few little amendments in Flash MX but this weird thing keeps happening and I have no clue whatsoever how to fix it.

My main body of text has a scroll in it, so it has all been input dynamically and inserted directly into the Actionscript. This worked fine in Flash five, but now it's been opened up in MX I am finding certain letters are just vanishing when I publish the movie. I had experienced this once before in Flash 5 when I have emboldened the number 6 in dynamic text it would disappear, but now it's happening with many different letters so all my dynamic text is reading like:

"ACATIOAL EMPLOMET" rather than "VACATIONAL EMPLOYMENT".... you get the picture.

Does anyone have a clue as to what's causing this to happen!?

Thanks! ~Laura

View Replies !    View Related
Stuck With Dynamic Text Box Disappearing When Masked.. Pls Help Me.. Soo Urgent
Hi,
I am trying to make my code work for past six hours..still cant make my code work...
i have created a text box and has given it instance name as "k1" ... then i have added a mask for the layer that contains this text box.. the text box comes with in the mask only.. when i compile, the text box is not at all visible... if i keep it as static text box then it works fine, but when dynamic text box its not working...
after googling i found out that i have to embed the font.. hmm that is a biggggg problem..... its not at all working.. i have given my code here below


var font:Font = new f1(); //from library
var format:TextFormat = new TextFormat();
format.font = new f1().fontName;
format.color = 0x000000;
format.size = 12;
format.letterSpacing = 0.8;

k1.embedFonts = true;
k1.antiAliasType = AntiAliasType.ADVANCED;
k1.autoSize = TextFieldAutoSize.LEFT;
k1.selectable = false;
k1.defaultTextFormat = format;
k1.text = "Collections";


this is my code... k1 is a name of a dynamic text field that i have created in screen.. i hav created a mask for th layer that contains this text field..so its not visible, thats the reason i want to embed the font. but its not at all working.. pls tell me what am missing..

i want "collections" should be visible on screen when compiled.. plsss tell me wat to do.. i need this info urgently. pls help me out frnds

View Replies !    View Related
Disappearing Text Not Displaying Embedded Font Problems Etc - Solution
Not so much a question, but this might be of great use to people. I've seen this question asked all over, and just myself found the answer.

You've put in some text to your movie with Flash 8 - exported it with FLash 8. THen you've checked it on a PC other than yours, and hey presto - the text does a disappearing act. All you get are the design elements.

The answer is to publish for FLash 7. People with Flash 7 can't view Flash 8 movies quite right - the embedding options mess things up.

See this link for more info...

http://www.macromedia.com/cfusion/kn...fm?id=144b4be2

I quote... "Flash 8 provides developers greater control of font rasterization, letting them specify the anti-aliasing properties for fonts. The improved anti-aliasing capabilities are available only when publishing SWF files for Flash Player 8. This also means that SWF files published for Flash Player 8 use these advanced properties. Consequently, static text in these SWF files will not be rendered by earlier Flash Player versions."

Hope this helps some people. I know it was a mystery for me to begin with.

Apologies if this is also put in the wrong place - move if applicable!

Alex

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved