Dissapearing letters..

Hi,
Here's the senario:
I created some text "Welcome", and then made it a graphic
symbol on frame 1. On frame 30, I moved the symbol and enlarged it
with free transform, and created a motion tween between the two
frames. The tween works fine, except the "e" on the end of welcome
dissapears a few times during the tween. I'm stupmped - Any help
would be greatly appreciated!
thanks in advance

lol - you're welcome! I guess that did the trick eh?
:)

Similar Messages

  • Dissapearing letters in forms fields

    After creating a multi-record block displaying 12 records I added a text item that only displays one item per record. If an item (the text item in my case) has a different number of records displayed as defined within the block properties (block = 12, text-item = 1) then the first character entered into the text field must be entered twice before it is displayed. You can see the character being written and then being immediately removed! My version of forms (Forms [32 Bit] Version 6.0.8.16.1 (Production))
    Thanks in advance!

    It is some sort of bug.
    I encountered that problem in forms recently, too. I had a multi-record block with some items' "Number of Items Displayed" property set to 1. And by the way, I had also set the background color of the canvas. On the singly-occurring fields, the first character entered was erased.
    Metalink said they would report it as a bug, and then found a workaround: Instead of directly setting the canvas background color, assign the canvas to a visual attribute, and change the background of the visual attribute. Doing this got rid of the disappearing character.
    Go figure...

  • Broken keys

    Hi,
    I have a 8 months old iBook G4 1.33MHz and this morning I decided to give the keyboard a clean so I released it from the laptop, when I was manipulating it suddently the screw lock key jumped off (it wasn't locked to the laptop) this is the one between F5 and F6. I could see that the right hook side of the key was almost gone and it wouldn't click properly. Using a bit of force I managed to make it stay. I assumed it was a faulty key but made me think if Apple in these cases sends a new replacement keyboard for the customers themselves to change or you have to send the computer for servicing.
    I would like to have a new keyboard (expensive laptop with a not so good keyboard, no thanks ) or use it for spares (I heard comments of dissapearing letters)
    Has any anybody had a similar experience?
    It stuck today but it might not be tomorrow.
    Thanks

    don't know how it works in Spain, in the U.S. parts for iBooks are not available as do-it-yourself (except for the batteries.)
    http://www.apple.com/support/diy/orderonline/
    contact Apple authorised service provider in your area, they should be able to order keyboard.
    also, you probably do not need to return your old keyboard, but confirm with your service provider.

  • Dissapearing Image

    I am having trouble with the following code, which reads in a set of .png images that are named 1 -26 respectively, and outputs 25 of them in a grid. I draw each image to an offscreen image, back, which I then draw to the JFrame.
    When I run the program, I see the image for a second (actually much less time) and then it dissapears.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.image.*;
    public class wordtest extends JFrame{
         ImageIcon lett;
         ImageIcon [] letters;
         ImageIcon correct;
         ImageIcon incorrect;
         ImageIcon outOfPlace;
        public wordtest() {
             letters = new ImageIcon [26];
             BufferedImage back = new BufferedImage(230,230,BufferedImage.TYPE_INT_ARGB_PRE); // image to which i draw the 25 sepatate images
             outOfPlace = new ImageIcon("outofplace.png");
             try{                               // loading the 26 images
                 for(int i = 0; i < 26; i++){
                      System.out.println("Image pre-Loaded");
                   lett = new ImageIcon((i +1) + ".png");
                   letters[i] = lett;
         catch(Exception e){
              System.out.println("File loading Exception");
              System.out.println(e);
         setSize(500,500);    //set size of JFrame
        //     validate();
             Graphics2D g =  back.createGraphics();  //get the graphics context for off screen image
             int curr = 0;     //counter for drawing each image from the array
             try{
             for(int j = 0; j < 5; j++){
                  for (int k = 0; k < 5; k++){
                       System.out.println("Image pre drawn");
                       g.drawImage(letters[curr].getImage(), j*46,k*46,null);
                       System.out.println("Image drawn");
                       curr++;
             catch(Exception e ){
                  System.out.println("printing exception");
                  System.out.println(e);
             g.dispose();
             setVisible(true);
             Graphics f = getGraphics();
             f.drawImage(back,10,10,null);  //draw offscreen image
             f.dispose();
        //     validate();
        public static void main(String[] args){
             wordtest larry = new wordtest();
    }

    import java.awt.*;
    import java.awt.font.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class WT extends JFrame{
        ImageIcon[] letters;
        ImageIcon outOfPlace;
        ImageComponent imageComponent;
        public WT() {
            generateImagesToLoad();
            ImageIcon[] icons = loadImages();
            BufferedImage image = makeImage(icons);
            imageComponent = new ImageComponent(image);
            getContentPane().add(imageComponent);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setSize(500,500);    //set size of JFrame
            setVisible(true);
        private ImageIcon[] loadImages() {
            ImageIcon[] letters = new ImageIcon [26];
            outOfPlace = new ImageIcon("outofplace.png");
            for(int j = 0; j < 26; j++){
                letters[j] = new ImageIcon("wtImages/" + (j+1) + ".png");
                int loadStatus = letters[j].getImageLoadStatus();
                // ImageIcon doesn't throw exceptions so you have to
                // check on the loading status/success on your own.
                if(loadStatus != MediaTracker.COMPLETE) {
                    String errorStr = "letters["+j+"] loadStatus = ";
                    switch(loadStatus) {
                        case MediaTracker.ABORTED:
                            errorStr += "ABORTED";
                            break;
                        case MediaTracker.ERRORED:
                            errorStr += "ERRORED";
                    System.out.println(errorStr);
            return letters;
        private BufferedImage makeImage(ImageIcon[] letters) {
            // image to which i draw the 25 sepatate images
            BufferedImage back = new BufferedImage(230,230,BufferedImage.TYPE_INT_ARGB_PRE);
            // get the graphics context for off screen image
            Graphics2D g = back.createGraphics();
            int curr = 0;     //counter for drawing each image from the array
            try{
                for(int j = 0; j < 5; j++){
                    for (int k = 0; k < 5; k++){
                        g.drawImage(letters[curr].getImage(), j*46,k*46,null);
                        curr++;
            } catch(Exception e ){
                System.out.println("printing exception");
                System.out.println(e);
            g.dispose();
            return back;
        private void generateImagesToLoad() {
            // Make up some images to save for loading above.
            int w = 46;
            int h = 46;
            BufferedImage[] toSave = new BufferedImage[26];
            for(int j = 0; j < toSave.length; j++) {
                int type = BufferedImage.TYPE_INT_ARGB_PRE;
                toSave[j] = new BufferedImage(w, h, type);
                Graphics2D g2 = toSave[j].createGraphics();
                g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                    RenderingHints.VALUE_ANTIALIAS_ON);
                g2.setPaint(Color.blue);
                g2.drawRect(0,0,w-1,h-1);
                g2.setPaint(Color.red);
                g2.setFont(g2.getFont().deriveFont(16f));
                FontRenderContext frc = g2.getFontRenderContext();
                String s = String.valueOf(j+1);
                float sw = (float)g2.getFont().getStringBounds(s, frc).getWidth();
                float sh = g2.getFont().getLineMetrics(s, frc).getAscent();
                float x = (w - sw)/2;
                float y = (h + sh)/2;
                g2.drawString(s, x, y);
            // Save the images to file.
            File folder = new File("wtImages");
            if(!folder.exists()) {
                folder.mkdir();
                for(int j = 0; j < toSave.length; j++) {
                    File file = new File(folder, (j+1)+".png");
                    try {
                        ImageIO.write(toSave[j], "png", file);
                    } catch(IOException e) {
                        System.out.println("IO Error for " + file.getPath());
        public static void main(String[] args){
            WT larry = new WT();
    class ImageComponent extends JPanel {
        BufferedImage image;
        public ImageComponent(BufferedImage image) {
            this.image = image;
            setPreferredSize(new Dimension(image.getWidth(), image.getHeight()));
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            int x = (getWidth() - image.getWidth())/2;
            int y = (getHeight() - image.getHeight())/2;
            g.drawImage(image, x, y, this);
    }

  • Using a DocumentListener makes other components dissapear.

    I was wanting to use a DocumentListener to cut down on some code but when I used it all the buttons and TextFields dissapeared. Just wondering if anyone has had the same problem. Here is some of the code.
    // Only activate the button if there are more than 3 letters
    Document doc = lettersField.getDocument();
    doc.addDocumentListener(new MyDocumentListener());
    Document doc2 = addField.getDocument();
    doc2.addDocumentListener(new MyDocumentListener());
    class MyDocumentListener implemets DocumentListener {
    JButton = tempButton;
    Document = tempDoc;
    public MyDocumentListener() {
    if(letters.hasFocus() ) {
    tempButton = letters;
    tempDoc = lettersField.getDocument();
    } else if (addWord.hasFocus() ) {
    tempButton = addWord;
    tempDoc = addField.getDocument();
    public void insertUpdate(DocumentEvent e) {
    try {
    if( (tempDoc.getText(0, tempDoc.getLength()) ).length() >= 3) {
    tempButton.setEnabled(true);
    } catch (BadLocationException badLoc) {
    // Deactivate the button when there are less than 3 letters
    public void removeUpdate(DocumentEvent e) {
    try {
    if( (tempDoc.getText(0, tempDoc.getLength()) ).length() < 3) {
    tempButton.setEnabled(false);
    } catch (BadLocationException badLoc) {
    public void changedUpdate(DocumentEvent e) { }
    }

    First of all the first two lines of your MyDocumentListener class won't compile ("JButton = tempButton"? What's that supposed to mean?)
    Second, the constructor for that class is testing whether certain fields have the focus. That only happens when you create the MyDocumentListener, so what's the point?
    Mind-reading time again. I am guessing you want to associate a JButton with each instance of the listener, so that the listener can enable and disable it as necessary. So, do this:class MyDocumentListener implements DocumentListener {
      JButton associatedButton;
      public MyDocumentListener(JButton theButton) {
        associatedButton = theButton;
    }Note that I didn't tell the MyDocumentListener what Document it was listening to. I don't have to do that because DocumentEvent has a getDocument() method that tells me that for each event. So use this as one of the methods in MyDocumentListener:public void insertUpdate(DocumentEvent e) {
      Document doc = e.getDocument();
      try {
        if(doc.getLength() >= 3){
    // sorry about the >, it's supposed to be the greater-than symbol but it won't come out that way.
          associatedButton.setEnabled(true);
      } catch (BadLocationException badLoc) {
    }Finally, in your main program do this to assign the listeners to the fields:lettersField.getDocument().addDocumentListener(new MyDocumentListener(letters));
    addField.getDocument().addDocumentListener(new MyDocumentListener(addWord));

  • HT4059 I bought a book on ibook, read 13 chapters...and then it dissapeared from my phone. The bookshelf is completely empty and won't load. Tried to sync my phone through itunes and it won't sync the book. How do I fix this?

    I bought a book on ibook, read 13 chapters...and then it dissapeared from my phone. The bookshelf is completely empty and won't load. Tried to sync my phone through itunes and it won't sync the book. How do I fix this?

    Sorry, I meant the letters look "faded" not faed.

  • HT1351 Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Some of the songs I bought from iTunes will not sync to my iPhone.  They show up on my phone, but the letters look faed and I can't play them.  How do I fix this?  I tried restoring my iPhone and it didn't work.

    Sorry, I meant the letters look "faded" not faed.

  • Loops dissapeared

    Hi
    My Loops dissapeared from my browser, I guess I must of clicked on something without realising what the consequences were/are (LOL). When I click on the Loop browser it just tells me it can't find them and asks me to re-install them!
    I (of course) can see them in my audio folder (home/library/audio/apple loops .... and all the other stuff apple loops index etc) so I assume you don't need to re-install. However, how do I get them back into my Garage band - and later I hope into Logic which is what I more often use.
    Thanks in advance.
    p.s. i'm still on Tiger and so using 3.0.4. But that shouldn't make a big difference. 

    joesh2 wrote:
     I (of course) can see them in my audio folder (home/library/audio/apple loops
    reindex them:
    http://www.bulletsandbones.com/GB/GBFAQ.html#reindex
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Dunning costs and Dunning letters

    Hi to All,
    Any body can help me out, In this regard.,
        In the report of Dunning cost(Sendiing Dunning letters to customers)., Customers are showing but company code was not showing.How can i get the company code for those customers.
        And one more thing was customer dunning letter cost also showing differently for Customers(for one customer $ 2 and for other itwas variated to $2.50 likewise).
    Where I can see the dunning letter cost per customer.
    Thanks If in advance,
    Dara

    Hi,
    Line items should reach minimum number of days, referring to the due date of net payment, to reach a certain dunning level.
    In FBMP check you dunning interval. If line item has reached interval maintained for 2rd and 3rd level then items will not be dunned.
    Also check dunning levels for your dunning procedure in FBMP.
    If you find no problem with dunning settings then, activate additional log for the dunning run to identify exact reason for the problem.
    Thanks!
    Raju

  • If e-mail is moderately long if I delete a letter or digit the cursor disappears, have to recover it, all deleted letters or digits appear at end of e-mail

    If I type a moderately long e-mail (I haven't counted the letters/digits to determine how long), then suddenly letters won't appear. If make a typing errors, and backspace over or delete the error/s, the cursor will disappear. It's not anywhere in the body of the e-mail (or anywhere else I've noticed). I can get it to reappear by highlighting every word in the e-mail, then undoing that.
    All the letters/digits I've deleted reappear at the end of the e-mail--but only in the e-mail received (by the recipient). If I save the e-mail as a draft, when I look at the draft, the I'll see the deleted letters/symbols at the end of the e-mail. If I click on edit, they disappear. But recipients see all of them, regardless of whether I edit the e-mail or not.
    The last time I asked this "question", I was told to update. That was probably 5 updates ago. There has been no change.
    I don't know if the problem persists in safe mode because I have forgotten to switch into safe mode every time I use TB. Sometimes I remember to run TB in safe mode but don't have reason to type a long e-mail.
    I'm really tired of this problem.
    OS is win 7 pro w/service pack 1.

    May I ask why? Have you learned that that specific problem is solved in a pre-release version? So far I've upgraded once on your advice, now I've upgraded again to 31. Problem's still there. Unless I'm told that the problem's been solved for sure in a latter version, I'm not going to upgrade because sometimes the upgrades bring problems w/them for a low tech user. I don't want to chat, etc., I just want to be able to send and receive e-mails.
    I'm still working with the security software people re: some continuing issues w/FF.
    I'd like to spend more time doing my work, or communicating w/friends, not dealing w/software problems.
    Is there anyway of my finding out what, if any update, includes whatever is needed to solve my specific problem? I use Win7 Pro, SP1, 3.40 Gz processor, 3.19 Gb usable RAM, 64 bit OS. I don't know what other information is needed.

  • Wow! Mail dissapears, stores in wrong folder, wrong titles, ...

    I am getting a very strange behaviour in mail.app since my update to 10.5.4. Parts of emails are stored in the drafts folder without me asking. Some mails will open with a different text from the title or header. Some mail will seemingly be sent but does not appear in the Sent folder...
    I've reintiated the prefs file, rebuilt all the mailboxes. To no effect, I'm still getting the same behaviour erratically, it is not permanent, it appears very suddenly, then for no reason dissapears again. Could it be a ... (wolves crying) ...virus!?!?
    Please help.
    Mark

    Hello mark:
    You can set aside a concern about a virus. There are NO documented viruses that affect a Mac running OS X - none.
    If I were you, I would download the combo updater, install it, and see if that fixes the problem. Sometimes things go wrong with either the download or the update itself.
    I do see that you trashed the preference file and rebuilt the mailboxes - two things that I would have suggested.
    If the above does not help, I would opt for an archive and install.
    Barry

  • How do I change the lettering size on my HP Photosmart 5512?

    I need to know if there is any way to change the size of the lettering when I print something? When I print the size on the paper comes out jumbo.. How do I make it normal size so I am not wasting so much paper? I have an HP Photosmart 5512 series printer and I am using windows vista

    Does it print double when you print a certain application like email or web pages or does it do it on everything ?
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • Bought ringtones on my iphone 6 from the itunes store, and they reset to default after 1 day of using them and dissapeared pelase help me get them back

    How to get ringtones that have dissapeared  after purchased?

    This is a known issue and other's have experienced the same thing.  It has something to do with iOS 8.1.1.  If you didn't sync them to your iTunes library after purchase, you'll need to contact iTunes Support. 
    https://www.apple.com/support/itunes/contact/

  • Dissapeared videos & Mp3 files

    Today dissapeared videos & Mp3 files in Video and Music App, files are available only via File Commander and Downloads, - no music- no content available and the same is in Video App -no items, empty folders.
    I've been using Lolipop for 2 moths, not any other problem have detected yet.
    Any ideas to solve it?
    Have restarted 2 times- Not work

    @Berber
    few more suggestions
    1 uninstall the album updates 
    or 
    2 download a third party album app
    or 
    3 repair the phone with PCC
    PC Companion (PCC)
    Bridge (for Mac)
    Alternatives on How to backup Xperias
    http://talk.sonymobile.com/thread/36355
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Dissapeared footer (where is written what page is loading and so on) how to restore it?

    Dissapeared footer (where is written what page is loading and so on) how to restore it?
    there is the screenshot ( http://j.imagehost.org/0213/Clipboard03.jpg )

    View > Statusbar = click it

Maybe you are looking for

  • How can you bend an image round a path in Photoshop?

    Hello I would like to know how to bend an image to follow a particular path or shape in Adobe Photoshop CS4. The Warp tool produced the closest results I was aiming for, however it is difficult to shift one part of the image on screen without interfe

  • Error in "software projects" packaged application: for the apex team

    Hi, At the top of the menu there is a button progress reports or something like that. I come on a page with the possibility to run charts. If I push the button "report view" , the application goes to page 43 and shows an error: "assigned_to" not defi

  • Is there a method for time jump / time skip rather...

    Hi all, I'm a new BT Vision user, and treying to ween myself off my beloved old PVR (Topflield TF5800). One of the most useful features on the Topfield was a Time Jump, set to the 4 colour buttons. I had mine set to Red +2 mins, Green + 1 min, Yellow

  • Letterbox to 16:9 workflow ?

    Hi everyone. I have searched this forum and other places but cannot find the exact answer to my issue. I use a Sony PC350 dv Cam , which has a 4:3 display/format, and I can film in either 4:3 or 'widescreen'. I believe that this widescreen mode is le

  • Only downloads part 1 of 2

    I subscribe to several podcasts that are often "longish", i.e. two hours and they come in two parts but both posted as available the same date. I only get one of them donloaded to itunes, e.g. Hour 1 of 2... What to do to make this work without havin