Is it possible to publish a project with a different resolution than the native project resolution?

I think I know what the answer is going to be here, but I'm going to ask anyway. The background here is that I've made a few demo videos for new products and features my company is working on. I'm using CP4 for this. Our marketing department wants to take AVIs of my demos and insert them into their Powerpoint demonstrations. However, the native resolution of our demos doesn't make for a graceful import into Powerpoint. Thus, I've been directed to provide smaller res AVI files.
Thus, I am wondering if you can publish a project at a different resolution than the one in which it was recorded. My initial poking around seems to indicate that the answer is "no," and if this is truly the case, I will be rumbling over to the "Suggest a Feature" forum soon. There does seem to be a kind-of-workaround in that you can change the resolution of the project before publishing it, but this is something that cannot be undone, meaning that in order to do this, I will have to save new, smaller versions of all my projects. This is a bit ungainly.
So, if anyone knows a good trick here, I would love to hear it!

Unfortunately, I don't know what you mean when you say "manual panning." And I'm really not sure what you mean when you say the fields are not fully visible in the original image; they are completely visible. Here's a close-up from the original slide:
As you can see, the fields are completely visible.
Also, the slide is not entirely static. For the slide I chose as an example, the Password is filled in before the mouse moves. This typing may be part of what is getting Captivate confused; note this sequence from the resized version of the project:
Slide 35:
The login window first appears. Everything is normal. During this slide, the mouse moves and clicks inside the User ID field, leading to...
Slide 36:
At this point, things begin to go awry. The user name is entered, and the cursor moves to the Password field.
Slide 37:
Whoops! As soon as we click Login, everything goes back to normal.
Slide 38:
I will try a few of the suggestions you offered, and will report back with the results.

Similar Messages

  • Is it possible to lock my settings with a different password from the lock code

    Is it possible to lock my settings with a different password from the lock code

    To the best of my knowledge there is only one Pass Code per se
    You can check here  >  iPhone User Guide

  • Can i lock an app on my iPhone with a different password than the one i use to lock my phone?

    can i lock an app on my iPhone with a different password than the one i use to lock my phone?

    This should work; one of my e-mail accounts is my own domain through Gmail.  Make sure your username is set to your full e-mail address (like [email protected]) rather than just your username.
    Did you set it up on your iPhone as an IMAP account, or as a Gmail account?  It should work perfectly using the Gmail setting.  It can work as IMAP, but you need to jump through a few hoops to get there.

  • I have an Iphone OS 4.3.3 and need to update with a different library than the original.

    I have an Iphone OS 4.3.3 and need to update. I have not done so since the first Itunes library used to setup my phone was done on a friend's computer and is not longer available for me. Loading to a different library requires me to erase the contents before updating. I have already come to terms with the disappointing reality of losing my media, however, will my text message history, phone contacts/numbers, notes saved in the basic built-in notes app or ANYTHING else be effected or wiped during this process? Does the backup function secure this data even though I'm using a different Library?
    Hoping there's anyone with a promising answer to this concern.
    Thanks in advance,
    MS

    App content will not be lost as long as you back up the phone to the computer you plan to restore it from. See this for advice on how to deal with your situation: Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Can I open a tab with a different page than my homepage?

    I wanted to find out if it's possible to open a tab with a different page than my homepage.  It doesnt seem that I can do what I want because when I go to Safari Preferences/General, the only options for tab open is topsites/homepage/empty page/same page/bookmarks.  I'm surprised it doesnt let you select your own choice of page - if that is different from your home page.  It would seem t his would be so simple...Why cant I have a different webpage as my homepage when I open a new window and something else when I open a new tab.  But apparently I cant.
    Let me know if there's a way to do it.

    Actually I did get it to work the way I wanted to; thanks.  Its hard to explain but I had to set my homepage to what I wanted my tab to be , and then set my new window to the folder with just the one URL.  So in this one example (although now I know I can customize it).  I set my homepage to igoogle but then set my tab to open with my homepage (which really isnt my homepage) and a new window to open with a folder that just had "Google News" in it.
    Seems confusing and a lot of steps to do something that could easily be accomplished by just letting the user type in the URL of what they wanted.   Instead, I had to jump through hoops and basically set up a homepage that is not really a homepage because my new windows wont open with it as a homepage...so what makes it a homepage?  If that logic makes sense.  A homepage is not really a homepage then.
    This is another example of where if Id ask Apple, theyd tell me it couldnt be done.  Ive had the worst luck with Applecare and instore trainers.  Most of the time when they tell me "I Dont know" or "This can't be done", I post something here and get the answers.

  • ¿How can I publish a Camera with a different UserID?

    First of all, Happy New Year 2011!
    I've tried WebcamPublisher webCamPub.publish("userPublisher") method to publish a WebCam to a room with a different user that the "myUserId" logged at the session, but the subscribers attached to the room they never receive the video. If I check the Room console I can see the new  user has been created and the camera stream assigned. If i use the normal Publisher-Subscriber example with webCamPub.publish() everything works correctly. One difference, on the normal example when I publish the Publisher, the Flash Player Configuration will ask me permision to access the Camera, but on my new code i will never be asked for this access. It looks like if a Camera start is needed to be executed. ¿What am i missing?
    Here is my specific code
               private function onCreationComplete():void
                        cSession.roomManager.autoPromote = true ;
                        cSession.roomManager.guestsHaveToKnock = false ;
                        userPub1= new UserDescriptor();
                        userPub1.userID="userPublisher";
                        userPub1.displayName="userPublisher";
                        userPub1.role=100;  //Tried also with 50 obtaining the same behaviour
                        cSession.userManager.createUser(userPub1);
                        sharedProperty = new SharedProperty();
                        sharedProperty.isSessionDependent = true ;
                        sharedProperty.sharedID = "webcamShare" ;
                        sharedProperty.connectSession = cSession ;
                        sharedProperty.subscribe();
                        sharedProperty.addEventListener(SharedPropertyEvent.CHANGE,onChange);
    I've tried to create the Publisher  on two different methods.
                private function onChange(p_evt:SharedPropertyEvent):void
                        if ( webCamPub != null ) {
                            webCamPub.close();
                            webCamPub. = null ;
                        webCamPub = new WebcamPublisher();
                        webCamPub.connectSession=cSession;
                        webCamPub.sharedID="webcamShare";
                        webCamPub.publish("userPublisher");
                private function onBtnClick(p_evt:MouseEvent):void
                        if ( p_evt.currentTarget.label == "Start" ) {
                            webCamPub.connectSession=cSession;
                            webCamPub.sharedID="webcamShare";
                            webCamPub.publish("userPublisher");
                            webCamPub.initialize();
    Here also is a part of the code of the Webcam example that is working ok.
    if ( p_evt.currentTarget.label == "Start" ) {
                            webCamPub.connectSession=cSession;
                            webCamPub.sharedID="webcamShare";
                            webCamPub.publish();
    <rtc:ConnectSessionContainer id="cSession" authenticator="{auth}" width="100%"
             height="100%" roomURL="https://collaboration.adobelivecycle.com/xxxx/yyyyy">
             <mx:Panel title="Webcam Example" width="100%" height="100%"
                        paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10" creationComplete="onCreationComplete()">
                  <rtc:WebcamPublisher id="webCamPub" width="10" height="5" resolutionFactor="5"/>
                <mx:VBox width="100%" height="100%" id="clickedContainer"/>
                    <mx:HBox horizontalGap="10" verticalGap="15" paddingLeft="10" paddingTop="10" paddingBottom="10" paddingRight="10" width="100%" height="25%">
                    <mx:Repeater id="rp" dataProvider="{cSession.userManager.userCollection}" width="100%" height="100%" >
                    <mx:VBox id="vbox1" width="100%" height="15%" horizontalAlign="center" horizontalGap="5">
                                <rtc:WebcamSubscriber id="ws1" webcamPublisher="{webCamPub}" width="100%" height="100%" publisherIDs="{[(rp.currentItem as UserDescriptor).userID]}" click="onClick(event)" userBooted="onBooted(event)" streamChange="onCameraPause(event)"/>
                            <mx:Button id="b1" label="Start"  click="onBtnClick(event)"  visible="{(rp.currentItem as UserDescriptor).userID==cSession.userManager.myUserID}" />
                           </mx:VBox>
                    </mx:Repeater>   
                </mx:HBox>
        </mx:Panel>
    </rtc:ConnectSessionContainer>
    I can attach my complete code if you think is usefull. Thanks in advance.

    Hello - taking a look at your account, it's listed as free due to your crative cloud connection. Where are you seeing that you need to upgrade for publishing? Looks good on my end and your site is live!

  • Is it possible to face time with 3 different people at the same time?

    Is it possible to face time with 3 different people at the same time?

    Check out GoToMeeting http://tinyurl.com/k6q84kw
     Cheers, Tom

  • Different zoom levels for different clips in the same project?

    Hi
    I am making a movie with videos from two different cameras. As a result some of the clips are cut down in size to a small portion of the screen. This can be solved if it is possible to use different zoom levels for different clips in the same project. I have not been able to do this. Is it possible?
    kind regards
    Soren

    You can scale the small clips up to the same size of the larger one... but you will get a quality loss.
    Using Motion or Scale to Frame Size commands
    Better to scale the large ones down to a Sequence that matches the smaller clip dimensions.

  • The files/project listed below are linked to the open projects may require exporting

    Guys, I'm having this error "$ not a valid integer".
    I have five modules..all in .exe format. 3 of these modules are working fine with the links, 2 modules are not..
    I have 1 .exe as a menu, when I publish this slied..it would say "the files/project listed below are linked to the open projects may require exporting"
    3  modules are having this
    [title.htm,title.swf or title.exe}
    and the remaining 2 are having the full address of the file "c:\documents and settings\ so on and so on"
    what can't be like the 3 modules? I used the same procedure, what could be the problem?

    oopps..this is ok already..done with the updates. thanks

  • Can two users work on different files of the same project?

    Sorry if this has been asked already...but can two users work
    on different files of the same project? How would that work? Would
    it work something like this?
    1. From RoboHelp 7, user A checks out the entire project.
    2. User A checks in the files they are not working with.
    3. User B checks out the project but can only 'edit' the
    files that have been checked in by user A.
    Is this how the source control works?

    That's the basic idea. User A doesn't actually have to check
    out the whole project, though. RSC will selectively check out only
    the files that are actually getting changed. Both writers will have
    a complete copy of the project on their local machines, but the
    files are read-only until they are literally checked out, which is
    on an as-needed basis unless the writer explicitly checks them out.
    G

  • Is there a way to use a namespace, such as "Library", and have a program with a different namespace include the Library namespace?

    For many years, I have maintained a library of often used functions for C++.  This has become more challenging with the required namespace for C#. 
    Is there a way to use a namespace, such as "Library", and have a program with a different namespace include the Library namespace?
    bhs67

    You could create a class X in a namspace Y in a C# class library project. You can then add a reference to this class library project/assembly from every application in which you intend to use the class X in namespace Y.
    You don't add references to namespace, you add references to assemblies in .NET. You can then use a class in namespace Y of any referenced assembly by adding a using directive at the top of the code file in which you reference the class:
    using Y;
    Please remember to close your threads by marking helpful posts as answer.

  • [svn:fx-trunk] 12552: DataGroup now tracks the indices of the active virtual item renderers with a list , rather than the min/max values.

    Revision: 12552
    Revision: 12552
    Author:   [email protected]
    Date:     2009-12-04 13:45:12 -0800 (Fri, 04 Dec 2009)
    Log Message:
    DataGroup now tracks the indices of the active virtual item renderers with a list, rather than the min/max values. 
    DataGroup/addItemRendererToDisplayList() now respects the overlay.
    QE notes:
    Doc notes:
    Bugs: sdk-24052
    Reviewer:
    Tests run: DataGroup, List
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-24052
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DataGroup.as

    Hello Martin:
    Thanks for your input.  However I am not certain we have resolved this issue adequately, or understand the principles governing the css as regards this spry menu framework 2.0 (1.0).
    For example, the menu only works in IE 6.0 if the css remains in the head.  I agree with your original post that it shouldn't make any difference whether the css is posted in the head or in a separate style sheet (so long as specificity issues are addressed).  Both should work -- and yet it doesn't.
    If the CSS is placed in the separate style sheet governing the total site, it doesn't work for 6.0.  If placed at the top of the style sheet, conflicts of specificity prevent the menu from rendering properly in any of the browsers causing the rules for general links to govern the menu.   This has been verified using a cross browser testing.  If the styles are placed at the bottom of the style sheet to help them take precedence, they work in all the browsers except for IE 6.
    The website I am building needs to support IE 6 for a variety of reasons, and because it is catering to the non-profit community and to low income persons, I am mindful of even small differences in page weight.
    So for me, at least, the issue remains baffling.
    I appreciate your input, but also would appreciate the input from others, and especially Adobe Community Professionals and employees.  The spry framework in this regard is not well documented.  I am not certain if this is exclusively a CSS problem, if it might also be complicated by the architecture of the spry framework, or if indeed other variables are at play.
    I would be my hope that in resolving the problem, other users of the this particular spry framework might also benefit.
    Thanks,
    Steve.

  • Collecting data from advantech-usb4704 with two different apps at the same time

    I wonder if I can access to Advantech-4704 with two different applications at the same time?
    I use this block in my vis.
    I have enough ports, but inputs are needed in completely different applications. Do I have to close one of them or can they run simultaneously?
    Thankyou!

    Dear gtu,
    as nathand said, usually it is not supported to access the same physical resource simultaneously from multiple programs. In case of DAQmx for instance, you will get an error message which says that the resource is already reserved. I suppose the same would happen with your driver, however it might be worth a try.
    One workaround could be however if you revise your applications and merge the codes if it is possible so that no concurent resource allocation takes place.
    Best Regards,
    Adam Cseh
    Applications/Systems Engineer
    National Instruments

  • Is it Possible to move the Dropdown Menu to a different layer than the rest of the menu?

    For design reasons I want the dropdown part of my menu to appear as though it is coming out from underneath the banner of the menu. The best way I can figure to do that is to have the dropdown part of the menu (that occurs on rollover) be placed on a separate layer from the main banner menu. Is this possible? I have tried unlocking everything and moving that part to another layer and haven't been successful. Please help this gal out! Thank you!

    I'm still confused as to how I can do this exactly. I have used the tool tip widget to create my own drop down menus. However, I cannot put the trigger point into a different layer than the layer with the drop down menu. How can I make the actual word "accommodations" into the trigger point for this menu? I tried moving the trigger point from the widget over the Accommodations, but in order for the drop down to come out from under the banner, the trigger is under it as well. I've also tried ungrouping them, but I am not successful. Please give me further detail as to how this works!

  • Can 2 different users with 2 different Iphones use the same itunes to backup each phone separately? if not how can I have a backup for 2 different iphones on the same laptop?

    can 2 different users with 2 different Iphones use the same itune program to backup each phone separately? if not how can I have a backup for 2 different iphones on the same laptop?

    Here is your answer:
    http://support.apple.com/kb/HT1495

Maybe you are looking for

  • Help me pls.. it's urgent!

    Hi ladies and gentlemen, i've got a problem here. well, i'm writing a program where it can read from a file and display it on text area which this problem had been settled. the onli problem i hv now is how to read the text from this file or from text

  • Is it possible to use Enterprise Service in PI 7.0?

    Hi.... I just wonder that is possible to use enterprise service in PI 7.0. In PI 7.0, there is no ESR. Thank you.

  • MOVED: Req: GTX 770 TF 2GD5/OC VBIOS

    This topic has been moved to GAMING Graphics Cards. https://forum-en.msi.com/index.php?topic=252181.0

  • ABAP statement question

    Hi experts, I have a internal table I_TAB with one field. Example. Column 1 contains: 0709 0809 iled 1231 How can I delete all entries that are not numbers? Many thanks.

  • Reinitialising sql server connection in ssms sql server express

    As a beginner I added several databases to my server in sqlexpress. These are now resident in connect to server in ssms. However I used the normal delete function in windows to delete some of the databases, without realising what would happen. As a r