How to resize a project in a browser

Hi,
Every time I try to preview my project in a browser, it appears to the left to the screen. How can I resize to display my project on the entire screen?
Thanks
Julie

Hi Julie please view this video (7 mins) to get you started.
Darrell

Similar Messages

  • How to resize project without losing the image resolution?

    I am trying to resize a project that recorded in 1271 x 768
    px to 800 x 483 px. I did it by clicked 'Project' > 'Resize
    Project...'. But after resize, the resolution of the movie is not
    clear, became blur. How to resize the project so that I'll have
    clearer movie? Thanks.

    Hi obtis and welcome to our community
    Unfortunately, there is little you may do to avoid this. The
    best way to avoid it is to simply record initially at the size you
    need so you don't have to use the Resize function.
    Here's the deal. Captivate stores images in the project as
    bitmapped images. Otherwise known as "raster" images. Basically
    they are a mosaic that comprises the picture. Initially, all is
    well and is crystal clear. But when you scale down a raster or
    bitmapped image, you are simply moving all the picture elements
    (PixEls) closer together. They overlap and the computer will
    calculate new values for what color they should be. Depending on
    how much you are resizing, the clarity drop can be acceptable or
    horribly bad. The more you resize smaller the worse it gets.
    Hopefully this helps... Rick

  • Resizing Captivate Project

    Hello.
    I know how to resize a project.
    I have recorded at 1024x768 and add 20 or so lines to the
    height so the play bar can ride under the output.
    I cannot figure out the best way to to resize down, say to
    900x700. I resize and have to do alot of work. Even with Rescale
    captions check, the buttons and other objects to not change
    accordingly.
    I cannot record in the 800x600 mode because too much
    information is lost.
    I want to resize down so the generated output plays within
    the screen so you can see the skin play bar.
    Does Captivate 3 address this?
    Is there a better way to acomplish?

    I haven't played around too much with rescaling, but I have
    two suggestions to try:
    1. When rescaling, try to use the same aspect ratio - or as
    close to the same as you can. E.g., going from 1024x788 (adding
    your "20 or so lines for height") to 900x700, might be causing
    issues. I don't know this for a fact, but it sure can't hurt things
    if you use the exact same ratio - in this case going to 900x693 or
    thereabouts, depending upon your original resolution.
    2. When I've captured something that I want to scale down,
    like software demos that I've captured in higher resolution to get
    the whole page, I then scale them down as an imported animation in
    a separate project. I just be sure to use the same proportions for
    this scaling as described in #1 above to make sure that it looks
    the same.
    As for your question about the playbar - have you tried
    inserting a border in your project? Or playing with the different
    types of skins (i.e. the older bitmap skins vs. the newer ones)? I
    seem to recall reading somewhere on these forums that one of those
    options may change where the playbar sits - no time to look now -
    but you might search using those keywords.
    Good luck,
    David

  • Hi all, my first time on.  I shared my imovie project to Media Browser.  Fine.  Then after it downloaded it 'disappeared.'  Where did it go?  Having found it, how do I then share it with idvd?  I am told the image quality will be much better this route.

    Hi all, my first time on.  I shared my imovie project to Media Browser.  Fine.  Then after it downloaded it 'disappeared.'  Where did it go?  Having found it, how do I then share it with idvd?  I am told the image quality will be much better this route.

    Hi
    I do
    • In iMovie - select a project
    • Share to Media Browser and as Large (not HD or other res.)
    • Close iMovie
    • Open iDVD and select to start a New iDVD Project
    • Import movie - from Media button - down to the right - and here from Movies
    Yours Bengt W

  • How to resize a photo from CameraUI?

    Hi there,
    i really need som help here. I cant seem understand how to resize an still image taken with the camera. Here are the code so far(also with the upload part). I just need a thumbnail to be uploaded to the server, not the HQ-image. Any ideas?
              Simple AIR for iOS Package for selecting a cameraroll photo or taking a photo and processing it.
              Copyright 2012 FIZIX Digital Agency
              http://www.fizixstudios.com
              For more information see the tutorial at:
              http://www.fizixstudios.com/labs/do/view/id/air-ios-camera-and-uploading-photos
              Notes:
              This is a barebones script and is as generic as possible. The upload process is very basic,
              the tutorial linked above gives information on how to post the image along with data to
              your PHP script.
              The PHP script will collect as $_FILES['Filedata'];
              import flash.display.MovieClip;
              import flash.events.MouseEvent;
              import flash.events.TouchEvent;
              import flash.ui.Multitouch;
        import flash.ui.MultitouchInputMode;
              import flash.media.Camera;
              import flash.media.CameraUI;
              import flash.media.CameraRoll;
              import flash.media.MediaPromise;
        import flash.media.MediaType;
              import flash.events.MediaEvent;
              import flash.events.Event;
              import flash.events.ErrorEvent;
              import flash.utils.IDataInput;
              import flash.events.IEventDispatcher;
              import flash.events.IOErrorEvent;
              import flash.utils.ByteArray;
              import flash.filesystem.File;
              import flash.filesystem.FileMode;
              import flash.filesystem.FileStream;
              import flash.errors.EOFError;
              import flash.net.URLRequest;
              import flash.net.URLVariables;
              import flash.net.URLRequestMethod;
                        // Define properties
                        var cameraRoll:CameraRoll = new CameraRoll();                                        // For Camera Roll
                        var cameraUI:CameraUI = new CameraUI();                                                            // For Taking a Photo
                        var dataSource:IDataInput;                                                                                          // Data Source
                        var tempDir;                                                                                                                        // Our temporary directory
                        CameraTest() ;
                        function CameraTest()
                                  Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
                                  // Start the home screen
                                  startHomeScreen();
                        // =================================================================================
                        // startHomeScreen
                        // =================================================================================
                        function startHomeScreen()
                                  trace("Main Screen Initialized");
                                  // Add main screen event listeners
                                  if(Multitouch.supportsGestureEvents)
                                            mainScreen.startCamera.addEventListener(TouchEvent.TOUCH_TAP, initCamera);
                                            mainScreen.startCameraRoll.addEventListener(TouchEvent.TOUCH_TAP, initCameraRoll);
                                  else
                                            mainScreen.startCamera.addEventListener(MouseEvent.CLICK, initCamera);
                                            mainScreen.startCameraRoll.addEventListener(MouseEvent.CLICK, initCameraRoll);
                        // =================================================================================
                        // initCamera
                        // =================================================================================
                        function initCamera(evt:Event):void
                                  trace("Starting Camera");
                                  if( CameraUI.isSupported )
                                            cameraUI.addEventListener(MediaEvent.COMPLETE, imageSelected);
                                            cameraUI.addEventListener(Event.CANCEL, browseCancelled);
                                            cameraUI.addEventListener(ErrorEvent.ERROR, mediaError);
                                            cameraUI.launch(MediaType.IMAGE);
                                  else
                                            mainScreen.feedbackText.text = "This device does not support Camera functions.";
                        // =================================================================================
                        // initCameraRoll
                        // =================================================================================
                        function initCameraRoll(evt:Event):void
                                  trace("Opening Camera Roll");
                                  if(CameraRoll.supportsBrowseForImage)
                                            mainScreen.feedbackText.text = "Opening Camera Roll.";
                                            // Add event listeners for camera roll events
                                            cameraRoll.addEventListener(MediaEvent.SELECT, imageSelected);
                                            cameraRoll.addEventListener(Event.CANCEL, browseCancelled);
                                            cameraRoll.addEventListener(ErrorEvent.ERROR, mediaError);
                                            // Open up the camera roll
                                            cameraRoll.browseForImage();
                                  else
                                            mainScreen.feedbackText.text = "This device does not support CameraRoll functions.";
                        // =================================================================================
                        // imageSelected
                        // =================================================================================
                        function imageSelected(evt:MediaEvent):void
                                  mainScreen.feedbackText.text = "Image Selected";
                                  // Create a new imagePromise
                                  var imagePromise:MediaPromise = evt.data;
                                  // Open our data source
                                  dataSource = imagePromise.open();
                                  if(imagePromise.isAsync )
                                            mainScreen.feedbackText.text += "Asynchronous Mode Media Promise.";
                                            var eventSource:IEventDispatcher = dataSource as IEventDispatcher;
                                            eventSource.addEventListener( Event.COMPLETE, onMediaLoaded );
                                  else
                                            mainScreen.feedbackText.text += "Synchronous Mode Media Promise.";
                                            readMediaData();
                        // =================================================================================
                        // browseCancelled
                        // =================================================================================
                        function browseCancelled(event:Event):void
                                  mainScreen.feedbackText.text = "Browse CameraRoll Cancelled";
                        // =================================================================================
                        // mediaError
                        // =================================================================================
                        function mediaError(event:Event):void
                                  mainScreen.feedbackText.text = "There was an error";
                        // =================================================================================
                        // onMediaLoaded
                        // =================================================================================
                        function onMediaLoaded( event:Event ):void
                                  mainScreen.feedbackText.text += "Image Loaded.";
                                  readMediaData();
                        // =================================================================================
                        // readMediaData
                        // =================================================================================
                        function readMediaData():void
                                  mainScreen.feedbackText.text += "Reading Image Data.";
                                  var imageBytes:ByteArray = new ByteArray();
                                  dataSource.readBytes( imageBytes );
                                  tempDir = File.createTempDirectory();
                                  // Set the userURL
                                  var serverURL:String = "http://www.hidden_in_this_example.com/upload.php";
                                  // Get the date and create an image name
                                  var now:Date = new Date();
                                  var filename:String = "IMG" + now.fullYear + now.month + now.day + now.hours + now.minutes + now.seconds;
                                  // Create the temp file
                                  var temp:File = tempDir.resolvePath(filename);
                                  // Create a new FileStream
                                  var stream:FileStream = new FileStream();
                                  stream.open(temp, FileMode.WRITE);
                                  stream.writeBytes(imageBytes);
                                  stream.close();
                                  // Add event listeners for progress
                                  temp.addEventListener(Event.COMPLETE, uploadComplete);
                                  temp.addEventListener(IOErrorEvent.IO_ERROR, ioError);
                                  // Try to upload the file
                                  try
                                            mainScreen.feedbackText.text += "Uploading File";
                                            //temp.upload(new URLRequest(serverURL), "Filedata");
                                            // We need to use URLVariables
                                            var params:URLVariables = new URLVariables();
                                            // Set the parameters that we will be posting alongside the image
                                            params.userid = "1234567";
                                            // Create a new URLRequest
                                            var request:URLRequest = new URLRequest(serverURL);
                                            // Set the request method to POST (as opposed to GET)
                                            request.method = URLRequestMethod.POST;
                                            // Put our parameters into request.data
                                            request.data = params;
                                            // Perform the upload
                                            temp.upload(request, "Filedata");
                                  catch( e:Error )
                                            trace(e);
                                            mainScreen.feedbackText.text += "Error Uploading File: " + e;
                                            removeTempDir();
                        // =================================================================================
                        // removeTempDir
                        // =================================================================================
                        function removeTempDir():void
                                  tempDir.deleteDirectory(true);
                                  tempDir = null;
                        // ==================================================================================
                        // uploadComplete()
                        // ==================================================================================
                        function uploadComplete(event:Event):void
                                  mainScreen.feedbackText.text += "Upload Complete";
                        // ==================================================================================
                        // ioError()
                        // ==================================================================================
                        function ioError(event:Event):void
                                  mainScreen.feedbackText.text += "Unable to process photo";

    1. Create a BitmapData of the correct size of the full image
    2. Use BitmapData.setPixels to create pixel data from your byteArray
    3. Make a new Bitmap, Bitmap.bitmapData = BitmapData
    4. Create a matrix with the correct scaling factors for your thumbnail
    5. Create a new BitmapData the size of your thumb
    6. Use BitmapData.draw to draw your image data from the Bitmap to the new BitmapData with the scaling matrix
    7. Use BitmapData.getPixels to create a bytearray from your thumb BitmapData
    8. save it
    You'll have to look up the AS3 reference to see how all these methods work.

  • JavaFX 2.0 : How to make a stage fit into browser view area?

    Invoking a JavaFX 2.0 applet from browser results in white spaces on the right and bottom area of the browser. This happens when the JavaFX stage resolutions is lesser than that of browsing desktop resolution. In a client/server model, usually server components doesn't know about the client resolutions. So how to make a stage fit into browser view area?
    Also I think, setting the primary stage to full screen mode is not what I want to achieve, as this mode overlays the browser window.

    Try typing 100% into the width and height fields. Alternatively, you could use Javascript (no connection to Java in spite of the name) to create an event to resize the applet to the window's size.

  • In the middle of creating a book in aperture I need more photos. How can I add them to the browser at this stage?

    In the middle of creating a book in Aperture I need more photos. How can I add them to the browser at this stage?

    In the middle of creating a book in Aperture I need more photos. How can I add them to the browser at this stage?
    You can add more images to your book, by dragging them from the browser to your book album. Switch to the Library Inspector, select the album or project with the images in the source list, and then drag these images onto the book icon. That will add them to the book album, and then double click the book album again to continue working with the book.
    Regards
    Léonie

  • How to resize multiple images?

    I am newbie to RH and would like to know if there is a method /shortcut by which I can resize multiple images?
    Specifically to my project: I have close to 50 tables containing various images and their descriptions. When I insert these images into RH, the original image size is inserted and these images are of various sizes.
    I know how to resize multiple images in Word but not in RH and hence, reaching to higher powers
    I am using RH 9
    Appreciate all your help!

    Hi There, Well the best option is to resize each image individually but if you feel that you can select all images together and the  resize them all at once I am sure that you would like to give a read to this post from forums which talks about this job
    http://forums.adobe.com/thread/466933

  • Hey guys, so I have a DVD stuck in the CD drive on my mac. It reads it as being in there, but I cannot eject it and it is causing my a lot of issues with my mac. If i try to eject it, Finder acts up and I have issues saving projects or even browsing files

    hey guys, so I have a DVD stuck in the CD drive on my mac. It reads it as being in there, but I cannot eject it and it is causing my a lot of issues with my mac. If i try to eject it, Finder acts up and I have issues saving projects or even browsing files. I feel like it interferes with iPhoto as well because it says it is locked and I have no rights to view it. I wanted to see if anyone else had/s this issue and how you fixed it before lugging it into the apple store and being without a computer for a few weeks...

    A few other suggestions here as well:
    http://osxdaily.com/2009/08/28/eject-a-stuck-disk-from-your-mac-dvd-super-drive/

  • How to combine different projects to create final clip in after effect?

    Hello;
    i am newbie and learning adobe after effects cs6. I have downloaded  different templates from web and edited them according my wish and now i  want to create final movie by combining all the clips.
    Some clips/projects are with different resolution, i have rendered all projects separately and created individual .mov clips.
    Now i want to create final movie by combining all the clips.
    As  i stated above i am completely newbie so please guide me with details, hope you guys wont mind it.
    Iam working with adobe after effects cs6.
    Thanks

    > one last question how to resize the movies?
    There are lots of ways in After Effects to resize things, including using the Scale property that is on every layer or using the Detail-preserving Upscale effect.
    Please, do go through the basic learning materials that I linked to.

  • How to create a project's Menu in PeopleSoft left hand Menu Navigation ?

    Folks,
    Hello. My PeopleSoft project has 3 items (item1, item2 and item3). Each item has 5 components (Component1, Component2, Component3, Component4 and Component5).
    Currently, I can acces each component by type in the URL in Browser as follows:
    http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want my project to appear in the left hand "Menu" navigation after we sign on PeopleSoft. My project Menu will look like a hierarchical tree. When the user click on it, the user can see all the project's items and components and link to a component directly. But I don't understand how to do it.
    Do any folks understand how to create a project's Menu in PeopleSoft left hand Menu navigation ?
    Thanks in advance.
    :

    >
    >
    I have registered each component using Registration Wizard in Application Designer. Since each Menu holds a Component, the Menu is also registered while registering its Component. So far, I can access each component online using the URL: http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want to create a Menu for my project as a hierachical tree ( Project -> Item1 -> Component1, Compoent2, ...),
    and I want the project Menu appears in PeopleSoft left hand Menu navigation so that a user can simply click on it to access a component and don't need to type in the above URL. Please answer me 2 questions:
    First, how to make the project Menu appear in PeopleSoft left hand Menu navigation ? I am still not sure what you are trying to do(It is surprising that you registered the component and still dont have it in the main navigation; did you run the portal security sync process?? ).
    If it is all a matter of having a hierarchical structure, then you can create folders and subfolders and register each item accordingly(into different folders and subfolders as you want)
    Second, if need to register each Menu seperately again, how to do it ?Delete entries for content references that you added earlier while registering(by navigating to portal), as well as the entry from permission lists. After that you should be able to register again.

  • How to display PeopleSoft Project's Components and Pages ?

    Folks,
    I have just set up PIA and Process Scheduler in Windows Server 2003.
    " http://127.0.0.1/psp/ps/?cmd=login " can get to PeopleSoft Login page. After I login using my PeopleSoft Database UserID and Password, the browser displays "http://127.0.0.1/psp/ps/EMPLOYEE/PT_LOCAL/h/?tab=DEFAULT" that is MENU page with Search box. I can open every item in the Menu page.
    But when I try to open my project's component and page, the browser cannot display them. I got the message as follows:
    "http://127.0.0.1/psp/ps/myComponent" display the message: Could not open Registry. Registry Name: myComponent.
    "http://127.0.0.1/psp/ps/myPage" display the message: Could not open Registry. Registry Name: myPage.
    Can any folks tell me how to open myProject's components and pages in Browser so that I can input/retrieve data into/from PeopleSoft Database ?
    Thanks.

    >
    >
    I have registered each component using Registration Wizard in Application Designer. Since each Menu holds a Component, the Menu is also registered while registering its Component. So far, I can access each component online using the URL: http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want to create a Menu for my project as a hierachical tree ( Project -> Item1 -> Component1, Compoent2, ...),
    and I want the project Menu appears in PeopleSoft left hand Menu navigation so that a user can simply click on it to access a component and don't need to type in the above URL. Please answer me 2 questions:
    First, how to make the project Menu appear in PeopleSoft left hand Menu navigation ? I am still not sure what you are trying to do(It is surprising that you registered the component and still dont have it in the main navigation; did you run the portal security sync process?? ).
    If it is all a matter of having a hierarchical structure, then you can create folders and subfolders and register each item accordingly(into different folders and subfolders as you want)
    Second, if need to register each Menu seperately again, how to do it ?Delete entries for content references that you added earlier while registering(by navigating to portal), as well as the entry from permission lists. After that you should be able to register again.

  • Imovie 10.0.1 How to recover a project from recycle bin

    I want to know how to retrieve a project from iMovie trash.
    The project, in fact, is not visible in the computer's recycle bin.
    thanks

    This is what the help says:
    Move video clips, projects, or events to the Trash
    You can delete unwanted clips or projects from an event, and you can delete an entire event in order to free up space on your hard disk.
    In the Libraries list, do one of the following:Note:  To select multiple items, hold down the Command key as you click the items you want to select, or drag a selection rectangle around the items.
    To delete an event: Select the event you want to delete.
    To delete clips or projects in an event: Select the event that contains the items you want to delete and then select the clips or projects you want to delete in the browser.
    Choose File > Move to Trash.If a clip you’re deleting is in use anywhere else in your library, it is not deleted.Note:  Selecting a clip and pressing Delete marks it as rejected. For more information, see Mark clips as favorite or rejected.
    When I do File>Move to Trash, it doesn't move it to my systemwide trash. In order to test it fully I'd need to import a clip I'm not wanting to keep and then trash it.

  • How to resize painted components

    Hi All,
    I am working on a simple project called "WhiteBoard" which is veryu similar to MS-Paint. Could anyone please tell me how to resize the components which I have drawn on the panel. Thanks in advance.
    Regards,
    Shankar.

    Cast the Graphics instance passed to the paintComponent() method of your board to a Graphics2D.
    Then use the scale(double sx, double sy) method of the Graphics2D instance to zoom
    your board in or out.
    IMPORTANT NOTE: If you use a mouse listener on the board, you'll have to convert the mouse
    coordinates according to the zoom factor.

  • How to print a HTML file in browser look using DocPrintJob

    Hello guys,
    Does anyone know how to print HTML output/file into browser look?
    I'm using DocPrintJob and the DocFlavor set to DocFlavor.INPUT_STREAM.AUTOSENSE.
    posted below is my code :
    public class BasicPrint {
        public static void main(String[] args) {
            try {
                // Open the image file
                String testData = "C:/new_page_1.html";
                InputStream is = new BufferedInputStream(new FileInputStream(testData));
                DocFlavor flavor =  DocFlavor.INPUT_STREAM.AUTOSENSE;
                // Find the default service
                PrintService service = PrintServiceLookup.lookupDefaultPrintService();
                System.out.println(service);
                // Create the print job
                DocPrintJob job = service.createPrintJob();
                Doc doc= new SimpleDoc(is, flavor, null);
                // Monitor print job events; for the implementation of PrintJobWatcher,
                // see e702 Determining When a Print Job Has Finished
                PrintJobWatcher pjDone = new PrintJobWatcher(job);
                // Print it
                job.print(doc, null);
                // Wait for the print job to be done
                pjDone.waitForDone();
                // It is now safe to close the input stream
                is.close();
            } catch (PrintException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
        static class PrintJobWatcher {
            // true iff it is safe to close the print job's input stream
            boolean done = false;
            PrintJobWatcher(DocPrintJob job) {
                // Add a listener to the print job
                job.addPrintJobListener(new PrintJobAdapter() {
                    public void printJobCanceled(PrintJobEvent pje) {
                        allDone();
                    public void printJobCompleted(PrintJobEvent pje) {
                        allDone();
                    public void printJobFailed(PrintJobEvent pje) {
                        allDone();
                    public void printJobNoMoreEvents(PrintJobEvent pje) {
                        allDone();
                    void allDone() {
                        synchronized (PrintJobWatcher.this) {
                            done = true;
                            PrintJobWatcher.this.notify();
            public synchronized void waitForDone() {
                try {
                    while (!done) {
                        wait();
                } catch (InterruptedException e) {
    }the printed ouput for this code will be look like this
    <html>
    <body>
    <div style="page-break-after:'always';
                background-color:#EEEEEE;
                width:400;
                height:70">
         testPrint</div>
    ABCDEFGHIJK<p>
     </p>
    </body>
    </html>however, the output that i want is the HTML in browser look not HTML code itself.
    i've tried to change the DocFlavor into any TEXT_HTML type but it gives error:
    sun.print.PrintJobFlavorException: invalid flavor if you guys has any idea or solution, can you share with me... already search in Google but still not found any solution
    Thanks in advanced.

    hi,
    do the following
    URL url = null;
    try
         url = new URL("http://www.xyz.com");
    catch (MalformedURLException e)
          System.out.println("URL not correct " + e.toString());
    if (url != null)
           getAppletContext().showDocument(url,"_blank"); //shows the page in a new unnamed top level browser instance.
    }hope that helpz
    cheerz
    ynkrish

Maybe you are looking for

  • Access Rights Portal

    Is there anyway to get the access rights information of all pages in Portal and also a way to modify (add or remove) access to all pages (and not to go through each page). Thanks in advance Remy

  • My cd slot is not reading the cd

    my cd slot is not reading the cd I put in and spits it back out after a gfew seconds and it used to work fine. I have an imac 21 inches

  • I have reloaded my computer with itunes but all my music isnt there how do i get it back

    i have just reloaded my computer with itunes after a crash,how do i get my music collection back....if i try to sync with my phone will it wipe my collection off my i phone?

  • Function Module for the differences

    Hi, Can you pl let me know the function module to find the difference between two times. <b>Input</b>  time1(hours:minits:seconds)  time2 (hours:minits:seconds) Need <b>output</b> in hours:minits:seconds Regards Badari

  • Calendar Server Virtual Domains Free Busy - Access Denied

    Version 6.3-11.01 I cannot get free busy to work with any domains but the default domain for the life of me. The LDAP searches are going through and appear to be returning the correct values however on virtual domain calendars the following is return