Can i use loadMovie to set scrollPane content?

i'm trying to load external swf files into a scrollpane. i'm
using the loadMovie command, but when i do , the content extends
outside the scrollPane (no scrolling happens). how can i get around
this in the simplest manner?
thanks.
morgan

as i found out, the answer is no, instead, one must use:
contentPane.contentPath = "web/web_HED.swf"
where contentPane is the name of the scrollPane. this can be
applied to buttons triggerend to load fresh content into the pane,
or onLoad content.

Similar Messages

  • Can I use APEX transcoding the db content?

    Hi
    Some fields in my table are encoded by Base64.and i want to user APEX build the search web application,but I don't know Can I use APEX transcoding the db content? and how?
    ths

    Hi UserXY,
    in short: yes you can!
    Check this out: http://erikwramner.wordpress.com/2010/02/23/coding-and-decoding-base64-in-plsql/
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    Work: http://www.click-click.at

  • Can I use Bridge SDK to surface content from database?

    I'm currently looking for a solution that my users can easily work with a set of files (mainly images) stored in an external database. I wonder if developing a Bridge extension would do the trick.
    My database has an API and a structure similar to a folder tree. Is it possible to connect to this database from Bridge (users should have a button for that)? Or does the Bridge SDK only allow me to define actions to be triggered by the user on files already shown in Bridge?
    If this is not the correct forum, please post a link to the correct one. I'm a bit lost in the forum structure, too :-)

    If this is not the correct forum, please post a link to the correct one. I'm a bit lost in the forum structure, too
    Not a clue if it is possible at all but maybe you can try the XMP - SDK-Forum.
    I mainly use email for my participation on this forum but you are right, after a quick glance on the bridge Forum website itself it is not easy to find your way in the Adobe forums…

  • Can I use same result set for two queries?

    Hi,
    Can I use the same result set for two queries?
    For example:
    ResultSet rs = null;
    rs = ps.executeQuery(query1);
    while (rs.next()) {
    rs = ps.executeQuery(query2);
    while (rs.next()) {
    Is it OK to use? or Is there any preformance issues?
    Appreciate your help.
    Thanks in advance.
    Prasad Vagolu

    Sure. You have a variable of ResultSet type. First you create a ResultSet and assign it to that variable. Then later you create another ResultSet and assign it to that same variable. Assigning an object reference to a variable takes essentially no time, and at any rate it isn't any faster to assign it to a different variable. Also, no matter whether you use one variable or two, you are still creating two ResultSets.
    However, you really should be closing your ResultSets after you finish using them. That's nothing to do with the assigning-to-a-variable question.

  • Can I use Factory re-set to fix that ? My Screen doesn't work when I put on mini display to HDMI My TV then set Mirror Main Screen.

    Last week I bought a miniDisplay to HDMI port. My macbookpro to SonyPlaystation 3D TV , it's work petty well on default setting. But when I set to Mirror setting, macbookpro screen turn to blue(more like computer is setting) then turn to normal and 1 second later turn to blue......that's a loop...never stop. only when I took out the miniDisplay to HDMI port, that stop...The TV doesn't have signal.
    I tried to delete apple.display.config files, but I can't find all of them( I already followed Apple support page article), so this way still doesn't work for me.
    what way can help me fix that?

    Disconnect the external monitor and any other third-party peripherals. Be sure to backup your files.
    Clean Install of Snow Leopard
         1. Boot the computer using the Snow Leopard Installer Disc.  Insert the disc into the
             optical drive and restart the computer.  After the chime press and hold down the
             "C" key.  Release the key when you see a small spinning gear appear below the
             dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, set the format type to Mac
             OS Extended (Journaled, if supported), then click on the Partition button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. Be sure you configure your initial admin account with the exact same
             username and password that you used on your old drive. After you finish Setup
             Assistant will complete the installation after which you will be running a fresh
             install of OS X.  You can now begin the update process by opening Software
             Update and installing all recommended updates to bring your installation current.

  • Can I use Automator to set up a link in TextEdit as some kind of hotkey?

    I am a fan-o-textedit, but I wish I could get to some of the options in the menus a little easier. Going to to Text, and than to Link--there appears to be no hot key for this operation. Does anyone know how I can go about setting up my own hot keys for TextEdit? Can Automator help me to accomplish this? I am new to Automator.
    Thanks!

    You don't need Automator for this. First, go to System Preferences > Keyboard & Mouse > Keyboard Shortcuts. Then, add a new shortcut (by pressing the "+"), and select TextEdit as the application. Enter "Link…" as the Menu Title (without the quotes) - the ending of that command is an ellipse, not 3 periods (you can insert that character from the Special Characters dialog). Key in the Keyboard Shortcut that you want to use (command-L, or whatever), and there you go.

  • Can you use Logic 8 Studio/Pro content with Logic 9 express?

    I'm using Mountain Lion on a Mac Pro and Macbook Pro. I have an Academic Version of Logic 8 studio, but I would like to upgrade to Logic 9 express retail. Can my Logic 8 content (sounds) work with logic 9 express? I would upgrade to logic 9 studio, but I heard you can't do that with Academic versions.
    thanks

    Hi
    Logic Express was discontinued a year ago, so unless you can find a copy secondhand, or some 'old stock', your choices are to find a new dvd version of Logic Studio, or buy Logic Pro from the Appstore.
    Most of the Logic Pro 8 content is the same as Logic Pro 9, and most, if not all of it, will work fine with Pro 9.
    CCT

  • Can I use macros and set values at compiling time?

    Hi, Java uses macros?
    I need control some functionality that only appear while Debugging (Windows specific, Linux specific, GUI's, Env), something like:
    #if DEBUG_WIN
    monitor.showDialog();
    #endif;
    or
    #if DEBUG_NO_X
    monitor.showLog();
    #endif
    Something like C or C++?
    And also set some values at compiling time, or values for the source code?, something, like:
    #define DEVS_NOT_BROKEN
    int devsEnabled = DEVS_NOT_BROKEN;
    Thanks!

    Yes, I think that too.
    But I don't wan't open sources files and modify values. I was thinking in use differents targets in ant's build.xml and easy generate differents debug profiles.
    Also I want set values at compiling time:
    #define SOCKETS_ASKED_FOR
    int sockets = SOCKETS_ASKED_FOR;Thanks, i keep searching solutions, "preprocessor search time".

  • Drivers/Utilities CD..XP and VISTA..can I use vista for WIN7 64 bit install?

    Drivers/Utilities CD's, that came with the p-35 Motherboard..XP and VISTA..can I use Vista for WIN7 64 bit install, or download the chip set drivers for Awin7 BEFORE the OS install??
    MSI P-35 Platinum
    Q6600 Core 2 Quad
    Presently XP 32Bit
    NVidia geforce 8600GT
    8GB DDR2 SDRAM PC6400-800MHz
    Windows 7..waiting to be installed.
    Hello,
    I WANT TO DO A CLEAN INSTALL.I have Windows 32 Home XP, I have the Win7 OEM I want to install.
    When i bought my MSI mobo, it came with both the drivers and utilities for XP and Vista.   Can I use the chip set drivers and utilities for Vista, until i can go to MSI and download the latest chip set drivers?  When do i install these drivers....before the OS install, or after?
    Can I format these drives first, go in the BIOS change to boot sequence from Raptor Boot Drive to the DVD/Rom to boot the WIN7 from, or should I format while installing Win7?  
    Someone on another forum suggested that 1) disconnect the two droves, then install the OS on the boot drive, and2) before win7 install, make the proposed boot drive (NOT THE DVD/CD ROM the first choice priority for the boot sequence....is this right?
    Is it absolutely necessary to unplug the other two drives, while formatting and installing the WIN7 O.S.?  People tell me that there is a chance of the OS installing sometimes on the other drives.
    Also, if I want to change the now present boot drive Local disk letter (C) to my storage drive (G) and the other two drive letters, can I do this in manage disks, anytime, or only during windows setup install?
    Thx

      I've never had this much trouble hooking up a HDD.
           I have two IDE DVD/CD ROMS.  (My RAID MODE was IDE in XP OS, and still is with WIN7.)
           I have three SATA HDD's.
    After unplugging the SATA 2TB HDD while I installed the WIN7 OS on the 500 GB HDD (it was on the 74 RAPTOR, but I moved location, and made absolutly sure nothing went on my raptor)
      So today I decided to re-hook up the 2TB Storage HDD, and when I did, I went into bios,and to the cell menu, and LOAD ALL DEFAULT SETTINGS, so it could see my newly installed HDD,which I had all my backup Data from the previous HDD. I also checked and the RAID MODE was IDE, and the boot sequence was the WDC 500GB Boot/OS drive, rebooted,then I got that annoying blanked out screen with that blinking cursor, so I got back into the bios,and changed the 1st boot to the IDE Pioneer DVD/CD ROM, 2nd boot to the 500GB HDD, and rebooted again..still got that blinking cursor.
    I opened up the Mobo, checked and replugged all SATA, and power cables to the three HDDS, tried it again,then still got the blinking cursor.  Seems no matter what I change in the boot sequence,it never wants to boot properly
    ....AND THEN,
     I started with TAB > POST> started WINDOWS, then once it opened up, I went to manage Disks, saw all three HDDs were online and healthy.  Win. Explorer also listed them in that folder, in device manager, it listed all three too.
     The managed window showed this:
    74GB    (system,active,Primary partition)                       Storage
    2TB     (Primary partition)                                           Excessive Storage
    500GB  (Boot, page files,crash-Dump, Primary partition)   Operating system
    Both the PCI IDE BusMaster and ON-Chip SATA Controller were both ENABLED.
    Before I just got online, I tried RESTART, and it opened Windows the usual way,  so I hope I don't have any more problems. It worked fine BEFORE I just plugged in the 2TB HDD back in.
    I pretty much did what everyone suggested,except for leaving in the 74GB Raptor when I installed WIN7, which prompted me to format the drive prior to installing the OS.  Also, when I changed the IDE, RAID,and AHC1, to the AHC1 Mode, just before I installed Window7, like a few suggested, I also had problems, so after the install, I went back and changed it back to IDE.  My Floppy was an IDE, but I removed it from my system, and disabled in BIOS, but even a few times I went into Bios and saw that thje floppy was 1st Boot, even though I changed to either the DVD/CD Rom, or the 500GB boot drive.            
    So what is the preferred boot sequence?   

  • Use of Font Sets in CHM Navigation Pane

    Hi everyone.
    One of our product suites is going to be published for the first time using WebHelp Pro as its primary output but with a CHM file as a backup in case the client's internet connection fails or isn't present.
    To cut a long story short we have setup a font set to use with our Webhelp Pro output that allows for both Windows and Apple Mac fonts. We have applied this to all our styles and are looking at other places where it can be used (e.g. skins). One of these is the Navigation Pane to be used in the CHM file. It seems like you can not use a font set when defining the font characteristics of the TOC and Index in the Advanced options of the Microsoft HTML Help single source layout.
    I know this is not really a problem as CHM files are only designed to be run on Windows PCs and the Windows fonts we are using as part of the font set are 99.9% percent likely to be installed. However I am more interested in how the fonts inside the navigation pane works. The fact that you can't specify a font set (i've checked this in RH8 and RHX5) would seem to indicate that the font setting is part of the compiled file, rendering a font set unnecessary in this instance. Either that or it is an oversight.
    Read the RoboColum(n).

    Hi Colum
    I stand to be corrected on this. Perhaps Pete Lees will pop in to confirm or deny.
    I don't believe Font Sets are even necessary for .CHM files. As they are Windows only, I'm not sure Microsoft saw any need to provide for using them.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Can I use JavaMail without Mailing Server??

    Dear All,
    My name is Jonathan Wong, a final year student.
    I am going to develop an internet application for my final year project that contains a part to sent e-mails by using JavaMail.
    Can I use JavaMail without setting up any Mail Server?? If no, can I use the ISP one?? Also, how can I retreive the mailing list from database to JavaMail?? Please advise.
    Thanks in advance.
    Best Wishes
    Jonathan

    You dont neend to set up a Mail server , You just have to connect to the desired mail server to send and retreive mails............. You should read the Javamail Api , you will find all the classes and required methods there ,, to retreive and send emails........

  • HT202631 can i use credit in my app store to buy music in itunes?

    can i use credit in my app store to buy music in itunes?

    Yes, if you have a balance on your iTunes account then you can use that for buying apps from the iTunes app store (or to buy from the iBookstore or Mac App Store, and music, films etc from iTunes) - you can't use your balance for gifting content or an amount to another person

  • Using Adobe Creative Suite for content management

    I am trying to find out if Adobe CS3 can be used to perform web site content management functions. In particular, I need to know if web page publication dates can be controlled, i.e. is it possible to specify a future date for publication of a specific page? I think Contribute can do this when posting to a blog but it's not clear if web pages can be managed in this way as well. Any help gratefully received....

    If it can be done, it would be in Dreamweaver CS3, so you should pose your question in the Dreamweaver Forum.

  • Can I use an incremental backup disk for a restore function?

    I have loaded PSE7 on my new PC. I have a full backup set and also an incremental set created after the full backup. After doing a File/Restore with the full backup set, can I use the incremental set to add the remaining picutures or do I need to do a new full backup first and only use it? If I can use the incremental set, are the steps to load it the same as for the full backup?

    jdrefr wrote:
    I have loaded PSE7 on my new PC. I have a full backup set and also an incremental set created after the full backup. After doing a File/Restore with the full backup set, can I use the incremental set to add the remaining picutures or do I need to do a new full backup first and only use it? If I can use the incremental set, are the steps to load it the same as for the full backup?
    I have given up incremental backups because they don't save any time. I have found that the messages in the restore process are misleading. I don't know for sure why, but to restore, I got the best results by restoring the last incremental backup first, then the older ones and the original. If your incremental backups are correct, each in a separate folder or disk, you have a full version of your catalog at the time of backup stored within the folder or disk. I suppose this is to start with the latest catalog version and completing the process by comparing with previous versions, which ensures not adding deleted items.
    I'd be interested to get other views on that matter !

  • Can I use an enumeration as parameter for a finder method?

    Hi, I declared an enumeration which contains session types:
    public enum SessionTypes {
    WEB, IVR, SMS
    }Can I use this enumeration as argument in a finder method, such as
    * @ejb.finder
    *   signature="com.afl.socnet.shared.intf.entity findByCustomerRefAndSessionType(java.lang.Integer socnetCustomerId, java.lang.String clientRef, com.afl.socnet.Constants.SessionTypes sessionTypeId)"Thanks for any help

    jdrefr wrote:
    I have loaded PSE7 on my new PC. I have a full backup set and also an incremental set created after the full backup. After doing a File/Restore with the full backup set, can I use the incremental set to add the remaining picutures or do I need to do a new full backup first and only use it? If I can use the incremental set, are the steps to load it the same as for the full backup?
    I have given up incremental backups because they don't save any time. I have found that the messages in the restore process are misleading. I don't know for sure why, but to restore, I got the best results by restoring the last incremental backup first, then the older ones and the original. If your incremental backups are correct, each in a separate folder or disk, you have a full version of your catalog at the time of backup stored within the folder or disk. I suppose this is to start with the latest catalog version and completing the process by comparing with previous versions, which ensures not adding deleted items.
    I'd be interested to get other views on that matter !

Maybe you are looking for