Instead of onPress, is there an offPress

I am attempting to make my own drop down menu (combobox) When
you click on the first item, it goes to and plays a movie where all
the other 5 buttons apear below it. I want it to act like a combo
box and have it so when you click anywhere else, it will close (or
gotoAndStop(10.
Is there any command that is like on Press but it means when
the mouse is clicked anywher else but the target button?
Thanks.

For your clicking on the background to make the menu
disapear, you can make an invisible button behind the menus that is
as big as your webpage or viewing area and when you click this,
then it will take you to frame 10 or which ever you have allocated
to display your site before the menus were visible. Make sure this
"big" button is below any of your hot linked items and above any of
the stagnant graphics and it should work for what your trying to
accomplish.
My example is : www.nevrland.net click on a menu and then
click anywhere behind the menus and they disapear.
designdrumm.com

Similar Messages

  • Image display: instead of an image, there is a "picture placeholder" icon

    Hello everyone!
    I'm afraid I need some assistance. As I've already indicated in a thread title, I have problems while trying to display an image stored within the database. I read zillion threads here on OTN, searched the Internet, but I can't make it work. More or less, it comes to what Denes Kubicek provided [url http://htmldb.oracle.com/pls/otn/f?p=31517:64:850093673123067]here
    Tools I use are Oracle 10g XE database (10.2.0.1.0) and Application Express (3.2.1.00.10).
    There's a table that contains information about certain products (such as printer toners, cartridges, CD media etc.). This is its description:
    SQL> desc pm_materijal
    Name                          Null?    Type
    ID                            NOT NULL NUMBER
    IDG                                    NUMBER
    SIFRA                                  VARCHAR2(30)
    SIFRA_KRATKA                           VARCHAR2(30)
    MODEL                                  VARCHAR2(30)
    NAZIV                                  VARCHAR2(255)
    NAPOMENA                               VARCHAR2(255)
    FILE_NAME                              VARCHAR2(200)
    MIME_TYPE                              VARCHAR2(255)
    BLOB_CONTENT                           BLOBOne of its records looks like this (other column values are unimportant) (columns are formatted so that they fit a single line):
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50 Now I'd like to attach an image to those CDs.
    In my Apex application, I created an item (on a page 7) whose name is P7_BROWSE (Display as "File Browse") - it is used to browse directories for files (images, actually). In order to support table record updating, I created a Process (Process point: On submit - after computations and validations).
    if :p7_browse is not null then
       update pm_materijal set
         (mime_type, file_name, blob_content) =
         (select
            mime_type, name, blob_content
            from wwv_flow_files
            where name = :p7_browse
         where id = :p7_id;
       delete from wwv_flow_files
         where name = :p7_browse;
    end if;It seems that it works OK, because - once I select an image (it is a JPG file, its size is 116 x 116) and push the "Apply Changes" button - the result is as following:
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50   F477411270/cd_50_komada.jpg                 2111           My next step was to create a stored procedure which will be used to display images:
    SQL> create or replace procedure image_display (p_id in number)
      2  as
      3    l_mime        varchar2 (255);
      4    l_length      number;
      5    l_file_name   varchar2 (200);
      6    l_blob        blob;
      7  begin
      8    select mime_type,
      9           blob_content,
    10           file_name,
    11           dbms_lob.getlength (blob_content)
    12      into l_mime,
    13           l_blob,
    14           l_file_name,
    15           l_length
    16      from pm_materijal
    17      where id = p_id;
    18
    19     owa_util.mime_header (nvl (l_mime, 'application/octet'), false);
    20     htp.p ('Content-length: ' || l_length);
    21     owa_util.http_header_close;
    22     wpg_docload.download_file (l_blob);
    23  end image_display;
    24  /
    Procedure created.As suggested in a few OTN threads, I did this too (although I don't quite understand WHY, as I created the procedure in a schema I use in Apex; there are no other users involved). Anyway: I thought that it won't do any harm (but it didn't do any good either).
    SQL> grant execute on image_display to public;
    Grant succeeded.
    SQL> create public synonym image_display for radni.image_display;
    Synonym created.Back to Application Express: I created a Reports Region (Type: SQL Query). Its source is :
    select
      id,
      file_name,
      mime_type,
      dbms_lob.getlength(blob_content) len,
      '<img src="#OWNER#.image_display?p_id='
             || NVL (ID, 0)
             || '" height="'
             || 120
             || '" width="'
             || 120
             || '" />' image
    from pm_materijal
    where id = :P7_IDFinally, run the page! Reports region contains a single record which displays information I selected in SQL*Plus (so it seems that query DOES return something, and - I'd say that it is correct), but - instead of an image - there's an "invalid (broken) image" icon (you know, a small white rectangle with a red <font color="red">x</font>).
    I can't figure out what I did wrong. It should work, but it doesn't. Could someone, please, point me to the right direction?
    Regards,
    LF

    Patrick said: specify your schema name instead of the #OWNER# placeholder
    I said: while I was trying to make it work, I used "schema_owner.procedure_name" notation too but that didn't help eitherOracle user name is "RADNI" (the one I used to create objects, I was connected to it in SQL*Plus - all my previous copy/pastes were taken while connected to that user).
    So I tried with
    - <img src="radni.image_display?p_id=...   => didn't work
    - <img src="RADNI.image_display?p_id=...   => didn't work
    - <img src="image_display?p_id=...         => worked
    {code}
    I just started using Application Express so, basically, every day I discover something new. I purchased a book (based on Apex 3.2) so I thought that I'd rather stick to it until I +get a feeling+ and then, hopefully, move on to a higher version.
    By the way, looking forward to see you on HrOUG in two weeks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • My father accidentally sent me an APPLE (not App or iTunes) Store gift card instead of iTunes, is there any way I can transfer the money to my iTunes? I've tried almost everything.

    My father accidentally sent me an APPLE (not App or iTunes) Store gift card instead of iTunes, is there any way I can transfer the money to my iTunes? I've tried almost everything.

    Buy an iTunes card with your Apple card.
    -> http://store.apple.com/us/personalize/itunes?product=ITUNES_GIFT_CARDS-101703
    or go to an Apple store.

  • I have the ipad2 wifi and now want the 3G instead, any options out ther besides the obvious.

    I have the ipad2 and now I want the 3G instead. Any options out there besides the obvious??

    The iPad itself can't be upgraded. If you want 3G and you don't want to sell yours (or return it if you are within the returns period), then you could use an iPhone as a personalobile hotpost for it, or get a mifi device which act as a mobile hotspot

  • I would like to download 7.5 instead of 9, is there a link I can have?

    My computer recently got a virus so I had to clear my computer back it's basic mod. I had been using Firefox 7.5 instead of the new one. I would like to have the old set up back. Is there any link I could get to have 7.5 instead of the new one?

    Any particular reason why you want to downgrade to 7.01 ? when it would be potentially vulnerable due to not having security fixes that are in newer versions.

  • Premiere Elements 11: Got an m2v file instead of mpeg, and there is no audio

    I rendered a video out of Premiere Elements 11 using the "share" function and wanted it to be an Mpeg-2 or Mpeg-4.  What I got was 5 different files .ac3, .m2v, .mpg.xmpses_Audio, mpg.xmpses_Video, and .mpg.
    The .mpg file is zero bytes and I get a Windows error if I try to play it that says "Windows Media PLayer cannot play the file.  The player might not support the file type or might not support the codec that was used to compress the file."
    When I try to play the .m2v file there is no audio. 
    What do I need to do next?  I need this file to end up as a Mpeg
    Thanks

    What computer operating system is your Premiere Elements 11 installed on? I ask that in case we need to get into any computer specific details in the troubleshooting exchanges. Windows 7
    1. What are the properties of your source media? Video shot from video camera that creates .mp4 files
    2. What did you or the program set as the project preset to match the properties of the source media? I let the program match the Preset
    3. What were your specific choices in the Export area...
    Publish+Share
    Computer
    AVCHD
    and one of the MP4 presets
    OR
    This option below was what I used
    Publish+Share
    Computer
    MPEG
    and one of the MPEG2 presets
    OR
    Other
    If you have jumped from one to the other in trying to find answers to your problems, then for troubleshooting purposes let us focus on
    a. Properties of Source Media See above
    b. Project Preset Selected See Above
    c. What are the requirements for your export Requirement is MPEG-2 or MPEG-4
    I will customized suggestions based on your reply details.

  • Website does not add items to cart, instead replaces items so there is always the latest item in cart

    I had problems adding to this cart - that was resolved by clearing history. Now I can add items to cart but cannot update cart with additional items. the item in the cart are replaced

    I've had the same 5002 error for 3 days: "We could not complete your iTunes Store request. An unknown error occurred (5002). There was an error in the iTunes Store. Please try again later."
    However, I WAS able to purchase songs after I changed Preferences from Shopping Cart option to 1-Click Purchase.
    I know that my Shopping Cart is FULL - (basically used as a pending wish list). Perhaps this is one problem with the iTunes Store. Fortunately, I printed a list of my Shopping Cart several weeks ago.
    I'm going to try deleting and re-installing. Any more ideas would be welcome.

  • I would like to use iCloud drive on my iPhone instead of dropbox but there is no app. Any suggestions??

    Hi -
    I would like to use iCloud drive on my iPhone and access all my files. I can do that very easily using Dropbox but I cannot find an app for iCloud Drive that works the same way. Am I overlooking something?????

    For individual Apps to access iCloud drive, the APP Developer must set that up.  If it is not an option in a specific application that you use, you should submit feedback to the App Developer to add the feature.
    HTH

  • When i bought my elements i selected for mac, but when i downloaded i got elements for windows and i paid for it as well. I want to get a download link for mac instead of windows, but there is no freaking way to contact these buys by phone! Any help? I am

    Let me know please, i don't want to spend another 130 euros on this..

    Please see Return, cancel, or exchange an Adobe order -
    http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Get chat help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )

  • Many emails I receive have characters like A with an accent instead of £. Is there any way to fix this?

    I am using Thunderbird 31.3.0.

    Sounds like the email has not used the correct character encoding.
    Character encoding (temporary):
    * 'View' -> Character encoding'
    then select the desired character encoding.
    * Tools > Options > Display > Formatting tab
    * click on 'Advanced' button
    "Incoming Mail" pulldown menu:
    Thunderbird will normally use each message's stored character encoding, or auto-detect it, but you can set a default character encoding for message display by using this pulldown.
    Post image of what you have in the fonts and Encoding window.
    See image below as example
    To see what charset is used in email.
    Select email in list which has wrong characters, to view in Message Pane.
    Click on 'Other Actions' and select 'View source'
    Look for :
    '''charset''' ="utf-8"
    '''Content-Transfer-Encoding''': 7bit
    What do you have for those two lines?

  • Everytime I do a serch and click on what I want well instead of taking me there it redrects me some where else can you help me solve this please

    This happens no matter what search engine I use. It will redirect me everytime can yoy tell me how to stop this please

    Greetings.
    It sounds more like a virus or malware. Scan your computer with anti-virus, anti-malware of your preference.
    Other than that tell use where it redirects you. Or better yet search it in google. Most infections redirect you to a specific place and you can use that to identify what the problem is exactly. Either way you need to give us more information for anyone to be able to help you.
    Cheers
    RaZoR

  • How can I get my phone to set up a POP3 account instead of IMAP?

    I use a premium Mail.com e-mail account and on my old 3GS, I had it set up as a POP3 account instead of IMAP.  There used to be an option at the top when creating an e-mail account to choose POP or IMAP but this option is no longer present in the 4S. 
    I follow the same process as on the 3GS - choose 'Other' when adding a mail account and I then enter all the details.  It was this screen on the 3GS that allowed me to choose the type, but not anymore.  I then click 'Next' and the phone automatically configures my account and sets it up as IMAP.  After the account has been set up, there doesn't seem to be a way to change it to a POP3 account, I have also tried that as well.
    Having an IMAP account is a real pain because, even though I choose to save Drafts, Sent Messages and Deleted Items on the server, my iPhone still insists on creating new folders for these so I have multiple folders on my iPhone and then I end up with multiple folders on my web server as well, which looks a mess when I log in.  I usually end up deleting these folders.
    Does anyone know how I can make my iPhone set up a POP3 account instead of an IMAP?  I cannot see why this should not be possible on a phone that claims to be as advanced as the 4S does...

    Hotmail opens in a new window because the code or set of instructions on the MSN website tells Firefox to open Hotmail in a new window. I would suggest you right click on the Hotmail button and left click on "Open Link in New Tab". This will open a new tab in the current window.

  • When I right-click a link, and choose "Open in new tab", it opens in a new window instead. How can I fix this?

    So I have Firefox open, and I've tried to open tabs by right clicking and choosing "open in new tabs", but it opens in a new window instead. And yes, there are no problems with being able to open new tabs by pressing the ctrl t.

    The Ask Toolbar is causing that in the Firefox 3.6.13+ versions. Uninstall that extension.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • Fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Is there a way to delete an email on my computer and have the same message disappear on my phone and tablet ?

    Please can someone explain how to configure my messages to delete from my Samsung laptop, and at the same time have them disappear from my Samsung Galaxy Tab 2 and my Samsung Galaxy 111 Phone. I am using Windows 7 64 Bit and can't keep up with the huge amount of emails I get on a daily basis. I know that I need imap instead of pop3 but there has to be an easier way to solve this. Thank you.

    ''I know that I need imap instead of pop3''
    That's the solution.
    ''but there has to be an easier way to solve this.''
    I don't think so.

Maybe you are looking for