A Line animation problem

Hi, I am new with Macromedia Flash. I want to create a line
that will underline a name. But the line will underline the name
gradually like: _, __, ___, ____. But i don't know how to do this.
I know the "Create tween" function but with a line it don't seems
to have an effect. My line didn't underline gradually but just
moved. Thx to help me fast.

"siphyse" <[email protected]> wrote in
message news:e9bba7$ci6$[email protected]..
>I think that works but the only thing is that my line
become bold when I try to make it longer. I tryed to edit it in the
panel but
>i just can't change the line size.
Use a one pixel high strokeless rectangle instead of a one
pixel thick line. Looks the same and doesn't mess up in tweens.
tralfaz

Similar Messages

  • PDF Letterhead Text LINE SPACING PROBLEM

    I recently upgraded from Pro 8 to X Pro on my Windows XP desktop. With Pro * I used the typewriter fucntion to place text onto my pdf letterhead. I have my letterhead in pdf format on my hardrive. I saved this texted letterhead without a problem, i.e., with the font, paragraphs, and line spacing eaxtly as it was when I creared it. With X Pro, after having placed text in my letterhead using the Typewriter function, my attempt to save the texted in letter head results in a pdf document which does not respect the line spacing I used w=hen creating it. Why am I have this line spacing problem?

    Thank you Michael,
    I am simply trying to continue using X Pro the way I used Pro 8. In Pro 8 I
    used the Typewriter function to input text to the letter head stored in my
    hard drive. Perhaps this is a functionality I lost as a result of the
    upgrade to X Pro -- I hope not??
    Joseph S. Tann, Jr., Esq.
    CONFIDENTIALITY NOTICE: This transmission is intended only for the addressee
    shown above. It may contain information that is privileged, confidential, or
    otherwise protected from disclosure. If you are not the intended recipient,
    please do not read, copy, or use it, and do not disclose it to others.
    Please notify the sender of the delivery error by replying to this message
    and then delete it from your system. Thank you.

  • At Line selection problem

    hi,
    iam stuck up with AT LINE-SELECTION problem ie i designed a screen where they need month list on clicking F4. i got the month list using month_names_get in the screen but while clicking the relevant month no.it's not entering into the required parameter. i have attached the codings,
    MODULE MONTH_DIS OUTPUT.
      SUPPRESS DIALOG.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
      SET PF-STATUS SPACE.
      NEW-PAGE NO-TITLE.
      WRITE:/ 'SELECT MONTH' COLOR COL_HEADING.
      ULINE.
      DATA: T_MNTH LIKE T247 OCCURS 12 WITH HEADER LINE.
      refresh t_mnth.
      CALL FUNCTION 'MONTH_NAMES_GET'
       EXPORTING
         LANGUAGE                    = SY-LANGU
    IMPORTING
      RETURN_CODE                 =
        TABLES
          MONTH_NAMES                 = T_MNTH
       EXCEPTIONS
         MONTH_NAMES_NOT_FOUND       = 1
         OTHERS                      = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      loop at t_mnth.
        write:/ t_mnth-mnr, t_mnth-ltx.
      endloop.
      CLEAR T_MNTH-MNR.
    ENDMODULE.                 " MONTH_DIS  OUTPUT
    AT LINE-SELECTION.
      p_period = t_mnth-mnr.
      CHECK NOT p_period IS INITIAL.
      LEAVE TO SCREEN 0.
    here in the AT LINE-SELECTION, the selected month is not coming to the required parameter.
    pls help me in this issue,
    Thanks in advance,
    Premnath.

    You need to set a "Hide" after the write... I suggest you also set your own dialog PF-STATUS too so you can have just a PF2 "pick" button and a Cancel button ( this will look better to the user).
    loop at t_mnth.
      write:/ t_mnth-mnr, t_mnth-ltx.
      hide: t_mnth.  "needs this
    endloop.
    clear: t_mnth.

  • Multi-Line Animation Presets

    I have one text box with multiple lines of text - applying any of the Multi-Line Animation Presets results in all content disappearing.  Please advise on best way to utilize those presets.  Thanks!

    No the color gets changed to white and i see red markers doing something but the characters aren't visible and the text box appears to be smaller too

  • PSD CS3 extended / animation problem

    Hi,
    I have a picture on a layer.
    I can easily animate it in a straight line.
    Problem: I also want to rotate the image as it moves in the same layer.
    Can this be done ?
    Or do I have to put as many layers as needed just to rotate ?
    Thank you,
    Alain

    Alain,
    Which axis do you want to rotate around?
    Neil

  • [ASAP] Need Help Exporting to PDF - Line weight problems (Illustrator file)

    So, I've drawn some stuff in Illustrator which I've then placed in InDesign.
    It all looks right on screen, but when I export the document to pdf (Adobe PDF Presets: High Quality Print) the Illustrator stuff appears to lose the line weight settings. This is easily noticeable on some really thin lines that print much thicker than they were supposed to.
    I gotta be missing something when exporting to pdf... 'cause if I export to Jpeg everything comes out right. No more line weight problems! The question is: what the hell am I doing wrong???
    Please, somebody help me out.
    Thx!

    1. How are you printing?
    I'm using one of the Adobe PDF Export Presets: High Quality Print.
    2. What are you using to determine the line weight?
    What do you mean? I talking about the stroke size.
    3. Have you tried opening the PDF in Illustrator to see what the reported line weight is?
    I've tried it now and it looks just fine! Just like it was supposed to! All the line weights are correct.
    4. This might just be a limitation of your printer or printer driver.
    I don't think so. I have never had this problem up until now!
    I'm starting to think it has something to do with some Acrobat preferences settings...

  • UIView Animation Problem with different Controllers

    Hello!
    I have a problem regarding the UIView animation and therefore, I have three questions:
    1. is it possible to flip from view old to view new whereby each of the views have their own controller?
    2. Can I only flip views sharing the same controller?
    3. Maybe someone could help me with the following issue: I have two views, and each of the views have their own controller.. the code snippet illustrates my approach.. When i start my code, the new view is added on top of the old view, and the flipping animation is animating the old view only behind the new view.. Sure, this is not what i want to have.
    MapPrototypeAppDelegate *app = (MapPrototypeAppDelegate *)[[UIApplication sharedApplication] delegate];
    ReadGroupsViewController *aReadGroupsViewController = app.readGroupsTableViewController;
    UIWindow *window = app.window;
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:[self.mapView superview] cache:YES];
    [UIView setAnimationDuration:1.3];
    [UIView setAnimationDelegate:self];
    [window addSubview:[aReadGroupsViewController view]];
    [UIView commitAnimations];
    thanks..

    sommeralex wrote:
    1. is it possible to flip from view old to view new whereby each of the views have their own controller?
    Yes.
    2. Can I only flip views sharing the same controller?
    The flip animation may be used to transition between any "old" and "new" view without regard to whether those views have different controller's, the same controller, or no controller at all.
    3. Maybe someone could help me with the following issue: I have two views, and each of the views have their own controller.. the code snippet illustrates my approach.. When i start my code, the new view is added on top of the old view, and the flipping animation is animating the old view only behind the new view.. Sure, this is not what i want to have.
    MapPrototypeAppDelegate *app = (MapPrototypeAppDelegate *)[[UIApplication sharedApplication] delegate];
    ReadGroupsViewController *aReadGroupsViewController = app.readGroupsTableViewController;
    UIWindow *window = app.window;
    [UIView beginAnimations:nil context:nil];
    // the next line is puzzling. what is 'self.mapView', and what do you expect its superview to be? If 'self' is a
    // view controller, what is the relationship between its 'view' property and its 'mapView' property? Does 'view'
    // also have a superview? Is 'view' above or below 'mapView'? Is there a view between 'mapView' and the window?
    [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:[self.mapView superview] cache:YES];
    [UIView setAnimationDuration:1.3];
    [UIView setAnimationDelegate:self];
    // apropos the question above, what view is being covered in the next statement?
    [window addSubview:[aReadGroupsViewController view]];
    [UIView commitAnimations];
    I think I need a better understanding of the view hierarchy we have before aReadGroupsVC.view is added. The problem you're having is probably caused by passing the wrong view as arg here: [self.mapView superview]. But I can't say for sure since I don't know how mapView is related to the view hierarchy, and I don't know what it's superview is. It might be easier to just explain your "old" view structure and tell us how you want it to change after the flip transition.
    - Ray

  • Self drawing line animation?

    I created the original files for this animation (which I hope I can embed/display here). Brief explanation and screenshot if not. It's a Celtic circular design and is made to look like it's a blueprint. The original file is Illustrator; I imported the layers into Flash and erased the lines bit by bit, then reversed the keyframes so it looks like it's drawing itself.
    Can I do this in Edge Animate? I know I can also easily do this in After Effects as well.
    Thanks in advance for your help!
    Dang, couldn't embed. I don't have a youtube account...

    Hello,
    after an update of the graphics card driver to the newest just released version the problem has vanished.
    Regards

  • Brightness animation problem

    Following on from, and possibly related to my previous post "Re-rendering Canon XF footage" a few days ago, something strange happened today.
    I was attempting to animate a brightness increase across a short clip, when it decided to not work (the brightness animation, not PPro).
    There's five video tracks, with Sony Z1P footage in 1-3, and Canon XF300 footage in 4 and 5. I'm mostly using track 1 (my own footage, of course), track 2 (2nd Sony camera), and track 5. I use opacity keyframing to dissolve from one track to another, rather than intercut clips on a single video track, and it's been working very well.
    This is footage from 3 performances of a stage musical, and there are lighting differences between the performances (not to mention issues with costume continuity, but that's another story - no matter how times you tell schoolchildren to wear the same costume every night, someone has to get creative!). This particular transition has a large drop in brightness as some dialogue finishes and a song starts (courtesy of lighting control dimming the scene too early), so I wanted to animate an increase in brightness on the clip to lessen the obviousness of the transition from bright to dark to bright again.
    Anyway, I added "Brightness and contrast" to the clip, clicked the clock symbol at the point on the clip where it started to go dim, then moved the indicator across the clip to the darkest point, added another keyframe, and moved again to where it started to get brighter, and added another keyframe. Then I increased the brightness level at the mid-point to something less dim, and moved the indicator back to the start to watch it. It worked OK the first time, then I adjusted the brightness level again, and it acted as though I hadn't applied any correction at all.
    After trying various undo and redo options, I cleared the effect and started from scratch. No improvement - the clip acted as though nothing had been done to it.So I cleared the clip and added it again, and added the effect again - no good. At this point I closed the project without saving, opened it again, and tried adding the effect again - no good.
    Then I started looking on the forums for answers. I started a new project and tried it - no good. Next, the advice was to start PPro with alt and shift keys held down to re-set preferences and plug-ins cache, and to clear the media cache database. This made a lot of red appear in the render bar (fair enough), so I started re-rendering. When that finished I went to the most recent piece of added footage (Canon footage in track 5), but it was indicated as off-line. I tried to re-link it and got the "generic error" message. I cleared and tried to re-import it (directly and through media browser) and still it wouldn't import. I restored from a backup and still no go. The clips immediately preceeding and subsequent were OK, and the offending clip plays fine in VLC, and in the Canon Utility program. I then proceeded to do an export from the Canon Utility, and it imported OK into PPro - same footage, although it came in 5 separate clips, not a single file of spanned sub-clips.
    Then the playback was stuttery although there was no red in the render bar. So I saved it, exited, and PPro crashed with a 0xc0000005 error (isn't that a Windows 'access denied' error?).
    I've opened the project again and it appears to be OK, so I'll continue working, but I'm still concerned that one or more items in the project file have become corrupted - first the brightness animation stops working (and I haven't tried adding the effect again). The footage is fine, but PPro thinks it can't import it under its original name and location. As soon as I export it from Canon Utility with a different name, its OK. If there's something corrupted in the project file or an associated project information or metadata file, should I use Project Manager to bundle it all into a new project, or is there some way to extract something more detailed than "generic error" from the file import module?
    Sorry for the long post - does anyone have any ideas?

    Hi,
    Try using Recovery Manager to reinstall your original Nvidia Graphics software - the procedure for using recovery manager to reinstall Software and Drivers is detailed in the document on the link below.  Note:  If you have Intel/Nvidia optimus graphics, reinstall the Intel gpu driver first, then reboot and check if the f2/f3 keys function.
    Recovery Manager - Windows 8.
    After the reinstallation has completed, restart the notebook.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Line Item Problem in  while  Proforma Invoicing in case of STO

    Hi All,
    The problem is related to Line Item Quantity in Proforma Invoice which is explained with an example -
    When we are doing Outbound Delivery for STO ( Stock Transfer Order ) we have the batch-split function where 2 line generates for a single line item material A in which in the first line no delivery quantity and value gets reflected and in the second line for the same material the delivery quantity gets reflected with batches. Then we save the order and done PGI. After that while doing the proforma invoice there also again the 2 lines appear for the single material A where the first line doesn't contain invoice quantity and value and show as 0pcs.In the second line for the same material it shows the invoice quantity with value. I want to remove this first line for the  same line item from proforma invoice and want the system to generate only one line for the line item containing the invoice quantity.
    Point to be noted that this thing doesn't happen for normal sales cycle done through Sales Order.
    I have also checked with the Item Category NLN where i have tried the Billing relevance N - Pro Forma - no zero quantities (including main batch items) and L - Pro Forma - no zero quantities. Still the same problem is arising.
    What is the problem here and how can it be solved?
    Looking forward to some valuable suggestions
    Thanks & Regards
    Priyanka Mitra

    check for your batch item cateogry,,, maintain the batch item cateogry setting same as it is ther in case of normal sale cycle. or what you can do ,,,copy your batch item cateogry and create a new batch item cateogry for your STO delivery .
    i did it and it is working fine for me. please check the batch item cateogry and matain it the same way.
    cheers

  • Flash as2 game animation, problem.

    hello i am making a flash animation game but i have a problem, i have my guy running and everything its all gifs, so when he stops its a gif its not one picture its 4 of em (gif) which i made them all compressed into a gif and added to my library then added that to my flash made it work blah blah blah-
    well my problem is when my guy runs left he turn right after i let go of the key i no whats it is doing it using my 1 animation i have in their for standing  i to add my other animation which he standing left basically he runs left after i press left then i let go he turns right, i need to know how to make it so either when i let go of the (LEFT) key it uses my animation ('still2') which is him facing left which i need i have him running right and he stays right after so thats good, or if u know if theres a way i can make the code say like after i let go of like left it uses gotoAndStop('still2') then for running right it uses gotoAndStop('still') so he dosent turn around after i let go of left! well i hope u can find out, and its all animated, so dont just make it so it dosent stop using the animation of left or right, cause then hes running in place for enternity thanks heres my code.
          var rollSpeed = Number=14;
         ichigo_mc.onEnterFrame = function() {
          if (Key.isDown(Key.RIGHT)) {
           this._x += rollSpeed;
           this.gotoAndStop("right");
          } else if (Key.isDown(Key.LEFT)) {
           this._x -= rollSpeed;
           this.gotoAndStop("left");
          } else {
           this.gotoAndStop("still");

    no its actually not a school project just i want to know how to make a game, and i dont know really anything about flash, but i have in my picture of my guy another layer so theres each indivudual layer like i have in my pic of my guy the still still2 running animation 1 n 2 and both my attack things, if you would to see my project so far ask me and i send the file and it should show my guy and his animations...
    heres my code so far.. idk y but i like putting at the end
       var rollSpeed = Number=14;
         var facingRight = true;
         ichigo_mc.onEnterFrame = function() {
          if (Key.isDown(Key.RIGHT)) {
           this._x += rollSpeed;
           this.gotoAndStop("right");
           facingRight = true;
          } else if (Key.isDown(Key.LEFT)) {
           this._x -= rollSpeed;
           this.gotoAndStop("left");
           facingRight = false;
       } else if (Key.isDown(Key.SPACE)) {
        this.gotoAndStop("atack2");
          } else {
           if (facingRight) {
             this.gotoAndStop("still");
           } else {
             this.gotoAndStop("still2");

  • Photoshop Elements 4 Animation Problem

    Hey everyone.
    Sorry for posting this in the iMac forum, but there really was no other forum for my problem. I am using Photoshop Elements 4, and whenever I try to save an animated gif, I cannot edit the frame delay or loop options, they will not respond to anything, but EVERYTHING else will. I have tried uninstalling and reinstalling it, and repairing permissions, and everthing else I can think of. Please help!
    Thanks
    Max

    Hmm... Well, this *****. It's wierd, I got it to animate succcessfully once, but only once, then I couldn't again. Just one more reason to wait for and buy 5 Universal when it comes out I suppose. Thanks for your help.
    Max
    EDIT: Hmm.. I didn't realize this forum had such a strict profanity filter. That wasn't a bad word...

  • Adobe Premiere Elements 8 Gif Animated Problem

    Hey guys , Im currently having problems with my Adobe premiere
    Im trying to import an image thats a .gif but it wont let me sais File not supported
    So I tried importing another .gif image and it worked
    Basically , im trying to import a .gif image and it wont let while letting me import other .gif images except for the one I want
    Thank you

    As I said
    I have another .gif animated image that works with Premiere
    So yeah , .Gifs work
    And I can import that , but I cant import the one I want
    And the problem is my Animated project has 93 frames

  • Line Alignment Problem while sending Fax from SAP Script

    Moderator message: please do not post the same question in different forums
    Hi Experts,
    While sending fax the horizontal lines are not displaying till the end of the page.
    But in the print preview the lines are displying till the end.
    If this is printed using local printer the lines are printing fine but the problem is with the fax.
    Please provide me a solution for this.
    Regards,
    Rajesh.
    Edited by: Matt on Nov 25, 2008 2:51 PM

    Puzzling.
    I've seen where the printed output doesn't match the print preview but not a fax not matching a print.
    Do you use SAPConnect or the older SAPComm method for faxing?
    How do you produce the horizontal lines? BOX commands, ULINE, '-', etc.?

  • Line art problem outputting to pdf

    I have a problem with exporting pages of a magazine going to print as pdf, relating to line art placed on the page as a bitmap tiff (typically at 1200 ppi). At present I have a workaround for an annoying problem that really needs clearing up ...
    I'm using CS4 InDesign and Acrobat (files prepared in Photoshop). So, high-res bitmap tiff containing line art sized (that is, just placed - no resizing in Indesign) and placed in Indesign, looks fine on the page. Output to pdf using 'export' and the resulting file, when viewed on screen, has a thin line down the right-hand edge of any and all bitmap files.
    To ensure no misunderstanding, the 'bitmap' reference is what Photoshop calls it - a bilevel file with black lines in it, which enables me easily to overlay other files such as a photo (because the file is black/transparent) and assign a colour or tint to the bitmap, or even a drop shadow etc. I've used this workflow for years, from Photoshop through Indesign, but the latter always gives me this line on the right edge, in the pdf. It did this in CS3 Indesign/Acrobat as well (but never in Pagemaker).
    My workaround is to lay a white-filled box over the edge of the file, thus masking it. But of course, that also limits me to where I can place the file - not easily on a graded tint background, not on a photo and so on. So I'd like to solve this.
    Any ideas? OS is Win XP Pro (all updates applied to this and the CS programs - I don't believe they make a difference to this problem, as it has existed through several iterations of both OS and CS).
    Anyone else seen this effect? Or is it just me? And has anyone a potential solution?
    Chris

    I think by reason of not knowing what else I can do, I'm heading to the same conclusion - put up with it! I'll certainly try sending a line to print and see if it appears, but for on-screen stuff, I think I have to stick with the safe workaround I use and accept the layout limitations. (Or resort to Pagemaker for the pages that I just cannot do otherwise.)
    Seems to me, if people have reported this for years, Adobe might have tried sorting it out. On screen or not, it still must be due to *something* in the file and/or Acrobat/Distiller to allow it to appear. If I create a white greyscale tiff with the same resolution etc, and place it on a page, there's no line down the edge on output - just a white page with a white (invisible) box. If I do this with an 'empty' bitmap file, a line appears ... Both files created in Adobe programs, so it's not me as a user ...
    Just me whinging! I'm really coming from the angle that if this is indeed a display problem, it can only be a display problem if there is something in the file for the display to react to (badly phrased that!).
    Thanks everyone for your support and ideas - I think that's me finished for now; I have files to upload and then sleep.

Maybe you are looking for

  • How do I recover deleted notes?

    I know you can do it because I've done it before. Just not since the iOS 8 update. I had a few notes on my phone and

  • RuntimeError in mapping.......package com.itc.xi.mapping.udf does not exist

    while testing a maaping, one of the UDFs threw the following runtime error... Error: package com.xxx.xi.mapping.udf does not exist... moreover, whats the CLASSPATH of the java package com.itc.xi.mapping.* Message was edited by:         sudeep dhar

  • Pass pricing date to advanced pricing

    Hi , What would i need to do to send a date which is passed as part of configuration to be the pricing date which is used by advanced pricing. For e.g. if the date is in past customer would be charged at a different price which was prevaliing at that

  • How do you get it unfrozen, how do you get it unfrozen

    my ipad screen is frozen its working but it wont let me go to home screen and shut it down

  • Weird Standard Preview Problem

    I had posted elsewhere about a problem with the "standard previews". Basically they can be there at one point and "POOF" they are gone the next time I open a particular folder. (My settings were 1440 and Medium.) Even within a folder there can be som