Question about scrolling through clip images

This may be an iMovie and iDVD question, or more of an iMovie.
In the scene menu, when I'm making menu buttons and want to use a clip 'photo' rather than a motion clip, I know I uncheck the movie box, and move the cursor to get the picture. That said, it seems there are at least several seconds between these clips, and I can never stop on or find the exact image I want for the chapter. This seems to be the case in iMovie, too, when I'm bookmarking chapters.
Is there a way to fine-tune the scroll so I can see move seens rather than having the gaps? I've looked all over the place for a way to do this, so sorry if it is something obvious that I missed.
This is a great forum, and a huge help for a very recent PC to Mac convert.

Thanks for your reply. I'll try to explain it better. I have a long, vertically scrolling movie clip. This movie clip contains lots of thumbnails. When I click a thumbnail, the full sized image is loaded from the library and displayed within the same movie clip. when I click the full size movie clip, it disappears again, and I can click another thumbnail to display another full size image. So I'm not just adding more and more stuff to the gallery if that's what you were thinking. I'm just clicking thumbnails to display the full size image so I can look at it, closing it, and moving on.
But the full sized image is fixed at the very top of the scrolling movie clip, so if I click a thumbnail at the very bottom, I have to scroll all the way back up to the top to see the full size image. I just want the full size image to appear on screen no matter how far down I have scrolled to click a thumbnail.
I made my basic gallery useing this tutorial:
http://flashexplained.com/actionscript/making-the-ultimate-dynamic-image-gallery-in-flash- 8/
if you want to take a look at that, to get an idea of what I'm talking about.
Now I'm just trying to add some scrolling functionality, which wasn't included, but I don't really understand actionscript well enough to do this easily on my own.
Sorry for the long reply. I hope this is clearer.

Similar Messages

  • Questions about editing video clips, images and text

    I'm using the Expert mode and I'm having trouble with figuring out how to do certain things.
    1. I'm superimposing a picture of a scoreboard on my video and then I superimpose a text object on top of that so I can update the scores throughout the video.  I've placed on instance of the text object on my "Video 3" and now I want to change the score.  So I created another instance on the same "Video 3" timeline.  Now I want to close the gap between the two instances.  I would expect to be able to click on the gap in between and delete it but nothing happens.  I would also expect to be able to double click on the instance to access the specific start and end times that I see when I hover over it.  But again nothing happens.  So I've been magnifying the timeline so I can manually drag the two instances together.  Is there an easier and more precise way to close the gap?
    2. Is there an easier way to periodically change a text object without creating a bunch of instances?  My "project assets" folder is getting filled up quickly because the score is constantly getting updated and I keep creating a new instance for each score change.
    3. Is there a way to permanently combine two seperate video clips?  I've used the "group" option but there is still a divider that reminds me that the two were seperate.  I'd like to be able to combine the two and for it to look as if it was always just one large clip.
    4. When I use the scissors to cut a section out of the middle of a clip, the blue marker that shows where I am currently in the video stays in place.  So each time I cut out a section, I have to manually drag the blue marker over to the new beginning that was at the end of all the stuff I just cut.  Is there a preference to have the blue marker stay with you when you edit instead of it suddenly being far ahead of you in the editing process?
    Thanks!

    Other than doing Duplicates of your Title, and editing those, as needed, the only other option would be to create the Titles in another program, such as Photoshop, then Save those as PSD's, to be Imported into PrE. The one downside of doing that, is that to edit those PSD "titles" is to Open them in Photoshop - the PrE Titler will not open them for the additional editing.
    PrE does not have as much power to organize Assets, such as Titles, as does Premiere Pro, with both Bins and Folders (later versions). I always create a Bin, for my Titles, or even several Bins, for different types of Titles in the Project.
    Maybe others will have a workflow, that I have not considered, so we both might learn something.
    Good luck,
    Hunt

  • Question about scrolling and Movie Clips Loaded from the Library

    I hope I am posting this in the right forum.
    Ok, I'm using actionscript 2.0, and I am trying to make a scrolling image gallery. I have a movie clip with three layers. the first contains a movie clip used as a scroll bar. The second is a mask used to hide the overflow content, and the third contains movie clip thumbnails. when I click one of the thumbnails, it loads a symbol containing a larger version of the picture over top of the thumbnails on the same layer. My problem is, the large image is added at the very top of the movie clip, even when it is scrolled out of sight. I want it to appear in sight, so the user doesn't have to scroll all the way back up to the top to see it. This is annoying and confusing. Is there a way to do this?
    Here is the code I used to create the scroll effect (there is actually a whole lot more to the code but it is very long, so I am not adding it now. I will if it is needed though) 
    (Oh, and there is no text involved in this. I just got this code off a tutorial and I haven't changed the variable names yet)
        var scrollUpper:Number = 58;
        var scrollLower:Number = 309;
        var textLower:Number = 60;
        var textUpper:Number = -179;
        var scrollRange:Number = scrollLower - scrollUpper;
        var textRange:Number = textLower - textUpper;
        var startY:Number = imagesHolder_mc.thumbs_mc._y;
        function scroll(){
           var moved:Number = imagesHolder_mc.scroller_mc._y - scrollUpper;
           var pctMoved:Number = moved/scrollRange;
           var textMove:Number = pctMoved*textRange;
           imagesHolder_mc.thumbs_mc._y = textLower - textMove;
        imagesHolder_mc.scroller_mc.onPress = function(){
           this.startDrag(false,this._x,scrollUpper,this._x,scrollLower);
           this.onMouseMove = scroll;
        imagesHolder_mc.scroller_mc.onRelease = scroller_mc.onReleaseOutside = function(){
           this.stopDrag();
           this.onMouseMove = null}

    Thanks for your reply. I'll try to explain it better. I have a long, vertically scrolling movie clip. This movie clip contains lots of thumbnails. When I click a thumbnail, the full sized image is loaded from the library and displayed within the same movie clip. when I click the full size movie clip, it disappears again, and I can click another thumbnail to display another full size image. So I'm not just adding more and more stuff to the gallery if that's what you were thinking. I'm just clicking thumbnails to display the full size image so I can look at it, closing it, and moving on.
    But the full sized image is fixed at the very top of the scrolling movie clip, so if I click a thumbnail at the very bottom, I have to scroll all the way back up to the top to see the full size image. I just want the full size image to appear on screen no matter how far down I have scrolled to click a thumbnail.
    I made my basic gallery useing this tutorial:
    http://flashexplained.com/actionscript/making-the-ultimate-dynamic-image-gallery-in-flash- 8/
    if you want to take a look at that, to get an idea of what I'm talking about.
    Now I'm just trying to add some scrolling functionality, which wasn't included, but I don't really understand actionscript well enough to do this easily on my own.
    Sorry for the long reply. I hope this is clearer.

  • Bug: Scrolling through large image in email

    It is not possible to scroll through a large image in an email. One can only either go excruiciatingly slowly, or the view just flies at full speed from one side of the image to the other, with no way to view parts of the image that are not on the edges.

    I preview throught XML publisher client on XP.
    version is;
    xmlp core 5.5.
    xdo xml parser 10.1.0.3.0
    wondering is there any newer version than this available to download?
    thanks for your kindly help

  • A few questions about Canvas and other Image related stuff.

    I am just starting to play around with Canvas in the hopes of using it to make a little game (not an applet) in my spare time. I have gotten a ball to bounce around the screen and switch colors when it bounces without too much work. (hooray for me!).
    I was wondering:
    1) If you always have to repaint the whole area of the canvas, or can you repaint sections of the screen?
    2) Can there only be one canvas per frame, or if you can have more, like say, one for each sprite (I tried in my own simplistic way but the second canvas overrode the first when I added it to the frame) or do you have to lay out all the sprites in one canvas every time before you paint?
    3) Is Canvas the best platform for rendering my animations and doing collision detection, or are other ways of presenting the images better? By better I mean lower usage of resources, higher speed, accessibility of events that occur. (I have read in the mindprod java glossary "[Canvas] receives all the raw mousing events. Panels, in contrast, see only a few.")
    4) In a call to paint which tells it to display some images which are much larger than the frame the canvas is in, is time and effort spent working on those pixels that aren't displayed or does it take about the same amount of resources as for images that fit in the frame since the same amount of picture is actually displayed?
    5) Is there any convenient way to layers with canvas besides just controlling the order in which the images are painted. (I will admit I haven't searched for this information yet, because I just thought about it.)
    6) Is there any other information you guys would care to bestow on me?
    If any of this question is ridiculous, obvious, ignorant or any other negative adjective, then I apologize. I will continue messing around in the meantime.
    Thanks
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Okay, well I got it to work by drawing them both to the same canvas. duh I guess.
    Can you have more than one canvas in a frame? How do you set the size if so.
    How do I implement the z-order? I thought of doing it manually by sending the paint method a list of objects to paint and manually managing the order of that list. Would that be an acceptable way to do it?
    Should I only be trying to paint to one canvas? What I would like to do is have several canvases with transparent backgrounds so that I can draw different layers in the same frame. That way flying stuff would be painted on a different canvas than stuff on the ground, and then putting it all in a frame would tie the pictures together into a scene. Kind of like how they do distance in animation by having different layers of drawings on clear plastic that they can move at different speeds to give the illusion of depth.
    Any advise? Sorry for the douba-post
    Thanks
    --John                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Question About Inactive Clients / Re-Imaged Clients

    Hopefully a quick question...  We have client push installation enabled site-wide in our SCCM 2012 implementation.  What is expected behavior if a workstation is rebuilt on the same hardware with the same name and the same AD computer account is
    reused?  
    So, for example, one of my coworkers asked me about his workstation.  He reinstalled Windows on it recently but the SCCM client hasn't installed since he rebuilt.  SCCM shows the client (the one tied to his old SMS GUID I imagine) as inactive.
    There is no ccmsetup folder in c:\windows on his newly built workstation - I can't find any evidence that the client attempted to install.  I confirmed that the OU where his computer account is located does fall under the OU structure configured in Active
    Directory System Discovery.  He said that when he joined it to the domain he was prompted (as expected I believe) that there was already a computer account with the same name and asked if he wanted to use the existing account, which he did.  
    I'd just like to know what behavior should be expected in this scenario.  I haven't checked yet but, given how frequently systems get re-imaged in our environment, unless this is abnormal behavior and an isolated instance, I may find I have quite a
    few clients that no longer have SCCM installed due to having been re-imaged.

    Hi,
    The installed flag prevents Configuration Manager from reinstalling the client when automatic site-wide client push installation is enabled. 
    Delete aged discovery data
    deletes inactive client records from the site database.
    I think the newly built workstation should be assigned a new GUID.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Question about scrolling map

    i want to start some sort of game in java... and the only thing i really dont understand is graphics, so i figure i'd ask a question and maybe someone could point me in the right direction. i tried looking stuff up on google, but nothing that was revliant (sp) was returned.
    basically, im trying toget some sort of moving map going on. ie, those games that has a big map, and as u move the map changes scenes (think grand thieft auto 1 and 2)
    thanks

    Just reply if I spoke like you were better than you are at programming ;)
    That's a though point for a beginner! I will not publish any code because it's too long but if you want some I'll send it to you via mail. The basic point is to build a map with square tiles ( I suppose you're able of doing sprites? If not, you should concentrate on sprites first ) that build a grid. First make a code that scrolls the map when hitting the arrows. I use an 2D array of ints that represent the tiles. e.g.:
    int[][] tile=new int{
    {0,1,2,3},
    {0,1,2,3},
    {0,1,2,3}
    this code may be wrong, just correct it ;)
    then when the image has to be drawn, make a double for statement that draws tiles from the scrolling position where the player is to the limit of the screen. e.g.:
    for(n=posX; n<posX+4; n++){
    for(i=posY; i<posY+4; i++){
    // draw tile[n] at n*100 by i*100
    this code assumes you have 100x100 tiles that must fill a viewport smaller than 400x400. Then you will be able to add code that will enable smoother scrolling.
    Just reply if I spoke like you were better than you are at programming ;)

  • Fundamental Question about Lightroom and saving images

    I have to laugh as I get ready to pose this question because I've been working with the program for two weeks with Scott Kelby's book and with Lynda.com, and I'm still profoundly confused about what is happening to the photo. To wit: I open a camera raw file in lightroom and start playing with it, even taking snapshots at various stages along the way. If I don't export the photo to Photoshop and save it there, what becomes of these changes? Do they stay with the photo always? Do they disappear when I shut down the program? There's no SAVE button with Lightroom which just plain flummoxes me! Can anyone 'splain this to me, please? Thanks.

    To clarify. Nothing happens to your originals. Lightroom stores the edits in a database (and if you wish alongside the original in a xmp sidecar file) as a set of instructions that the program uses to recreate the end product by following the instructions. These instructions are changed in the database while you're changing parameter values in Lightroom, so there is no need to save. Also, Lightroom stores a history of changes you did, so you can always go back. Both Lightroom and Adobe's camera raw plugin for photoshop can be used to follow the set if instructions. This way, you always get the highest fidelity image and you can always go back to your development choices without loosing any quality or having to dig up backups. Because of this, you can create multiple virtual copies with different development approaches without having to make a copy of the original and therefore saving you gobs and gobs of disk space. When you need a file for consumption such as a jpeg for a web page, simply export a copy, which burns in your development changes in a developed copy (just like printing a negative would have in the olden days) and trash the copy when you're done with it. You can always recreate it very quickly. This is a radically different approach than you're probably used to.

  • Question about loading and using Images.

    I know how to load an image and to draw it onto a canvas etc etc. However my question is to do with the efficiency of loading multiple images (possibly the same image!) and using them together. I have multiple objects, all instances of the same class, which all draw themselves onto a screen in different positions. However they all use the same 3 images (depending on an internal state).
    So if I create 5 of these objects and each object calls to load the same image using something along the lines of:
    url = this.getClass().getResource("MyImage.png");
    normalImage = Toolkit.getDefaultToolkit().getImage(url);Does this mean that in the memory there are 5 exactly the same copies of this image? Or does java do something clever and use one image that they would all reference? I suspect I will have 5 in memory but I wanted to ask about this before going and making an imageManager class where I load all the images and just use getMethods in that when drawing. I will not be preforming any transforms or anything on any of the images so they can all literally be the same image but simply drawn in multiple positions on the one canvas.
    (note: I am using active rendering to draw these images myself and then blit it to the screen ...).

    Use ImageIO rather than Toolkit--with Toolkit you need to use a MediaTracker to ensure you have your image loaded before you try to use it.
    If you load an image and then do this:
    MyImage1 = MyImage;
    MyImage2 = MyImage;
    MyImage3 = MyImage;
    There are 4 references to the Image in MyImage. If you don't specifically use a method that gives you a new Image, usually, you are getting a refrence to an image already loaded in memory.

  • Question About Edit of Raw Images

    I'm contemplating upgrading to iPhoto 08. It's nice that iPhoto can import raw camera images, but I am trying to understand what it does with them. When you import a raw camera image into iPhoto is it right away converted into some other format? If it's kept in raw format and you edit it, are the edits done on the raw image or some converted format?
    I guess what I am getting at is that if there is a conversion to 8-bit grey level images when editing, then the advantage of shooting raw, which could be 12-bit, is lost. If there is a conversion to, say, a 16-bit TIFF, that would be okay.
    Unrelated question: How the heck do you do a search just in this forum? The search box at the top right seems to be searching the whole Apple web site.
    Thanks.

    When iPhoto imports a RAW file it creates a jpg version of it for viewing and editing my iPhoto. Once a modified version is created, the RAW import or first edit of a jpg, further edits are written to an xml file and applied by iPhoto. So you're always one jpg edit away from the original.
    As I understand it if you shoot B/W RAW you will get a color jpg version as the RAW contains ALL of the data, including color. The jpg that iPhoto creates is 8 bits per channel.
    Now you can set iPhoto to edit the RAW file if you use an external editor like PS or PSE. When you do that a new file has to be created and saved to the desktop and imported as a new file. That the nature of RAW editing and iPhoto.
    The current search function has been discontinued temporarily.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Quick question about scrolling text....

    Doing quick credits (scrolling). Trying to figure out how to get the (last line of the) text to stop in the middle of the screen, so I can then do a fade....
    I'm sure it's easy, and will keep plugging away here, but if anyone can quickly fire off a note, I'd be grateful...thanks!
    (tried to create a Freeze Frame on this, but it appears it does not recognize Scrolling Text as a clip it can extract from - eg. the freeze frame is just blank.)
    (also can't seem to do a ramp up/down or a Time Remap, etc.)

    I've found the easiest way to do this is to create the text in Photoshop. Start a new PS document ... say 720 x 3000 and create or paste your text. If the document is too long, you can crop off the unneeded part when you're finished with the text.
    Import the PS file into FCP and use the Centering controls to animate it as needed. Use the smooth or Ease In/Ease Out command on the ending keyframe so the stop isn't too abrupt.
    -DH

  • Question about downloading and editing images from sd card

    I know you can use an sd card connector kit to download images to the newè iPads. A few questions:
    My sd card has both a raw and jpeg version of each image, but I only want to download the jpegs. Since I believe the iOS doesn't show file extensions, how can I identify just the jpeg images?
    Once on the ipad, where are the photos placed?
    Can you create separate folders and place certain images in them?
    And if you edit an image and save it as a different file, can I place it in a folder I've created?

    This is an iPad question and should be posted in the iPad discussion which is located here:
    iPad discussions

  • Question about adding tags to images and music

    Hi I have an artist page online and I have read that adding meta tags to your page does absolutely nothing to help search engines these days and then someone recommended adding tags to the images on my site using aperture (which I cant afford) so can anyone explain if I can do this in iphoto or photoshop? and also can I add tags to the mp3's available on my site to better perform in search engine searches? can i do this with itunes?
    Thanks in advance

    The search engines have to be lead to your music/photo page using an appropriate URL and having a text description with as many relevant "key" words as possible.
    Also, you need as many links to this page as possible from other sites as well as your own pages.
    When I enter one of my own song titles and name into Google, all the top listed links are sites that sell digital downloads and CDs. Have a look at the way these sites list your music to see the most effective way of doing it on your own website.
    Obviously, you first have to add your URL to Google, Yahoo etc and get them to verify your sitemap.

  • Question about aspect ratio/resizing images

    hi. i am currently working on a video project for a class, creating a presentation with iMovie and iPhoto. I simply need to display a logo, however, when i import it into iMovie from iPhoto, the picture is wide and pixelated, of low quality. when i change the aspect ratio to 16:9, the image is too large to fit. however, i cannot resize it via iPhoto to fit within the 16:9 ratio. i'm simply trying to get an individual photo from iPhoto to fit within a frame in iMovie. is there a quick way of converting it to fit or resizing it within iMovie?

    hi. i am currently working on a video project for a class, creating a presentation with iMovie and iPhoto. I simply need to display a logo, however, when i import it into iMovie from iPhoto, the picture is wide and pixelated, of low quality. when i change the aspect ratio to 16:9, the image is too large to fit. however, i cannot resize it via iPhoto to fit within the 16:9 ratio. i'm simply trying to get an individual photo from iPhoto to fit within a frame in iMovie. is there a quick way of converting it to fit or resizing it within iMovie?

  • General questions about graphics(resolution, colors, Images)

    1. Is it possible in java to change the screen resolution with some method?
    2. Is it possible to change color mode(16bit, 32bit) with some method in java, and if so is there a point in doing so?
    3. If you make an application with a "background" with an Image or BufferedImage on a canvas and want to plot moving things(other images) on it without painting over the background.
    Can this be solved without recreating the Image say 30-40 times a second(for every frame that is) which is bad for memory consumtion?
    4. If it isn't possible, how should I give back the memory fast enough or is the garbage collector capable of fix it with say hundreds of Mb's of Images in just a second?

    Another thing that I don't understand is a tutorial on the following url:
    java.sun.com/docs/books/tutorial/2d/images/doublebuffering.html
    They use the following code to create a Buffered Image in an Applet
    bi = (BufferedImage)createImage(w, h);
    However, I tried typecasting with (BufferedImage) in my own swing-code below and got a runtime exception(java.lang.ClassCastException)
    bi = Toolkit.getDefaultToolkit().createImage("miniferrari.jpg");
    Why?

Maybe you are looking for

  • Lion Finder active window display problem

    I'm running 10.7.3 on my MB Pro.  I have all the latest-and-greatest updates.  However, this quirk only started to appear with Lion and has appeared in all versions to date.  I'm wondering if I'm the only one who has this problem. Here it is:  Whiche

  • Multiple Recipients

    Hi, How do i setup a Multiple Recipients Alias? For example I want any emails going to design@ to go to [email protected], [email protected] and [email protected] I looked at setting up a mailing list but it asks for the user to be subscribed to post

  • InputStream from String via StringReader ?

    Hello, i d like to know how to create an InputStream from a String via StringReader ? Thanks

  • Automated Screen Grabs in Premiere and Media Encoder

    I need to make screen grabs from a premiere pro movie that I am editing.  I was able to set up a preset in media encoder that will give me the format of images that I need.  What I can't figure out how to do is how to get media encoder to give me a c

  • Oracle JInitiator for 64-Bit OS

    Hello, I am trying to Install Oracle Jinitiator on Windows XP 64-bit. It gives me the following error. Program Cannot Start or Run The program or feature "\??\D:\DOCUME~1\ADMIN~1\LOCALS~1\TEMP\~EXB0000\DISK1\SETUP.EXE" cannot start or run due to inco