Scrollable window

Hi
I need to make a small window in my flash movie which has a
scroll bar on. lots of text will appear in the box and i need users
to be able to scroll up and down the box. How would i go about
doing?
Thanks
dave

There's now a widget to do this.  Take a look at any of the Youtube videos on this page that talk about Slider Component Widget:
http://www.infosemantics.com.au/adobe-captivate/youtube-video-tutorials
http://www.infosemantics.com.au/adobe-captivate-widgets/slider-component
Free trial version available here:
http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets

Similar Messages

  • How can I add invisible buttons to a scrollable window?

    I've made a scrollable window that basically scrolls some
    text and images. I'd like the images to link to another site but
    I'm having trouble getting the invisible buttons to scroll with the
    images. The text and images laid out in Flash. That is, I'm not
    linking to an HTML file.
    Here's the code I'm using for the scrollable window, which I
    got from a tutorial online. The buttons (at the bottom of the
    script) are located in a separate layer masked by the "maskedView".
    Any insight would really be appreciated!
    thanks!

    Try this code.

  • Scrollable Window w/ image

    We have a scrollable window on our website that has an image
    instead of a text box. (www.lynnfilms.com//whoweare.html) Anyone
    have any idea how this was done, and can describe to me how to do
    it??? The guy who programmed our website is mia and we need it
    updated.
    Thanks

    Hi,
    The W_WARNING_WINDOW is available in later versions of Netweaver. I suggest you to raise an OSS message to SAP as this is a standard delivered component.
    Regards,
    Kiran

  • Hyperlinks in scrollable window

    I have included scrollable windows in my website. I want to
    add different hyperlinks within the window. Help.

    I've always found hyperlinks to be kind of wonky. I stick with buttons for this.
    Bob

  • Insert a scrollable window in Captivate frame?

         Hi!
    I have a long image that I would like to insert in the captivate slide, i cant make it smaller or the project bigger.  I would like to know if I can insert a window in the slide that has a horizontal scroll bar the user can use to scroll the image back and forth...if this is possible, how can i create it? in Flash or Swishmax?
    All responses are greatly appreciated,
    Steph.

    There's now a widget to do this.  Take a look at any of the Youtube videos on this page that talk about Slider Component Widget:
    http://www.infosemantics.com.au/adobe-captivate/youtube-video-tutorials
    http://www.infosemantics.com.au/adobe-captivate-widgets/slider-component
    Free trial version available here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets

  • [SOLVED] python + ncurses, scrollable window

    Say I have a huge text file and I want to put it in an ncurses pad so the user can scroll through it, how is it done?
    I have something like
    max_x = stdscr.getmaxyx()[1]
    max_y = stdscr.getmaxyx()[0]
    log_window = curses.newpad(max_y,max_x)
    but I can't slam all the file lines in there because it is bigger than the newpad size.
    if I do
    log_window = curses.newpad(len(file_data),max_x)
    log_window.refresh(window_position,0,4,0,max_y,max_x
    I get
    _curses.error: prefresh() returned ERR
    Can't think if any way to get this done.
    Last edited by boast (2013-05-12 18:00:04)

    If you want to load the whole file into a pad, then you could also create a fitting pad and then use a subpad which you will display in the console.
    The refresh call seems to be fine. What is the value of window_position?
    Last edited by progandy (2013-05-12 14:48:04)

  • How can I hide destination URL in Browser Window?

    I'm opening a sized browser window "on click" to include
    courseware pages. I want to hide the destination link address at
    the bottom of the browser. I've tried the Open Browser Window and
    the Open Chromeless windows in an effort to create a clean
    resizable, scrollable window without the destination at the bottom.
    A search on this NG and on the web so far has not satisfied my need
    for a clean browser window that maximizes screen usage for a
    learning modul. Can anyone point me in the right direction?
    Dennis

    You want to hide the Status Bar text.
    There's a JavaScript Behavior for it build in.
    but many modern browsers won't allow it and will show it
    anyway.
    > Here's a page to illustrate the need:
    >
    >
    http://teknigroup.com/courseware/Inventor%20Level-I/working%20folder/informati
    > on.html
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Scrollable Frame (Swing Newbie)

    Hi, new to Swing programming and getting stuck with making a scrollable window.
    This was my original code which works (the base class extends Canvas so when I used panel.add(this) it is adding a Canvas:
    public Game() {
              // create a frame to contain our game
              container = new JFrame("Space Invaders 102");
              // get hold the content of the frame and set up the resolution of the game
              JPanel panel = (JPanel) container.getContentPane();
              panel.setPreferredSize(new Dimension(800,600));
              panel.setLayout(null);
              // setup our canvas size and put it into the content of the frame
              setBounds(0,0,800,600);
              panel.add(this);
              // Tell AWT not to bother repainting our canvas since we're
              // going to do that our self in accelerated mode
              setIgnoreRepaint(true);
              // finally make the window visible
                    container.pack();
              container.setResizable(true);
              container.setVisible(true);I then had a quick look at a few examples and tried this:
    public Game() {
              // create a frame to contain our game
              container = new JFrame("Space Invaders 102");
              // get hold the content of the frame and set up the resolution of the game
              JPanel panel = (JPanel) container.getContentPane();
              panel.setPreferredSize(new Dimension(800,600));
              panel.setLayout(null);
              // setup our canvas size and put it into the content of the frame
              setBounds(0,0,800,600);
              //panel.add(this);
                    JScrollPane pane = new JScrollPane(this);
                    panel.add(pane);
              // Tell AWT not to bother repainting our canvas since we're
              // going to do that our self in accelerated mode
              setIgnoreRepaint(true);
              // finally make the window visible
                    container.pack();
              container.setResizable(true);
              container.setVisible(true);This didn't work, the game still functioned as normal but there were no scrollbars on the pane regardless of how big/small I resized the window.

    Best I can explain it, original code which works fine animation and frame change smooth etc:
    JFrame --> JPanel (frame contentPanel) --> extended Canvas structure is setup
    Canvas buffer strategy set to manual
    Strategy stored to variable (strategy) using Canvas.getBufferStrategy
    Game loop is started
    Graphics2D object obtained using strategy.getDrawGraphics
    Loops through entities in games (space ships in my case)
    Updates positions etc
    Draws to Graphics2D object (which is still in buffer and remains there)
    Graphics cleared and buffer flipped to on screen using graphics.dispose() and strategy.show() methods
    Then changed to:
    JFrame --> JScrollPane (frame contentPanel) --> extended JPanel structure is setup
    Game loop is started
    Graphics object obtained using JPanel.getGraphics
    Loops through entities in games (space ships in my case)
    Updates positions etc
    Draws to Graphics2D object (which is still in buffer and remains there)
    Graphics cleared graphics.dispose()
    The game still works but its all flickery (best way to describe)
    Don't know if you'll be able to give a solution using that info, it's getting late so if not ill do the SSCCE tommorrow.
    Thanks a bunch.
    Edited by: tolk2 on Oct 19, 2008 2:50 PM

  • Scrollable message log

    Hi all,
    While my program is running i need to have a scrollable window of messages, with new ones constantly appearing at the top.
    And I dont have a clue on what JComponent to use for this. I thought about JList, but I dont want to be repainting the old messages, I would just like to be able to add new ones.
    Please help,
    Val.

    why not JTextpane? do you need those messages to be clickable? i think that would be easiest to implement.

  • Scrolling a window within a window

    I have had occasion when I get a scrollable window within a window. I can scrol around the outer window but not the inner window. Is there a technique to scrol around the inner window?
    Thanks
    Wallyjf

    I must be stupid. I can not make this work.
    Do I spread my two fingers apart or do I move the two fingers in the direction that I want the inner window to move?
    Is there a page that I can play with?
    Thanks
    Wallyjf

  • Error encountered while reading TIFF image, Image may be damaged of incompatible. Resave the image w

    I am currently running CS3, windows XP, service pack 2, with recent update, 5.03 installed today.
    I just opened a 500 page document not in sections where 90% of the document is a placed PDF.
    The PDFS were placed using a sample Script that came with Indesign, that instructs the PDF to automatically flow each page after another.
    When scrolling through quickly in the pages pallette, I get the follwing error:-
    "Error encountered while reading TIFF image, Image may be damaged of incompatible. Resave the image with different settings and try again."
    I click OK.
    Then I get the following error.....
    " Could not complete request because of database error. The File "ABC.indd" is damaged (Error Code: 3).
    Click OK....
    Then I get the following error....
    Adobe Indesign is shutting down. A serious error was detected. Please restart Indesign to recover work in any unsaved Indesign documents.
    Then I get the error.......
    Indesign.exe has encountered a problem and needs to close. We are sorry for any inconveneince.
    And I have two buttons to click....
    Debug or Close.....
    If I click Debug, it closes Indesign.
    Within this window there is also a window to gather further information....I click it and it tells me...
    "Indesign.exe....Error Signature AppName: indesign.exe AppVer: 5.0.3.662
    ModName: public.dll ModVer: 5.0.3.662 Offset: 0002e19a"
    To view technical inforamtion about the error report, clikc here....
    "Then it creates an error report and tells me where the report is located along with a scrollable window of 0xc0000005 and heap of zeros."
    The report conatains a whole heap of CHECKSUM ERRORS.
    CAN ANYONE PLEASE HELP??
    I had these errors before updating to 5.03 and the patch hasn't rectified anything!!

    Open the .inx file in CS3 (that's what you have, right?) and save as a new .indd.
    I'd also be tempted to open the tiff in Photoshop and do a save as to re-write it.
    Let us know if it helps.
    Storing files on the network leaves you more open tot he risk of file damage during transfer and save operations.
    Peter

  • I finally made the change to a MBP from a Thinkpad. Now I'm lost.

    Ok. So after 20 years of using a PC, I've converted to a MAC. I just purchased a top of the line MBP. I am trying to setup the Desktop like a PC (i.e. HDD, DVD, Networking, My Docs, etc....)but I can't figure it out. The only thing I got so far is a headache. Can someone please explain to me how I would put these icons on my Desktop? Also. I think I deleted a folder accidentally on the task bar. It was the download folder. I still have the Application and the Documents folder.
    Can you also tell me how to scroll properly? It seems I have 3 options on my mouse pad (left click, middle click, and right click. On a PC, you would hold the left click down with your left hand and scroll with your right hand -- using a swiping down motion.
    How do I stop the screen from zoming in and out all the time? It seems every time I move my single finger anywhere on the mouse pad, it either zooms or zooms out.
    Thank you for your help.
    Signed Frustrated Newbee

    I am trying to setup the Desktop like a PC (i.e. HDD, DVD, Networking, My Docs, etc....)
    Unfortunately, the Mac is not really like a PC. Before you become too frustrated trying to make your Mac into a PC, let me explain how you get to these things on a Mac.
    The HDD is obviously the Macintosh HD icon on your desktop. Double click that to get to the root level of your drive. This is like double-clicking on your C drive on a PC. Except everything is organized much better on a Mac. By opening that HD icon, you'll see your Applications, System, Library, and Users. The Applications folder is where your apps live. On a Mac, many of the applications are contained within a single "file", and those files are located in the Applications folder. You can drag any application's icon to the Dock (task bar) where it will stay for one-click access to that app.
    The System folder is where all the OS components are located. There are very few reasons why any user should ever have to look in here so I won't bother to explain it. Library is where things such as preferences and settings are stored in files. You shouldn't have to look within the Library folder very often at all either. Think of the Library basically as where the system goes to find preferences and settings that you've already set. The Users folder is where all your data will primarily be stored. Each user of the computer has their own folder within the Users folder. Within that folder (Home folder, with a house for the currently active user), named for the short name of the account, all your documents, photos, music, movies, etc. are stored within their respective folders. This is also where you'll find the Downloads folder that you mistakenly removed from the Dock. You can just drag it back into the same location to recreate that shortcut. Dock icons are simply shortcuts to folders, files, and apps, not the actual files themselves.
    Can you also tell me how to scroll properly?
    Very simple. Click System Preferences in your Dock. That is where all your preferences are set and stored, unlike the confusing mess of "Control Panels" in Windows. Click Trackpad, and you will see settings for the trackpad. You can set the speed of various aspects of the trackpad, as well as set which gestures you'd like to use with the computer.
    I suggest you try to forget about the clunky "left click down with your left and and scroll with your right hand" PC way of scrolling. In that trackpad area of System Preferences, just make sure that you click the "Scroll" box under two finger gestures. Then, in a scrollable window (such as a web browser) just place two fingers on the trackpad and move them up or down to scroll. There are great videos in the trackpad preferences area that will show you all the gestures and how to use them. Similarly, you can shut off the screen zooming here. I suggest you go through all the System Preference tabs to set things to your liking.
    If you need clarification or have further questions, just ask!
    --Travis

  • Canon MF4270 Scanning Function only works once

    After my upgrading to 8.1 my canon MF4270 scanning function will only work one time when it is installed. Any subsequent boot (cold or warm) and it fails to work.  The software (canon toolbox or windows scan) will just hang indefinitely.  Sometimes
    I get an error msg, sometimes I do not.
    1. Have the latest driver from the Canon website
    2.  Tried reinstalling the driver several times
    3.  Tried the Windows scan utility
    4.  Tried different USB ports.
    5.  When I do get an error msg it is usually a "USB device is not recognized"
    6.  In Device Manager>Universal Serial Bus controllers>Unknown USB Device (Device Descriptor Request Failed
    7.  When I call up the properties for the yellow triangled usb device, event tab in the scrollable window:
    Device USB\VID_0000&PID_0002\5&e658374&0&9 was configured.
    Driver Name: usb.inf
    Class Guid: {36FC9E60-C465-11CF-8056-444553540000}
    Driver Date: 06/21/2006
    Driver Version: 6.3.9600.16442
    Driver Provider: Microsoft
    Driver Section: BADDEVICE.Dev.NT
    Driver Rank: 0xFF0000
    Matching Device Id: USB\DEVICE_DESCRIPTOR_FAILURE
    Outranked Drivers: usb.inf:USB\DEVICE_DESCRIPTOR_FAILURE:00FF2000
    Device Updated: false
    8.  Also received a "
    Windows has stopped this device because it has reported problems. (Code 43)
    A request for the USB device descriptor failed."
    9.  Canon tech support stated it was an MS WIA service issue and not there problem.
    10.  Also tried compatibility routine.
    We run a paperless office so this is pretty huge.  Need your expertise. 
    Thank You!
    * * * UPDATE:  The above discussion was with the MFC4270 fully powered or in energy savings mode and PC fully powered.  Any reboot of the PC would result in no scanner.  Tried turning off the MFC, reboot the PC, then turn on the scanner,  and
    the scanner worked just fine.  A subsequent reboot with MFC remaining on would fail the scanner.  Any reboot with MFC off, then turned on after booting would work.
    So something amiss with driver and/or USB.

    Hi,
    Code 43 means that a device driver notified the operating system that the device failed, this circumstance can occur if the device hardware fails or if the device driver fails.
    To resolve this problem, take the following steps:
    1. To open Device Manager, click Start, click Search programs and files, and then type Device Manager. A list of available matching items appears above the search box; click Device Manager.
    2. Locate the malfunctioning device in the list of devices, right-click the device, and then click Uninstall. When a warning message appears that you are uninstalling a device from your system, click OK. Device manager uninstalls the device.
    3. Right-click your computer name in Device Manager and click Scan for hardware changes. Device manager scans your system and automatically reinstalls your device.
    4. Right-click the device and click Properties. On the General tab of the device Properties dialog box, in Device status, you should see the message This device is working properly.
    For more troubleshooting steps you can find it here:
    http://technet.microsoft.com/en-us/library/cc725873(v=ws.10).aspx
    Regards
    Wade Liu
    TechNet Community Support

  • WebDynpro ABAP integrated into the NetWeaver Portal - One for Mr Jung :)

    Hi
    <h2>Introduction</h2>
    I've developed a WebDynpro Component that uses 8 other components.
    The initial component has 1 view with a PhaseIndicator element with 8 phases.
    Selecting a phase pops up a window of the appropriate components used as usage components.
    Also, depending on certain config tables some windows might popup as soon as the application runs.
    I've created an application for the component with the PhaseIndicator.
    <h4>The application works perfectly !</h4>
    <h2>Problem</h2>
    <h4>When I integrate the application into the NetWeaver Portal it also works perfectly, in Dev that is.</h4>
    When moving the application and all it's components to QA it also works perfectly if run on it's own. But, when embedded in an iview in the Portal, strange things happen
    All the components that are usage components in the 1st component is displayed in the first window but not as pop ups.
    They are all listed below each other with plenty of white space between them, below each other in one huge scrollable window.
    <h2>My Investigations</h2>
    I've run a trace in Dev and QA and discovered that just before the Windows are displayed different code is run in the two systems. In Dev, the system executes a method of the class CL_WDR_SSR_LS but in QA the system executes the contructor class of a local method lcl_repository in the include LWDR_RUNTIME_REPOSITORYF12.
    <h2>Things I've tried - but did not work</h2>
    1) Removed my custom theme.
    2) Re-transported everything.
    3) Bounced the QA Portal
    4) Transported everything to Prod - It works perfectly in and out of the Prod system and Portal. BTW The ECC system of QA was refreshed from Prod 2 weeks ago.
    <h2>Finally - My Question</h2>
    What the bleep do I do now
    Thank you for reading.

    Hi Bala,
    thank you. This solved my problem.
    Could you explain what the caused the problem?
    Best regards,
    Olaf

  • Help with iPad gestures in safari please

    Hello.
    So I'm in safari browsing the net and I open a web page with photos. I click view all and a window opens with the selected photo enlarged and a series of clickable thumbnail photos in a scrollable window below. No problem, eh? Well, I cannot get the scrollable window to scroll and display the rest of the thumbnails. Only the whole browser windows scrolls. I tried all kinds of finger positions and gestures and the best that I could do is to get some copy box to show up and move around the page.
    This happens on all web sites with such a setup. The same happened on a real estate site with the same setup.
    I would greatly appreciate it if someone could tell me how to scroll this "sub window" without moving the whole page. Also, is there an online resource that explains all of the available gestures? They are not in the apple manual.
    Thanks in advance!
    -Scott

    r-e-l wrote:
    Am running into similar issues reported in the thread. was able to restore to factory setting after rebooting the PC.
    Was able to restore the defaults but from that point on wasn't able to connect to the device. It is as if the new image installs bad USB drivers for windows 7.
    I tried to run it on an XP machine and that worked. Still unable to connect to Win 7 machine.
    Are you sure that you are responding to the correct thread? Your problem does not appear to have anything to do with Safari gestures.

Maybe you are looking for

  • Problem in installing jar on Websphere

    I am using Websphere and I took some sample code from this server and putted home,remote interfaces ,bean class and deployment descriptor from their samples in C:\EJB.This sample code is a calculator .I created jar file by issuing following command f

  • Preview in Finder windows does not work with VLC Player

    hi there, i am using vlc player, and whenever i access a folder where i have many avi folders that vlc player is set as the default program to open them, the finder windows freezes and i have to relaunch it. also, when i click on get info for a parti

  • Diagram Animations not working

    Hello everyone. Hope you can help. I have a diagram that I have imported into Captivate from PowerPoint 2003 and the animations will not work. It is a simple pyramid and I have each section of the pyramid descending into the slide. It works in PowerP

  • Make: /usr/bin/install: Command not found

    I'm working on a PKGBUILD, but I'm running into this: make: /usr/bin/install: Command not found make: *** [install] Error 127 ==> ERROR: Build Failed. Aborting... What would cause this?  Old code?  Missing package?

  • E1200 not working

    Hello, I have purchased the linksys e1200  wireless router about a half a month ago or so. I installed it with ease and was pleased to have internet running through my devices. But last week my internet just stopped working. So I waited for a while a