Popup Box

Can I set it up where a little box pops up when I scroll over certain words? For example, my site has Scripture references. I want people to be able to point to the reference and a box pops up with the verse.

Hello,
You can put those words (on hovering over which, the popup box should appear), in a textbox over a tooltip widget trigger. When you hover over it, it would show the contents that you would put in the target area of the tooltip widget.
Cheers
Parikshit

Similar Messages

  • I have a laptop and a desktop both Macs all of a sudden the desktop wont let me get into my bank account a popup box comes up when I click login asking if I want to save, open with or do automatically, never had this before my laptop is fine

    I click on login on my Mac OSX and a popup box appears with save, ope with or do automatically if I click on any of those it does not get me into anything
    Go to preferences and not sure what I should be changing to rectify the problem
    My laptop is fine

    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • No print dialogue popup box in Windows 7

    Hello Everyone,
    I am running Windows 7 with Adobe CS5 premium. All printers are working and printing outside of this program. I have changed
    default printers back and forward, problem still exists. I created a label for school books, and when I go to print it out, no print dialogue
    popup box appears. The print option is then greyed out until I reopen CS5. When I opening a desktop pic and open it in CS5 though
    and go to print the popup box for printing appears, but their is a wait. I also tried to save my created document as something else
    but I don't have any other options except PSD and some others I have never heard of. I have been using photoshop for sometime and
    decided to upgrade from PS7 as not many brushes and the great new stuff out there is compatible. I feel like going back to PS7.
    Can any one help me solve this, it would be appreciated. Thank you

    Sorry it has taken me so long to respond.  Printer drivers for Windows 7 have been installed correctly.  It doesn't matter what brand printers are involved.  The label printer is the one that has the smaller page size obviously -- brand can
    be Cognitive, Godex or Zebra.  All respond the same way.  If you have the 8 1/2 x 11 printer set to the default printer but you want to print to the label printer about 5 or 6 labels spit out because it is trying to print 8 1/2 x 11 instead of 2.0
    x 2.4.  It works the opposite way if the label printer is set to the default.  If you have the label printer set to the default it will print a tiny report on an 8 1/2 x 11 sheet of paper on the report printer.  In this example it is a Canon,
    but it doesn't matter what brand the report/invoice printer is.  Keep in mind this is choosing the printer from Internet Explorer that you want to print to and even confirming that the printer preferences show correctly from the printer dialogue window
    in IE.  This is using IE9 but it happens in 8 as well.  It DOES NOT happen in Microsoft Word, Chrome or Mozilla.  I just sent a 2.0 x 2.4 Word document to the label printer when the default printer was set to the Canon and it print just fine.
     I also sent a regular size document to the Canon with the label printer (RT200) set as the default.  It also printed normal size.  A person should be be able to attach 2 printers to a computer and print to either one from Internet Explorer
    and have it use the print preferences assigned to their chosen printer regardless of whether it is set as the default or not.  We developed our web-based application to use Internet Explorer so there are other issues that keep us from using another browser
    --our customers are told that we only support IE, but if this doesn't get resolved we might have to change that. 
    Thank you for any help you are able to provide. 

  • How do you set the number of visible items in the popup box of a JComboBox?

    Hi,
    Do you know how to set the number of items that shall be visible in the popup box of a JComboBox?
    I have produced an implementation of an autocomplete JComboBox such that following each character typed in the text field, the popup box is repopulated with items. Normally 8 items are visible when showing the popup box. Sometimes even though the list of items is > 8 the popup box shrinks in height so that 8 items are not visible.
    Thanks,
    Simon

    Below is my JComboBox autocomplete implementation.
    The problem seems to occur when the list of items is reduced in number, the button selected and then the list size increased, the popup box does not automatically increase in size. I have tried setMaximumRowCount � but does not resolve the problem.
    To see how it works:
    1)     click in text field.
    2)     Type 1 � the full list of items are shown.
    3)     Type 0 � the list has been narrowed down � the popup box is greyed out for remaining items.
    4)     Type Backspace � the full list of items is redisplayed.
    5)     Type 0 � to narrow down the list.
    6)     Select button � the popup box is invisible.
    7)     Select button � the popup box is displayed with 2 items.
    8)     Select Backspace � here is the problem � the combo box list contains all items but the popup box has been shrunk so that only 2 are visible.
    9)     Select button � popup box is invisible.
    10)     Select button � popup box is as expected.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.util.Enumeration;
    import java.util.Vector;
    import javax.swing.plaf.basic.*;
    class Test
    private JComboBox jCB = null;
    private JTextField jTF=null;
    private String typed="";
    private Vector vector=new Vector();
    public Test()
    JFrame fr=new JFrame("TEST ComboBox");
    JPanel p = new JPanel();
    p.setLayout( new BorderLayout() );
    ComboBoxEditor anEditor = new BasicComboBoxEditor();
    String[] s = new String[30];
    for (int i=0; i<30; i++) {
    s[i] = (new Integer(i+10)).toString();
    jTF=(JTextField)anEditor.getEditorComponent();
    jTF.addKeyListener(new KeyAdapter()
    public void keyReleased( KeyEvent ev )
    char key=ev.getKeyChar();
    if (! (Character.isLetterOrDigit(key)
    ||Character.isSpaceChar(key)
    || key == KeyEvent.VK_BACK_SPACE )) return;
    typed="";
    typed=jTF.getText();
    fillCB(vector);
    jCB.showPopup();
    jCB = new JComboBox();
    jCB.setEditor(anEditor);
    jCB.setEditable(true);
    boolean ins;
    for (int x=0; x<30; x++)
    ins = vector.add( new String(s[x]) );
    fillCB(vector);
    jCB.setSelectedIndex(-1);
    fr.getContentPane().add(p);
    p.add("South",jCB);
    p.add("Center",new JButton("test combo box"));
    fr.pack();
    fr.show();
    public void fillCB(Vector vector)
    typed = typed.trim();
    String typedUp = typed.toUpperCase();
    jCB.removeAllItems();
    jCB.addItem("Please select");
    for(Enumeration enu = vector.elements(); enu.hasMoreElements();) {
    String s = (String)enu.nextElement();
    if (s.toUpperCase().startsWith(typedUp)) {
    jCB.addItem(s);
    jTF.setText(typed);
    public static void main( String[] args )
    Test test=new Test();
    Many thanks,
    Simon

  • Every time I try to access the ASPX pages, the browser doesn't display the pages. Instead, a popup box asks if I want to open or save

    every time I try to access the ASPX pages, the browser doesn't display the pages. Instead, a popup box asks if I want to open or save

    What site is doing this? 99% of the time it is a problem with the headers sent from the web server.

  • Display popup box to enter the name for batch input

    Hi Experts,
    I am working on the ALV display.'
    I am giving two push buttons on the ALV Screen in the application toolbar.(Ex: 1.Online 2.Batch Job).
    If the user will select the ONLINE the process is going good.
    If the user will select the BATCH JOB it has to display popup box to enter the BATCH name and with that batch name i have to create the batch for the program in SM35.
    Can any one please help me in doing so.
    (to display popup box to enter the BATCH name and with that batch name i have to create the batch for the program in SM35).
    Thanks in Advance,
    Kruthik

    Hi,
    You can display a popup box by creating the screen and screen elements in the screen painter and use
    CALL SCREEN scr STARTING AT x1 y1 ENDING AT x2 y2.
    X and Y are the coordinates of the screen you want to display as a pop up.(used to manipulate the size of the pop up screen/window)
    Hope it helps.

  • Email through a dialog popup box in ABAP

    Hi all
    We have a requirement where in a user click on a button on the screen , the system should respond with a popup box where in he can enter some text and send it as an email.
    I looked at the function SOTR_DIALOG_SEND_EMAIL . It is able to bring in the popupbox , enter text and also has a button to send email But when I execute this function I am getting a ABAP dump.
    Request your  help on this. This seems to be the function I need to use but it fails.
    Looking forward for some help,
    Regards
    Kumar

    HI guys
    Thanks for your reply.
    Currently I got around my requirement using a SEND function in an ALV grid to enable the email service. But still I feel that is too complex for the user community and the need we are addressing.
    I tried the other techniques too with popup edit and then a email FM module. All of them works but I still feel it is simpler for our application to bring in a popup with edit capability , a place to put in an internet address , and a send mail button which  would be similar SOTR_DIALOG_SEND_EMAIL function. Unfortunately this function fails when I click send. May be I am making some mistake or not using it the way it should be.
    The advises and the links send via your replies provided me with a wealth of information related to this topic , which I am sure will be very useful in other applications which would come in our way. I appareciate and thanks for your time taken in response to my query.
    I request  that If you or any one find some way  or know of some way of combining popup / edit and send capability , let me know.
    Regards
    Kumar

  • Flex Mobile - Alert and Information Popup Boxes

    Since a Android-looking popup box doesn't yet exist in the Hero SDK, I thought I would put a pretty good looking component together.
    You can download it (and the sample code) here:
    http://www.digitalretro.tv/components/InformationBoxTest.fxp
    A real simple example in in the project, for both an Info and an Alert.
    I currently only support an "OK" button, but I will be adding a Yes/No and OK/Cancel later this week.
    Hopefully this will save someone some time.
    Enjoy and feel free to use this in your code (commercial or non-commercial), just leave the copyright code in the component source file in place.
    Thanks.
    Darren

    Hi.
    I tried the Messagebox and it works great but is it possible to use a TextInput with it?
    I added a Textinput and when i enter the Textinput i got an Focusmanager is null error:
    private function touchMouseDownHandler(event:MouseEvent):void
             isMouseDown = true;
             mouseDownTarget = event.target as InteractiveObject;
             // If we already have focus, make sure to open soft keyboard
             // on mouse up
           if (focusManager.getFocus() == this)
                 delaySetFocus = true;
             // Wait for a mouseUp somewhere
             systemManager.getSandboxRoot().addEventListener(
                 MouseEvent.MOUSE_UP, touchMouseUpHandler, false, 0, true);
             systemManager.getSandboxRoot().addEventListener(
                 SandboxMouseEvent.MOUSE_UP_SOMEWHERE, touchMouseUpHandler, false, 0, true);
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at spark.components.supportClasses::SkinnableTextBase/touchMouseDownHandler()[E:\dev\hero_private\frameworks\projects\spark\src\spark\components\supportClasses\SkinnableTextBase.as:2140]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.managers::SystemManager/mouseEventHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\managers\SystemManager.as:2924]
    Does anyone tried to use a TextInput or Textarea?
    I think it's the a problem with the Keyboard. Does mobile air can't use the "Android" Keyboard in Popup's?

  • Can you tell me what is the function modue to get POPUP box

    Hi Folks,
    can you tell me what is the function module to get the POPUP box.
    Thanks in Advance,
    Lakshmi

    Hai use
    POPUP_TO_CONFIRM
    check the following Code
    CONCATENATE 'Send selected spools to the: '
                 altdest
                ' Printer.' INTO V_TXTQUES SEPARATED BY SPACE.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
        TITLEBAR                    = C_TITLEBAR
      DIAGNOSE_OBJECT             = ' '
        TEXT_QUESTION               = V_TXTQUES
      TEXT_BUTTON_1               = 'Ja'(001)
      ICON_BUTTON_1               = ' '
      TEXT_BUTTON_2               = 'Nein'(002)
      ICON_BUTTON_2               = ' '
      DEFAULT_BUTTON              = '1'
       DISPLAY_CANCEL_BUTTON       = ' '
      USERDEFINED_F1_HELP         = ' '
       START_COLUMN                = 6
       START_ROW                   = 6
      POPUP_TYPE                  =
      IV_QUICKINFO_BUTTON_1       = ' '
      IV_QUICKINFO_BUTTON_2       = ' '
      IMPORTING
        ANSWER                      = D_ANSWER
    TABLES
      PARAMETER                   =
    EXCEPTIONS
       TEXT_NOT_FOUND              = 1
       OTHERS                      = 2.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF D_ANSWER = '1'.
    Thanks & regards
    Sreenivasulu P

  • How to increase the iCal Alert Popup BOX height?

    I would like to be able to increase iCal's Alert popup box to show more than two concurrent alert notifications at one time.  Ideally, this popup box would dynamically size itself to the number of active alert notifications up to the available screen space.  A second less elegant solution would be to enable the user to resize the iCal Alert popup box manually.  A third  even less elegant solution would be to statically redefine a new default height in terms of either active alert notifications or pixels.  Anything would be better than the limitations currently in place...
    Here is an example of three concurrent alerts.  In this case, the user must scroll down within the iCal Alert popup box to see Alert #3.

    Hi
    It's not at all possible.
    If you want to use a textbox with muliple line items... you need to use Text Edit control. If you want to use that click on the following link for clear information:
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/fe9f668af411d3805e00c04f99fbf0/frameset.htm
    Regards
    Surya.

  • Popup box in Start routine

    Hi,
    I need a popup box appearing in the start routine into an ODS.
    Data has to be entered in that box and being processed into the ODS.
    Is their any SAP Function module I could use? Or any abap example based on your experience?
    Regards,
    Hans

    My idea is the following:
    create a little pgm (to run on line) in which you call a selection screen and your users can insert what you need...then, your pgm will insert these parameters in a dedicated table (and before you can delete its previous content...); finally your program can raise an event that you can link to start a process chain that execute the dataload...
    in the start routine, write the code that select the parameters from the table above-mentioned and... voilà !
    No table maintenance is required and you can obtain what you want !
    Hope it helps!
    Bye,
    Roberto
    please don't forget to reward the answers...it's THE way to say thanks here...

  • Popup box in Adobe Muse

    hello,
    I have a question with Abobe Muse
    Can we make a popup box in webpage 
    I am working on my thesis about with map and places
    what I want to do is when we click at the pin on a map and the text box will come up
    thank you in advance .

    Please refer to similar discussion here :
    https://forums.adobe.com/thread/1388792
    Thanks,
    Sanjit

  • Ability to call selection profiles in planning book using popup box

    Hello does anyone know if it is possible to call a selection profile in a planning book using a popup box?
    i.e. perhaps using a macro ?
    Any help is greatly appreciated.
    Thanks
    Edited by: Ballance Agri-Nutrients on Feb 17, 2009 3:10 AM

    Just wondering what is the business need this pop-up, based on user settings list of selection profiles already filtered and displayed in the planning book. User can select the profile just by clicking the list of selection profiles provided.
    For the web enabled users, they can select data view, and selection profiles before they view the planning book screen. Check with your technical person they should be able to tell you if the same can be used and built a pop-up.
    Hope this helps

  • Every time I open Firefox 4 I get a popup box saying: "OPENING FIREFOX SETUP 4.0.1.exe, Binary File from..." with different download link addresses

    Every time I open Firefox 4 a popup box keeps trying to get me to run setup again. The box always reads: "Opening Firefox Setup 4.0.1.exe, Binary File from...." followed by a link address, which is different every time. Recent addresses: http://mirror.umoss.org.......also http://mozilla.mirrors.tds.net....also http://mozilla.ussg.indiana.edu
    and so on.
    Help! Thanks!

    I am having the same problem and it seems to have just started (6/15/11). I have tried reloading the program several times and even the first release of the 4.o with no success. The same scenario also occurs when I click to open a new "tab" after the browser is already launched.

  • Why do I get "Podcast Authorization Required" popup box?

    Since recently applying the latest update to iTunes to version 11.2.2.3, I now get the following message in a popup box whenever I manually update my podcast list:
    Podcast Authorization Required
    To access this podcast, you need
    to log in to www.mevio.com
    It wants a login and password to be entered. Hitting "cancel" makes it go away, but it'll pop up again sporadically as iTunes updates my podcasts.  Any ideas on how to stop this from happening?
    Another issue (possibly related to the above issue) is that iTunes constantly freezes/"not responding" when I manually update my podcasts.  Both of these issues have occurred regularly since I applied the latest iTunes updates.  Am I the only one who still hasn't learned not to trust any iTunes update from Apple?
    Thanks for any help anyone can give me.

    Do you have an add-on called '''Ghostery '''installed? I tried it once myself and if you don't disable certain options, you get those purple popups appearing as can be seen in your screenshot. Go to Tools | Add-ons | Extensions to remove it.
    If you can't find it, try running Firefox in [[Safe Mode]]. If it works correctly in that configuration, then one of your other add-ons is the culprit.

  • Select Single record from Popup box

    Hi Experts,
    I am calling zcomponent 2 from zcomponent 1 as POPUP screen and populating the table view.
    Now i need to select any 1 of the result from popup and be able to populate the data in the view of zcomponent 2 and close the popup box.
    Can any one help me with this ASAP please.
    Regards,
    Juturi.

    Hi Mario,
    Please take a look at this thread..
    Re: SELECT DISTINCT does not work in a recordset object
    cheers,
    Prashanth
    P.S please mark helpful answers

Maybe you are looking for

  • Restore only iPhoto library from Time Machine?

    Due to software issues, my disk was wiped clean and I was advised to restore everything manually, and not to restore from my Time Machine backup, to avoid reintroducing issues. This worked fine for everything except iPhoto. I can see my backup on my

  • How to change the capitalization date

    Hi , I carried out WBS to AUC settlement on 31.12.2009, due to which AUC cap. date becomes 31.12.2009. Now i want to change the cap date to 01.12.2009. How do i do it? Reversing the settlement using CJ88 can only change the first Acq date but not the

  • Automatically Shuts Down

    Basically I was trying to burn a DVD but there wasn't enough memory on my hard drive. I freed up enough room so that there's now about 20 GB. Then I tried to create a disk image of my project in iDVD and every time I try to do that the program just s

  • Cancel my subscription, and request refund.  My order number is AD014054609.

    How do I cancel my subscription, and request refund.  I subscribed 3 days ago and have yet to get the software to work.  My order number is AD014054609

  • Loading of hierarchies in BPC 7.5 failing

    Hi, when trying to load hierarchies from an InfoObject (BPC 7.5) i get the following error message. "No records are returned from <InfoObject Name>" It's a warning. But as it says no data is returned. The hierarchy is available and activated in the B