Fade out when object displaying for remainder of slide

I have noticed that when you set an object to display for the rest of a slide, that the transition effect still stays at the default of fade in and out. This causes the image to fade out at the last half second of the timeline. Is there a way to set items to not fade out if displaying for the rest of a slide without having to either modify the defaults of every object or touch each ones transitions?
Seems like there is either a preference I am missing or the beginning of a great feature to add
Thanks in advance
David

Hi David
Nope, you are understanding it. You might consider submitting a feature request to ask for it. (link is in my sig)
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • How to edit i-tunes s.a. fade in, fade out, cut and save for burning CD ?

    How to edit i-tunes, s.a. fade in fade out, cut and save for burning CD.
    I was directed to this forum by i-tunes helpdesk. Can some give advise how I can process those additional features that are not available in i-tunes 8 ?
    Thanks.
    Kris.

    Hi
    iMovie'08 & 09 is not the best tools to do a DVD or a DiskImage (via iDVD) from.
    You use iDVD to do the DiskImage - but that's when the movie is done.
    You can't (at least I can't) do a diskimage first then put a movie into it.
    The movie has to be encoded eg .mpeg2 and that's including the rest of the DVD structure too.
    No body builds houses - roof first then the supporting walls to end with throwing
    in a basement as a last action.
    To do a Data-DVD (*not playable in a DVD-player*) is another story.
    Just insert the DVD disk and when asked select format.
    This makes a DVD-ROM and You can drop movies and other files into this but
    when burned (taken out) it's done (one time burn)
    Please elaborate on what You want to be the result.
    iMovie HD 6 and iDVD'08 or 09 is a very nice combination.
    Yours Bengt W

  • Need instance of movieclip to fade out when I rollover separate button

    Movieclip I want to fade out:  "StartupText_mc"
    Within "StartupText_mc" I have a frame labels "normal" on the first frame and "over" on the last. On the actions layer I have "stop();" on the first and last frame. On the third layer I have a simple alpa tween from 100% to 0%.
    Now, Back to the main scene where the button "ProductMarketingIcon2_mc" and "StartupText_mc" exist next to each other. Here is the code I have for the button:
    ProductMarketingIcon2_mc.onRollOver = function() {
    ProductMarketingIcon2_mc.gotoAndPlay("normal");
    StartupText_mc.gotoAndPlay;
    ProductMarketingIcon2_mc.onRollOut = function() {
    ProductMarketingIcon2_mc.gotoAndStop("normal");
    StartupText_mc.gotoAndStop("normal");
    ProductMarketingIcon2_mc.onPress = function() {
    getURL("http://.........");
    ProductMarketingIcon2_mc.gotoAndPlay("over");
    Anyone know how to make   "StartupText_mc" fade out when "ProductMarketingIcon2_mc" is rolled over and simultaneuosly riggers it own tween?
    Once agin, thanks for anyone who reads this.

    You aren't telling the StartupText_mc to go anywhere in what you show...
    ProductMarketingIcon2_mc.onRollOver = function() {
    ProductMarketingIcon2_mc.gotoAndPlay("normal");
    StartupText_mc.gotoAndPlay; ???

  • I have a band video that I want to edit. In iMove 09, I could clip to crop or add a transition or both without altering the audio. In iMovie 11, the audio lower or drops out when I clip for and use a transtion. Is there a setting to preven this?

    I have a band video that I want to edit. In iMove 09, I could clip to crop or add a transition or both without altering the audio. In iMovie 11, the audio lower or drops out when I clip for and use a transtion. Is there a setting to preven this?

    Thanks for that info! Even in my time answering questions on iMovie Discussion Group, I never had a good understanding of when and how Optimize Movie came into play. I always would import as Optimized and Large Size and figured that was good enough. But knowing you got much, much more flexibility doing it the way you describe gives me a much better understanding of the different routes you can take into the Event Library.

  • Text caption set up to display for all of slide

    hello
    i'm using captivate 5 and have another query.
    is there a way to automatically set up text captions to display for the whole slide not a specific time? I know how to set this, but to go through and do this for every text caption is proving to be very time consuming.
    look forward to hearing from you.

    The Timing accordion of the Text caption could allow you to apply the setting 'For rest of slide' to all text captions (use the curved arrow, highlighted in screenshot), but the drawback is that this timing accordion also has the start time that will then be applied to all text captions, which is not always what you'll want. So for the example of the screenshot, all text captions would get a start at 4,5secs if I applied this setting to all.
    If you want all future Text Captions in all projects to have the setting 'For rest of slide' make changes to the Preferences before opening a project.
    Lilybiri

  • How do you have a cell highlight momentarily and fade out when selected?

    I've noticed that in some apps, when the user selects a table view cell, it will momentarily highlight, but the highlight will immediately fade out (i.e. you can tell that the cell has been highlighted, but the highlight doesn't stay -there is just a checkmark).
    When I select a cell, I want the selected cell to stay selected, but have the highlight fade out immediately. I can't see any options to achieve this effect. I've tried using the setHighlight edmethod to set the cell to be unhighlighted in the didSelectRowAtIndexPath method:
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    UITableViewCell* tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
    tableViewCell.accessoryType = UITableViewCellAccessoryCheckmark;
    [tableViewCell setHighlighted:NO animated:YES];
    However, this does not appear to work. I don't know if this is because I've done something wrong with trying to implement this code, or if the approach I'm attempting is not how you're supposed to go about it. If anybody has any ideas I'd be grateful.

    m_userName wrote:
    When I select a cell, I want the selected cell to stay selected, but have the highlight fade out immediately. I can't see any options to achieve this effect. I've tried using the setHighlight edmethod to set the cell to be unhighlighted in the didSelectRowAtIndexPath method:
    The Selected State and the Highlighted State are actually independent. I.e. a cell can be selected but not highlighted and vice versa. This can be confusing because, for a standard cell the appearance of the Highlighted State tracks the Selected State style (except the Highlighted State doesn't change the label text to white). But if you subclass a cell you can make the two states appear quite different.
    So the solution is to turn off the Selected State of the cell. This doesn't change which index path is selected. The table view keeps track of that, so turning off the Selected State of the cell only affects its appearance. However, whenever a selected index path is scrolled out of view and then back, the cell that's placed at that index path must be manually reset to it's Non-Selected state before it's displayed. This is because whenever a cell for the selected index path is obtained from tableView:cellForRowAtIndexPath:, the system will set that cell to the Selected State.
    // MyTableViewController.m
    #import "MyTableViewController.h"
    @implementation MyTableViewController
    #pragma mark Table view methods
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 24;
    - (UITableViewCell *)tableView:(UITableView *)tableView
    cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
    reuseIdentifier:CellIdentifier] autorelease];
    cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    // set selection style to None here to prevent a flash when indexPath is selected
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
    - (void)tableView:(UITableView *)tableView
    willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    cell.selected = NO;
    BOOL isSelectedPath =
    [indexPath compare:[tableView indexPathForSelectedRow]] == NSOrderedSame;
    cell.accessoryType = isSelectedPath ?
    UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone;
    // reset selection style here, after the cell has been set to the Non-Selected state
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;
    - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell* tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
    tableViewCell.accessoryType = UITableViewCellAccessoryNone;
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell* tableViewCell = [tableView cellForRowAtIndexPath:indexPath];
    tableViewCell.accessoryType = UITableViewCellAccessoryCheckmark;
    [tableViewCell setSelected:NO animated:YES]; // <-- setSelected instead of setHighlighted
    @end
    - Ray

  • Itouch wi fi signal fades out when transmiting songs

    i just bought a new lynksys wrt100 router. the itouch looses signal within ten feet and disconnects all together when you start to transmitting songs . is this a settings issue ?

    ok it is An Itouch with wi fi and a lynksys router. I am just trying to get the ipod to work it't normal functions like you tube ....itunes so forth when you go on to itunes ex. just listening to a preview of a song the signal drops to zero and disconnects you from the router its almost like a wifi bandwidth problem like the signal from the router can not handle music ? you can reconnect to the router again and again but when you try for example to preview songs on itunes it disconects you from the network again. now this does not happen if you are standing directly in front of the router? is this a firmware problem? ipod problem? router problem?
    what do you think?

  • Fade out/in objects with rollover?

    hey there,
    Is it possible to let an object that is empty in normal mode,  will fade in (and i dont mean transist but appear) when scrolling over, rather than suddenly appearing?
    best wishes, lucas

    Hi Lucas
    You can define states with opacity but it would not work with no fill , so use any fill and apply minimum opacity with scroll.
    Thanks,
    Sanjit

  • Setup is timing out when running install for M175 on Win XP Pro

    This is a new problem that has come up since I changed  my WEP code on my WiFi and am now trying to edit it for my printer to continue operating wirelessly. theis setup has been working for almost three years.
    I've tried running setup (4.0.2.6223) with USB or Wireless configuration and in every case it times out (Fatal Error:  An install operation took too long to...). I've reviewed the HP blogs and tried many of the solutions with no luck. I am logged in as administrator and have changed spooling to manual in services. I have tried to turn off all services and hide the MS stuff in msconfig but I get an access error. I also believe that Universal Printing services is on but don't know where to disable it.
    I have done tech for the last 25 years and have had literally hundreds of HP products. This proble has brought me to my knees.
    I hope you can help
    Thanks
    Ron Joyal

    Thanks for letting me know that information RonJoyal. Sorry to hear that you are still unable to install the software, you are also having the same issue with a second computer.
    I believe with the USB install the Universal driver is the default driver being installed which is causing this issue.
    Please follow the steps provided below:
    Remove the drivers first from the Print Server Properties. How to Locate Print Server Properties for Windows 7. On the Driver tab, highlight and remove the printer. Remove the Laserjet and any Universal drivers.
    Run the uninstall again to remove all the files that previously installed.
    Run the install again. After connecting the USB, immediately follow this document please, to update the driver. The driver is probably defaulting to the Universal driver which is causing the software to time out. Then the install should continue through. A Fatal Error Displays During Software Installation.
    Are you doing this installation remotely?
    If you are still running into issues, then connect the Ethernet cable from the printer to the router, temporarily.
    Run the install to see if the drivers will fully install by this connection. 
    Follow these steps to configure the wireless now.
    Wait about a minute, print the configuration page to see if you get a IP address. 
    Printing a Configuration Report.
    Then type the IP address into Internet Explorer's address bar to bring up the printer's web page. Select the networking tab, wireless on the left hand side. Fill out all your network information, select infrastructure, select your network name, put in password and type of encryption. Apply settings. 
    Then disconnect the Ethernet cable.
    Wait for few minutes and you should get a wireless light on the printer, print the configuration page and check the IP address again. Then type the IP address into Internet Explorer's address bar to bring up the printer's web page. Just to make sure it is still on the network.
    Then flip the port with the new IP address. 
    Go to start, devices and printers, right click the printer and left click printer properties, select the ports tab.
    Click Add Port, select Standard TCP/IP Port, then select New Port and follow the wizard.
    Type in the proper IP address for the printer.
    Make sure the printer is online.
    Test the printer.
    Let me know the results.
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How do I fix problems with iTunes Store timing out when I search for music?

    So, I downloaded iOS 7 not too long ago. However, when I tried to do a search on the iTunes Store app, it keeps timing out (it also stalls when I attempt view a song list on a specific album. My phone has no cosmetic or liquid damage, and. I have already performed a soft reset on the phone. Does anybody have a solution, or is this just a bug in the new software that needs to be fixed?

    Also having problems connecting to the App Store without it timing out.

  • Network Connection Timed Out - When downloading updates for IPOD

    Just got new ipod, plugged in sync'd ok but when I had to update new version onto ipod, managed to get 3 hours in then with 12 minutes to go it says "network connection timed out" and nothing else - can anyone help? Thanks

    Are you on dial up? No way should an ipod update take 3+ hours to download on broadband!

  • Bright Fade Out when I Shut Down Popcorn Time App

    Hello,
    I have a Lenovo A7600-F Tablet, and when I used Popcorntime to see a film, all works fine. But when I shut down this app, the bright goes down, although the bright level bar seems perfectly fine. I can fix it when I touch this level bar, but I don`t modify the level, I only have to touch it.
    Any idea?

    This can happen if adware is installed without your knowledge.
    1. Use  free  AdwareMedic to remove adware
        http://www.adwaremedic.com/index.php
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once done, quit AdwareMedic.
                 or
       Remove the adware manually by following the “HowTo” from Apple.
       http://support.apple.com/en-us/HT203987
    2. Safari > Preferences > Extensions
        Turn those off and relaunch Safari.
        Turn those on one by one and test.

  • WPS time out when installing B209a for wireless connection to Macbook Pro

    I'm not good with computers and I'm new to the MAC computer system but I believe I was following the instructions correctly until I received the error message "WPS time out".
    Any help would be highly appreciated.

    Just in case you will need this info:
    My wireless network is Verizon Fios. The router model is MI424WR.
    Thanks

  • My ipad logs me out when I use email for work

    My iPad logs me out when I email for work. I have to log back on. This happened all night as it was very frustrating. Has this happened to anyone? What can I do to fix this problem?

    Here it is 2012 and I too have this problem with games, Safari and email. It just loggs me off after about 10 to 20 min. This all started with the last OS update. Why has no one responded??

  • Message fade out just as in Outlook express

    Hi ,
    Does any 1 know how the message fades out when you receive a email from someone,just as in Outlook express
    The message is displayed in the right hand bottom corner of the screen
    I want to implement such type of message in my jsp page.
    For example ,suppose i click on submit button and the data is saved in the database.When I return back to the same page then i want such message to be seen on the screen.
    Is it possible??
    Any help would be appreciated
    Regards,
    Vishal

    Hey ,
    Thanks for ur reply
    I know that it is difficult
    So why not start a disscussion on this topic with others
    This could help us learn and share our ideas
    What u say??
    Plz send this question to as many people u can
    bye

Maybe you are looking for

  • InDesign CS6 not compatible with InCopy CS5?

    Hi, We've recently upgraded our designer to have the latest edition of the creative suite (CS6), but we've left our editors with their versions of InCopy CS5.... and we've run into a problem. We get an error message when the editor is trying to open

  • Split XML files with XSL result document

    Hi All, I have below xml file... <?xml version="1.0" encoding="ISO-8859-1"?> <T0020 xsi:schemaLocation="http://www.safersys.org/namespaces/T0020V1 T0020V1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.safersys.org/names

  • Airport Express/Router Connection - Help Needed!

    I was given an Airport Express for Christmas to use to beam my iTunes from my iMac to a pair of powered speakers in a different room. I was using the AE in conjunction with a Netgear wireless router. It was a pig to set up but now I wish to change ev

  • Like operator in for all entries

    hi all, may i know how to apply like for "for all entries" where the first position is 9. syntax is incorrect. hope can get help. thanks   CONCATENATE itab-xx+0(1) '%' INTO v_kstar.   SELECT kstar txt20 INTO TABLE it_act     FROM aaa     FOR ALL ENTR

  • Business Objects License keys

    Hello gurus, I have installed Business Objects product suite using temperory Keys, Now i want to validate them. I asked basis person to request keys. he came up with three sets of keys. I applied them in CMC . But none of the keys are working for Xce