How to scroll through the entire screen of text

I'm new to Captivate.  In other words, I use it for the first time.  I am trying to create the first slide in my project.  I want a text to scroll on the right screen and completely out of the screen on the left.  I was able to make the text fade in and out and have music in the background (at first), but I can't understand how the full scroll from right to left, or if it is possible.


Can someone help me with this and please give step by step instructions?  I would be very happy!

Hello and welcome to the forums.  You don't say what version of Captivate you use, but if you have version 5 or 5.5, the answer is Yes, you can have a blade of legend of text on the screen.  You can use a to do.  To open the effect controls panel, use the window menu, and then select effects.  Select the caption text that you want to have the scroll.  I'll demonstrate using version 5.  You should see:

Click on the fx to open the menu effects.  Select the trajectory, then RightToLeft.

Drag the right end of the effect of RightToLeft to length of parchment.  Here I show that I have extended it to the length of the slide, 3 seconds:

Then look at the text of the caption on the slide.  If it is enabled, you should see a 1 in his lower right:

The 1-click and you will get starting and ending points of the motioin effect.  Drag the start point at the right edge of the blade and the end point at the left edge of the slide.

When the slide plays, the text caption will start on the right edge of the screen and pass through and leave the left edge of the screen in 3 seconds.

I hope this helps.

Mister C.

Tags: Adobe Captivate

Similar Questions

  • How to scroll through the preview window of keyboard in Spotlight?

    Properties of an instance, look up word "this" in the Spotlight, access the result of dictionary approx. Overview window lists a long result. I want to scroll down the result just by key on the keyboard. The problem is that I couldn't find a shortcut to the focus to this window. Are there solutions to this situation? Thanks in advance.

    The keyboard up and down arrows move the top/down by one item. Hold down the modifier 'cmd' and use the arrows to jump up/down to the next section of the category.

    C.

  • How to scroll through the tabs with the mouse wheel?

    I used to be able to scroll the selection of tabs when the tab bar is filled using my wheel mouse (like the arrows on each side navigation), but recently it changes the tab I look as if I physically clicked on this subject.

    I'd appreciate help on how to make it work as he did.

    That should still work if you hover over with the mouse, the tab bar.

    Make the scroll buttons on the tab bar work?

    You have maximized the window of Firefox?

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode without failure.
  • How to scroll through the front panel when running

    Hello

    I'm using LabVIEW 8.5. I want to scroll the front panel automatically according to the moving object. I enclose a vi for example, in which I move the image, but if it is out of range of screen I have to scroll manually horizontal scroll bar to see the position of the image, it is possible that it automatically scrolls according to my position of the object.

    -Thanks in advance

    Hi, Mary,

    Well, now I see what you wanted. From my point of view using front panel scrolling for this animation is wrong way (if not I do not know your final objectives).

    I would recommend that you use the image for this control. Here the work by hand a little more, but you will get better results and will not scroll to your façade.

    For example, "quick and dirty" implemented:

    Andrey.

  • How to scroll through the content at different speeds?

    Please take a look at http://www.gingerlabs.com/ and notice how the context and content of text scroll speed different /rate

    Is there a way to do this in Muse?

    You can certainly achieve this effect in the Muse. Try to use less scrolling for filling frame and then apply speed according to the frame to fill to main content going on Passover with images filling.

    Best way would be to create a trial site and then apply similar effects of scrolling, please let me know if you have any additional questions.

    Thank you

    Sanjit

  • Polygonal Lasso - how to scroll through the image?

    In CS4, when presenting a piece of an image enlarged with the Polygonal Lasso. I can't continue after the edges of the canvas. The scroll bar does not work and I just end up creating points of lasso outside my intended path trying to move the scroll bar when the tool is active. The top and bottom of the keyboard keys also do nothing.

    How can I, please?

    OK, got it. Use the space key to switch temporarily to move.

  • Helix pen not to travel through the entire screen

    Hello

    Recently got my Helix, and I love it. Have encountered a serious problem, however. Often when I remove the stylus, his range of motion is limited to a small square in the nearest corner of the silo of pen. I can move the slider of the pen in this little place, but the system won't let me move it outside those invisible boundaries. Reboot fixed it until the next time I draw from the pen of its silo.

    This is obviously a very important problem, and at least another user has it: http://forums.lenovo.com/t5/X-Series-Tablet-ThinkPad-Laptops/Lenovo-Helix-Touch-Screen-Malfunctionin... (see the post 23:02 13/05/2013). Is there progress on a fix? It will be difficult to justify keeping this machine if I need to reboot to use the stylus.

    Thanks in advance for any help

    Yes, the Wacom driver has problems with booting with the stylus to the tablet.  Which disables the pen tablet system.  You can uninstall the wacom drivers or make sure that the pen is removed when the system is restarted.  It should continue to work the Tablet talk before removing the pen.

  • How to scroll through the label by program which enabled multi-line text

    I am able to display the text in the label with spirals. But I need to scroll the text programmatically. I mean I want to scroll the text up/down by program.

    Please help me. Thanks in advance.

    .

    You can not scroll programmatically. But you can put inside ScrollArea TextArea and scrolling.

  • REGEXP_REPLACE how to loop through the occurrences of a text string variables

    Hello

    I use a 11.g Oracle procedure. I found an example of REGEXP_REPLACE with only two arguments (input and model) and created a procedure based on this example. The Replace function works, but not optimally. I try to use REGEXP_REPLACE to loop on a variable number of occurrences of a text string in a local variable of CLOB.  The string occurs after the text base64 (base64 comma) and before the text "/ > (double quote space oblique superior - only)."  I can do replace it work for a single occurrence, but I can't do it properly in a loop.  These embedded strings include images that were inserted in a rich Apex text field.  This is a rich text field is assigned to the CLOB p_html.

    Declare p_html clob;
      l_image_clob clob;
      l_image_count number;
    Begin
    p_html := '<p>Some header text base64,one start here and then this is the end one" /></p><p>Some header text base64,two start here and then this is the end two" /></p>';
    l_image_count := REGEXP_COUNT(p_html, 'base64', 1, 'i');
    If l_image_count > 0 Then
      For i In 1..l_image_count Loop
      l_image_clob := REGEXP_REPLACE(p_html, '(.*base64,)|(" />.*)');
      dbms_output.put_line(l_image_clob);
      -- code to process each occurrence individually.
      End Loop;
    End If;
    End;

    What I would like to see results of the data are:

    tenure here and that's the end

    two beginning here and that's the end of two

    The results I get are:

    two beginning here and that's the end of two

    two beginning here and that's the end of two

    Thanks a lot for watching this.

    Hello

    From Oracle 11.1, REGEXP_SUBSTR is better than REGEXP_REPLACE for this sort of thing.

    What produces the output you asked for:

    Declare

    CLOB p_html;

    CLOB l_image_clob;

    number of l_image_count;

    Begin

    p_html: = '

    ' Some header text base64, start here and then it's the end "/ >

    Some header text base64, two start here and then it's the end of two"/ >

    ';

    l_image_count: = REGEXP_COUNT (p_html, 'base64', 1, 'i');

    If l_image_count > 0 Then

    For i In 1... l_image_count loop

    l_image_clob: = REGEXP_SUBSTR (p_html )

    , "base64,(.*?)" / > "

    1

    , I - letter i (loop variable), not number 1

    , 'i'

    1

    );

    dbms_output.put_line (l_image_clob);

    -code to treat each case individually.

    End loop;

    End If;

    End;

    /

    The 4th argument to REGEXP_SUBSTR specifies where desired appearance (starting with 1).

    The 6th argument is a backreference. 1 means you want to return all that match the expression starting with the 1st '('. gauche)

  • Scrolling the mouse not working not not to scroll through the pages. cannot change the Volume control. How to fix?

    Original title: scroll of the mouse wheel only adjusts the volume. How to scroll through the pages again?

    Using the wireless mouse (Silvercrest MTS2218-m with win 7 x 64) and scroll wheel is no longer made scroll page up and down in any program. Only, it adjusts the volume. How to scroll through the pages again?

    Already checked the settings in Control Panel > mouse nothing obvious here to change this annoying feature. And have already uninstalled the driver for the mouse in Device Manager but no change. have also stopped and started several times laptop.

    Close to the scroll wheel is a dpi button, which can also be used to pass
    between normal mode and media holding for 3 seconds. In media mode
    the volume control wheel and does not scroll.
    Read the manual... ;-)

  • The entire screen and not just game scroll arrows window

    When you play a game, I need the arrow keys to operate within the game window to move the 'blocks' and does not scroll the entire screen.

    Used to work, it stopped working yesterday (after my 9 year old had a computer time.)     Several other settings have been changed, so I'm assuming he's changed a setting somewhere!      Help!

    It is quite a wild guess, but try typing your key to ScrLck (e.g. stop scroll) once. Otherwise, you can consult the documents of the game on how to disable this behavior.

  • I don't know if I did something to cause this; If I did, I don't know how to cancel it.  The format of my screen of the library has changed.  Across the entire screen is a group of 3 photos of my last import, with that that I chose was highlighted.  I can

    I don't know if I did something to cause this; If I did, I don't know how to cancel it.  The format of my screen of the library has changed.  Across the entire screen is a group of 3 photos of my last import, with that that I chose was highlighted.  I can still see the pictures on the bottom Strip.  If I scroll up and down, I see that all is there.  But no browser, list of files, import and export buttons, etc.  How do I return my screen normal library?

    Post a screenshot of what you see.

    Type the tab key.

  • Taking up the entire screen. ... How do I re-size?

    I was putting up with this problem for a year because I work constantly.

    -Lightroom is sized to fill the entire screen 21 '' i - mac, I can't get the sidebar to activate from inside the PMQS, so I have a H option to access other programs.

    Now, I have a 27 "and it behaves the same way.  I really didn't need LR to occupy all 27 ".  Again I have used Adobe and Mac for a long time, and I can't understand how I had the program for "oversized" window, so I can't just drag the tab of the window to resize my workspace window.

    Thanks for the replies.

    Since you didn't say what version of Lightroom you use...

    The letter F or Shift-F you will scroll the different full-screen/partial screen modes.

  • New to Mac: how to Photoshop to cover the entire screen?

    After 20 years of using Windows, I recently bought my first Apple computer and Adobe was kind enough to allow me to convert my license of Photoshop.  I use a Mac Pro tower with dual quad core i7 and Snow Leopard 10.6.4 with Photoshop CS5 version 12.

    One thing that I can't seem to get used to on a MAC is that activating Photoshop occupies only a part of the monitor and the main workspace shows through other windows in the application that are open and my background "Galaxy" in the rest of the space.

    Is there anyway to make Photoshop occupy the entire screen and cover the Galaxy and other windows in the application open?  I currently have to actively seek a part of Photoshop of the screen to activate the program that is confusing, slow and driving me crazy. This I think is unique about how Photoshop is implemented on a Mac, I've never met this before on Windows.

    Go to the window and the menu drop down click on request frame

  • I hit a button and now this tab takes up the entire screen. How to bring back my browser?

    Website of the tab takes over the entire screen, even the line apps Windows downstairs. Hit the ESC does nothing. If I close FF and re - start, it goes back to the same state that it was when I killed him. Order No. FF buttons there so there is no way to reset it. The tab web site occupies the entire screen. Help! I use MS Internet Explorer to send this info that FF is currently useless.

    Sounds that you have enabled Firefox mode full screen (press F11 or Fn + F11 to toggle; Mac: Command + SHIFT + F).

    If you are in full screen view then hover over with the mouse to the top of the screen to facilitate the bar appear Navigation and tab bar.

    Click the expand (in the top right Navigation bar) to exit full screen or right-click on a space empty on a toolbar and select "exit full screen" or press the F11 key.

Maybe you are looking for

  • Satellite P300 - slow laptop with 100% CPU usage

    Hello I ve bought a P300 Satellite a week ago.The problem is that my laptop is very slow. When I run Vista it takes 3-4 minutes.When I open WMP it takes 30 to 40 seconds, and when I play a movie she shocked all the time.The CPU is at 100% constantly.

  • A few questions about the CD of restoration Satellite 2410

    I put a new HARD drive in my Satellite and I recently put a partition on the drive (c: and d :) readers. If I run the recovery cd, it reformatted the whole drive as a single unit or can I put it to format only the c: partition. I really don't want to

  • Satellite M70-147 WLAN Wi - Fi drops

    Hello Could someone please tell me what to do to avoid that my wireless connection WLAN oscillating randomly 54 2 and between the two?I have a 642 D-Link.OS = Windows XP Home SP2 Thanks in advance.

  • Some iCloud Drive Files 'Cloud '. only

    I'm curious to know if there is a way to have folders under drive iCloud "Cloud" only against them being together in the cloud and stored locally on my Mac.  I am running low on space of hard drive on my MacBook Pro and I have files that I don't want

  • How to convert string data from the serial port to double?

    Hello! I am very new in LabView and attempt to read data from an OHAUS pioneer pa-313 electronic scale via RS232 serial port. I use the VISA. I can read the data and see it as a string to the screen, but when I try to convert it to a double, it is ju