I need help again!

HI
This is driving me crazy, I discussed this before and I did manage to get it to work once.
But I don't know how and I can't repeat it.
I need to scale the video clip from one key frame to the next, but every time I change the size at either key frame it changes for the whole clip.
In video 1 I want it to stay at 100% until the first key frame, and then change to 110% gradually until key frame 2 and stay there until the end.
I swore that I was going to figure it out on my own and not bother you guys, but after spending an hour messing with it and searching all the help files I could find I still didn't find anything that describes the process.
What I've done is set  both key frames to Bezier then I set the marker on frame 1, but then what?
There doesn't seem to be any activate button, other then the Toggle Animation button, but that doesn't seem to do anything.  It just says that it will remove any previous key frames but I don't see anything happen when I click it.
So I move to key frame 2 and I change the scaling on the clip to 110% I click the Animation button since there isn't' anything else to click (I've tried not clicking anything too) and the whole clip changes to 110%.
What is the step by step process to change the size between the key frames .
I just don't know what I'm missing.
Mike
Never mind, I finally found the little arrow that changes it from Opacity to Motion!!!
I should have noticed that it said Opacity in the bar, but my eyes aren't that great anymore and it's pretty small.
I go to have eye surgery in a couple of weeks.
Hopefully it will be better after that, but I have my fingers crossed.
My old partner in the graphic design business has vision so bad he can't drive any more.

Hi
I'm using PE 12, in Windows 8 64 bit.
I'm trying to not over stress it and it's working better but still a little laggy.
My icons for Effects, transitions, etc. have vanished again, after working for a couple of days.
They actually come and go, I have had them show up and then disappear again.
That's one issue I'd really like to get fixed, but I don't have a clue why it would do that.
I think I've got the motion thing down now, I used in in this video to make the background zoom in when the camera moves in on Lucy.
http://vimeo.com/78481370
It adds another capability, I can see different layers moving at different speeds to give the illusion of depth.
Bye for now.
Mike

Similar Messages

  • News "FLASH"... Nancy O (the legend) ... i need help again

    I am trying to put a banner on my website for my exam.... It will have to have an image with logos flashing across and stopping for a few seconds before carrying on.and out the other side.  I have looked up everywhere to see how this is done but with no joy. There is lots of info out there but it is not working for me.  In Flash i have no problem creating a banner image with various logos moving  from one side to the other or even changing the image from one shape to another or bouncing it up and down the stage from one side to the other. I can even stagger the timelines for the logos to make them enter one after the other. The one thing i can not get to grips with is making the images stop or pause after they have entered from one side before exiting  the other side. I have followed step by step many  youtube tutorials but the authors are wizzing through them too fast and despite folling every step second by second, i  am missing a vital step somewhere.   Would someone please let me know step by  step (and please assume i am an idiot when doing this) the sequence i must follow from the very begining to the last step when i publish.

    Noooooooo........ When i saw your email notification i had high hopes of getting the answer i have been trying to work out for two days....but no problem ..your still a legend ha ha ... you got me out of a big hole in this project the last time... but thanks for taking the time to reply, i will try the other forum.
    Date: Thu, 26 Jan 2012 17:28:18 -0700
    From: [email protected]
    To: [email protected]
    Subject: News "FLASH"... Nancy O (the legend) ... i need help again
    Re: News "FLASH"... Nancy O (the legend) ... i need help again created by Nancy O. in Dreamweaver - View the full discussion
    You'll get better answers in the Flash Forums for whichever Action Script ver you're using.
    Sorry.  I don't do much Flashy stuff anymore.  As far as I'm concerned, when Apple iDevices quit supporting Flash, it became a dying web technology.  
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4167793#4167793
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4167793#4167793. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Dreamweaver by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Need Help again...

    Hi all...
    Really need help again this time...
    I am trying to do a web page and thought of placing 4 video
    clips into
    1 Loader...viewers can simply choose any of the videos they
    would like
    to watch...and all the video clips will then play in the same
    Loader on
    the exact X & Y values...Is it possible?
    eg. 4 Buttons with linking to 4 different video clips.
    When a video clip selected, play in a Loader of X and Y
    values.
    When another clip selected, play in the same Loader.
    Moca or anyone...please help me a.s.a.p...Thanks in
    advance...

    Does this happen to a wired computer or to a wireless computer? If it happens to a wireless computer ONLY but not to a wired computer, a firmware upgrade might not be necessary at all.
    Make sure your wireless settings are personalized, try using channel 11 and when you go to advanced wireless settings, try setting the beacon interval to 50 instead of 100.
    On how to do the things mentioned in the 2nd paragraph, open up IE and type on the address bar the numbers 192.168.1.1 (username leave it blank, password as a default is admin). Go the the Wireless tab.

  • Need help again. please

    This is my code for the game called Pig. I asked help before and I fixed it. But it still doesn't seem to work.
    I need it to jump from the loop where answer = y to the next loop where answer = n.
    Which part is wrong in my program?
    Any help will be appreciate. Thank you.
    public class Pig
        public static void main (String[] args)
          String answer="y";
          int num3=0, num6=0; 
          PairOfDice die1 = new PairOfDice(); // die # 1
          PairOfDice die2 = new PairOfDice(); // die # 2
          while (num3 <= 100 || num6 <= 100)
          while (answer.equalsIgnoreCase("y"))
                rollUser();
                System.out.println ("Do you want to roll again? (y/n)");
                answer = Keyboard.readString();
          while (answer.equalsIgnoreCase("n"))
                rollComputer();
                System.out.println ();
                answer = "y";
        public static void rollUser ()
            int num1, num2, num3 = 0, two = 2;
            PairOfDice die1 = new PairOfDice(); // die # 1
            PairOfDice die2 = new PairOfDice(); // die # 2
            num1 = die1.roll();
            num2 = die2.roll();
            while (two == 2)
              if (num1 == 1) // when either face is 1
                 {num3 = num3;
                     two = 1;
              if (num2 == 1)
                 num3 = num3;
                     two = 1;}
              else  
                  if (num1 == 1)
                      if (num2 == 1) // when both faces are 1
                     {num3 = 0;
                         two = 1;}
                  else
                      num3 += num1 + num2; // sum of two faces
            System.out.println (num1 +" "+ num2); // shows both faces
            System.out.println (num3);   
        public static void rollComputer()
            int num4, num5, num6 = 0, one = 1;
            PairOfDice die1 = new PairOfDice(); // die # 1
            PairOfDice die2 = new PairOfDice(); // die # 2
            String answer="n";
            num4 = die1.roll();
            num5 = die2.roll();
           while (one == 1)
              if (num4 == 1) // when either face is 1
                 {num6 = num6;
                     one = 2;
              if (num5 == 1)
                 num6 = num6;
                     one = 2;}
              else  
                  if (num4 == 1)
                      if (num5 == 1)// when both faces are 1
                     {num6 = 0;
                         one = 2;}
                  else
                      num6 += num4 + num5; // sum of two faces
              System.out.println (num4 +" "+ num5); // shows both faces
              System.out.println (num6); // shows the sum of faces
              if (num6<=20)
                 {one=2; answer = "y";}
         

    I need it to jump from the loop where answer = y to the next loop where answer = n.And would you like to tell us what happens instead?
    -- as the code stands, your second loop will never repeat, so should not be a while loop but rather an if block.
    -- or maybe you wanted to assign the value of answer in rollComputer, but instead you declared a local variable, which you assign values to but never test.
    db

  • Display presenter's note! Need help again Please

    Since installing leopard I cannot see the presenter's note on my screen and the slide on the projector's screen. I had wonderful advice in the past on how to do it in Tiger, I tried every configuration possible and I cannot do it.
    When I click off mirror I can see the slide on the screen but not on my laptop all I see is the empty desktop. If I choose to see presenter's display then my audience sees both slides and my notes.
    What am I doing wrong?
    Thank you for any help you might give me.
    Mireille

    Hi Mirelle,
    I think you need to make sure, that your notebook have found the attached monitor/projector before you begin the presentation, that way when switching off mirroring you should get a perfect picture on both monitor and projector.
    To see the notes, please be aware, that you manually have to enable notes. If you have chosen the outline view and writes here, it is not presentaed as notes. In the View menu chose show presenter notes, and now you can write your notes here, and they will be displayed during presentation at the presenter display.
    --Klaus

  • Grey Screen on start-up - Dad needs help again

    Hello to the mac family,
    As a regular 9.2 user, I am stuck once again. I am trying to help my son's roommate at school. I have not seen the computer. I think....
    He has a powerbook G-4.... On start up, he just gets the grey screen and the X sign. He is running X.4 (Tiger). The machine is just out of warranty time.
    This problem just started. I told him to start up holding down the shift key to get into safe mode. When he holds down the shift key it just starts up and hangs at the grey screen with the X on it. It doesn't go further. Because he lives far away (from college) I am planning to bring my son's i-book disks to the college. My son has an i-book with Tiger.
    Will this allow him to get to the utilities and check things from there?
    As I stated I am a 9 user so I can't help too much.
    Could someone give us step by step instructions or a link to an article that will help us.
    He has disconnected all periphs and plugged into an outlet.
    I am floundering and would like to help him. Any ideas would be greatly appreciated..........mGb...........Jim (dad)
    I also posted in Powe books in the hopes that someone can help me.

    Hello Allan,
    First of all...cool last name (hahahah)
    Now for te serious stuff. Thanks for the help.
    My son's mother drove to campus and bought the discs for his computer. The computer will start from disk and we get to utilities, first aid. Then we tried to repair. It started the process and after several minutes we got an error message that stated could not complete because of an error.
    Next he ws thinking of re-installing even though this was not a great option. As it turns out.... The original install disc can't see the HD as a destination to install to.
    He took the computer to an apple store and talked to the "Mac genius bar" Ithink that is what it is called. They told him to try running "Warrior" and see if that can fix things. He is a college kid and I don't know if he can come up with the $$ for Warrior.
    What is troubling is that this problem seems to be the direct result of Downloading an update for Quick Time. He did this last night and today the computer wouldn't start.???
    I thank you for the links adn will read them carefully now that I am back home. Another odd thinng...I couldn't get the computer to boot in "Safe Mode or the other "fsq?? or whatever that is. I tried holding down apple + S...while booting, but it just starts up to the grey screen and stops. No unix commands show. I am over my head but was trying to help him out. I will post with any progress...Thanks again for the help....mGb.....Jim Sampson
    Allan, the error message was:
    Catalog file entry not found for extent
    Volume check failed.
    The underlying task reported failure on exit.
    Just though this might help. Jim

  • Dagii PKGBUILD, I need help again... :), problem with libpng

    I'm stumped on what to do to get this to compile. It seems to compile without issue on Gentoo; I didn't see any patches in the ebuild. I receive this error when trying to compile Dagii:
    make[1]: *** No rule to make target `/sw/include/libpng12/png.h', needed by `sshot.o'. Stop.
    make[1]: Leaving directory `/home/arcade/pkgs/dagii/src/dagii-0.4/src'
    make: *** [all] Error 2
    Immediately I see it pointing to /sw/include/libpng12/png.h which is weird. The makefile has the include path as /usr/include/libpng12, so I don't know where this other path is coming from.
    Here's the PKGBUILD, it's an easy one:
    # Contributor: robb_force <[email protected]>
    pkgname=dagii
    pkgver=0.4
    pkgrel=1
    pkgdesc="Dave's AGI Interpreter is a re-implementation of Sierra's Adventure Game Interpreter that allows you to play games such as King's Quest and Space Quest."
    url="http://www.dagii.org/"
    license="GPL"
    arch=('i686')
    depends=('sdl>=1.2.9' 'libpng>=1.2.8')
    makedepends=('zlib')
    source=(http://www.dagii.org/dist/${pkgname}-${pkgver}.tar.gz)
    build() {
    cd ${startdir}/src/${pkgname}-${pkgver}
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=${startdir}/pkg install
    Has anyone seen this error before?
    Last edited by robb_force (2007-05-18 19:11:59)

    Put this after your configure line, before make.
    sed -i -e 's|/sw/|/usr/|g' src/depend.1
    This will fix your issue but you'll run into another one.
    Last edited by tardo (2007-05-26 17:51:03)

  • SQL query....need help again

    Actor (Aname: varchar(40), Ano: varchar(6)) Ano is pk
    Movie (Mname: varchar(40),mno: varchar(8)) Mno is pk
    PlayIn (Ano, Mno, Pay: Integer) Ano and Mno are fk referencing Acotr and Movie respectively.
    Actor(Aname, Ano)
    A Bingo, A1
    B Castro, A2
    C Katie, A3
    S Hommy, A4
    J Tammy, A5
    K loren, A6
    Movie(Mname, Mno)
    Gladiator, M1
    Cast, M2
    Dog, M3
    Jilters, M4
    PlayIn(Ano,Mno,Pay)
    A1 M1 800
    A1 M2 1500
    A2 M2 78
    A2 M3 1750
    A2 M4 2301
    A3 M2 904
    A3 M3 629
    A4 M2 565
    A4 M3 5695
    A4 M4 1255
    A5 M1 989
    A5 M4 238
    A6 M2 137
    A6 M3 236
    A6 M4 545
    write a query for this QUESTION:
    for each movie, list the movie number, the average pay and the total number of actors in the movie.....

    hi - didn't you read my response to your other nearly identical thread?
    SQL query...pls help ASAP
    may I suggest you get a basic book on oracle SQL and immerse yourself for a few hours before comming to this forum for answers to your homework questions?

  • Installation failed! Need help AGAIN!

    Yesterday I've writed "I've tried to install the CD on my PC. As soon as it started the message UseDLL failed. Couldn't load .DLL file appears. After that, the installation is over. What shouldo i do?
    Thanks." Mr. james Derk said the problem was probably a virus. I've followed all the tips that James gave me, but the problem is still here. The message of error sais the problem is number 0x80040702 failed loading dll: ipodFormatSupport;
    What can i do now?
    Thanks

    hi Marcelo!
    a
    b pattern
    is developing ... it's not just Portugese speakers who get this error, it's Portugese speakers who have bought a
    b mini
    and use the Portugese version of the software that came on the CD ...
    I have already installed the free download for I-tunes with Quick Time, is this one?
    yes, the installers that you can download for free from the Apple web site should allow you to install without getting this error.
    good luck! let us know how things turn out.
    love, b

  • When i type in my correct password on the login screen and press enter it just goes to a blue screen for a few seconds then goes back to the same login screen again, please i need help?

    When i type in my correct password on the login screen and press enter it just goes to a blue screen for a few seconds then goes back to the same login screen again, please i need help?

    You can take some of the steps here, #4, #5 or even trying a #18
    Step by Step to fix your Mac
    but I suspect your going to first have to create a data recovery drive
    Create a data recovery, undelete boot drive
    to get your data off the machine,
    then do a #20 to eliminate the bad sectors as that's why your getting the "pinwheel" it's getting a delay reading from the drive, right when your trying to log in too, what a bad spot for it to happen.
    Step by Step to fix your Mac

  • TS2755 Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help of how to set up messages on each

    Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help on how to set up messages on each device separately and to start using messages app on each device independently. Thanks

    search google for "iphone remove picture from contact"

  • HT4061 need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that
    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    If the iPhone was hacked and unlocked via unofficial means, it has become locked again. Insert original SIM in the phone to activate with iTunes.

  • HT203167 I look at my history of purchases including my songs and ringtones from iTunes. They are all there but my ringtones say I have to purchase them again in order to put them on my new iPhone that I just purchased from Rogers. I need help getting my

    I'm trying to get my ringtones that i purchased on my old iPhone onto my new one that I just got. They r in my history and when I click on them it says you have already purchased them, would you like to buy them again in order to download them. I did it with one already and I now need help so I don't have to buy them again. Can u help get them back please

    Ringtones are currently a one-time only download from the store. If you don't have them on your computer nor on a backup then you can try contacting iTunes support and see if they will grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009". and after they said "we could not complete your request. There was an error in the App Store. Please try again later (nul

    i need help, i can't download free applications in App store. they answer me "your request cannot be processed Error code:1009".
    and after they said "we could not complete your request. There was an error in the App Store. Please try again later (null)".
    COMPUTER DETAILS: MacBook Pro 13-inch, Mid 2012 OS X Version 10.9.5; Processor 2,5GHz Intel Core i5; Memory 4 Go 1600 MHz DDR3.
    Thanks beforehand!!!

    Error
    what is error code 1009?

  • I need help!!! Did my iOS 6 update today, thought it was fine!! Then my friend text me and instead of saying Siobhain it says voicemail text message!! I've tried deleting her and adding her again, turning phone off etc etc!! Please help!!

    I need help!!! Did my iOS 6 update today, thought it was fine!! Then my friend text me and instead of saying Siobhain it says voicemail text message!! I've tried deleting her and adding her again, turning phone off etc etc!! Please help!!

    I know of no way to remove encryption on iTunes backups if you've forgotton the password.  If you've used the 4 digit PIN code to lock your iPhone in the past that can sometimes default as your "password" for this encryption in iTunes.  Try that PIN or any PIN you've used in the past.  If you don't use a lock maybe you played around with that feature once when you first got your phone....try "1,2,3,4" or anything you could have possibly tried.
    As far as accessing older unencrypted backups you can try this software.  I do not have any experience using it but it seems like it's what you need and is probably the easiest route for both voicemail and texts:
    http://deciphertools.com/products.html
    If you want to try to find voicemails using Terminal, I found this link as well:
    http://mikereys.wordpress.com/2011/10/18/iphone-backup-restoring-visual-voice-ma il/
    I know with AT&T, voicemails are only stored on their servers for 30 days so any voicemail older than that you would not have been able to access again.
    Best of luck.

Maybe you are looking for

  • Checking texts with multiple phones on an account

    I'm on my wifes account and was wondering how I can login to verizon and check my texts?  It will only show the texts from the primary number on the account.

  • Should I add more memory when I update my iMac from 10.4.11 to Snow Leopard?

    Should I add more memory when I updaate my iMac from 10.4.11 to Snow Leopard?

  • BADI for COR1 transaction(Process orders)

    HI All, My requirement is to create a idoc  for the process order which is released from COR1.(idoc part is completed) Can any one suggest me a badi which will triger while releasing the process order from COR1 (not cor5), i worked with workorder_upd

  • Response came back as text, not xml..

    Hi I've been creating a report in Answers and have created alot of bins. Up until now I've had no problem but when I try to add a new bin once I've put the operator and values in I get a red text error saying 'response came back as text, not xml'. Ca

  • IPhoto won't open at all! Help!

    I wonder if this has anything to do with the latest OSX and QT updates? I don't know, but the thing is iPhoto all of a sudden won't open at all. The icon bounces only once and then nothing happens, HELP PANIC! Very gratefull for any ideas, Magnus