Can I devise a popup box as a simple "Decline/Accept" button functionality?

I am playing around with Actions trying to create a popup box that will appear in front of a desired page with a 'Condition of entry' paragraph and buttons allowing a "Decline / Accept" option. If decline it takes a visitor back to a former page, while clicking 'Accept' allows a visitor to proceed to the page in question.
I do not need strict high security and fancy ASP or PHP or whatever, just regular html with javascript. Would this need to be set up with customized scripting, or can it be done using a combination of Actions - and which Actions? I am not over familiar with the use of Variables or Functions, or if this will require Cookies. Can I also incorporate a means of preventing the desired page (contents) from loading until the Acceptance button has been clicked?
Any assistance would be appreciated.
Martyn
Previous posting http://www.adobeforums.com/webx?224@@[email protected]

Hello fountainbiz
The properties of the print purely depends upon the printer and the printer drivers.
Kindly check through the same, will surely resolve the problem
Happy browsing

Similar Messages

  • How can I make a check box hidden (invisible) if a radio button is selected?

    I am using Adobe Acrobat X Standard, and I can't seem to find a JavaScript that will do what I want.
    I need one check box to be invisible or hidden if a certain radio button is selected.
    Ex: if a user selects "yes" from the radio button list, I need one of 2 check boxes lower on the form to be invisible/hidden/non-selectable.
    Can someone please help me?

    Does this have something to do with a "field dependency" setting within Acrobat itself?
    I am so confused at this point, I don't even know where to look anymore.

  • How can we create a popup window for confirmation while clicking of button

    HI Friends,
    I am creating a application, In which I want to create a popup window for confirmation on clicking of a button.
    I also need two buttons on popup window i.e. 'Yes' & 'No'.
    On yes i want to perform some operation and on No i want to cancel that operation.

    Hi Narendra,
    try using the following code in ONACTION of ur button for popup :
    * Popup
       *  Generate Popup
        DATA lo_window_manager TYPE REF TO if_wd_window_manager.
        DATA lo_api_component  TYPE REF TO if_wd_component.
        DATA lo_window         TYPE REF TO if_wd_window.
        lo_api_component  = wd_comp_controller->wd_get_api( ).
        lo_window_manager = lo_api_component->get_window_manager( ).
        lo_window         = lo_window_manager->create_window(
          window_name          = 'W_POPUP'
         window_position = if_wd_window=>co_center
          message_display_mode = if_wd_window=>co_msg_display_mode_selected
          button_kind          = if_wd_window=>co_buttons_yesno
          message_type         = if_wd_window=>co_msg_type_none
          default_button       = if_wd_window=>co_button_yes
        DATA:  l_api TYPE REF TO if_wd_view_controller.
        l_api = wd_this->wd_get_api( ).
        " subscribe action for Ok button
        lo_window->subscribe_to_button_event(
                     button            = if_wd_window=>co_button_yes
                     action_name       = 'OK_POPUP'
                     action_view       = l_api
                     is_default_button = abap_true ).
        lo_window->open( ).
    regds,
    amit

  • 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

  • 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

  • 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

  • WebDynpro ABAP Popup Box where data can be entered

    Hello
    I was wondering if anyone was able to describe how to create a popup in WDA, the requirement being that the popup needs to display a table of 3 lines with 3 columns.   Some of the fields need to be able to accept input.   The business scenario is that I have a ALV table with pricing in it and the user needs to be able to drill down (click on a Link to Action in the WDA scenario) on a price to see the validity dates (DATAB / DATBI) of the price they are interested in and then be given the opportunity to change the price (and specify new validity dates).
    I would prefer to offer this to the user as a popup box displayed on top of the ALV table.
    All the reading and examples I have found to date are about using popup boxes for messages, warnings, etc.
    Thanks very much in advance.

    Hi Tony,
    Yes you can very well display the POP UP with ALV , with editable fields. You can use the existing window and view with all elements to be displayed as a POP UP.
    Just use the Code wizard and select the check box for generating pop up.In the code that generates just pass the name of the window you have created.
    This is the code that gets generated.
    method WDDOINIT .
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_window         TYPE REF TO if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window         = lo_window_manager->create_window(
                         window_name            = 'ZTEST'
    *                    title                  =
    *                    close_in_any_case      = abap_true
                         message_display_mode   = if_wd_window=>co_msg_display_mode_selected
    *                    close_button           = abap_true
                         button_kind            = if_wd_window=>co_buttons_ok
                         message_type           = if_wd_window=>co_msg_type_none
                         default_button         = if_wd_window=>co_button_ok
      lo_window->open( ).
    Regards,
    Runal

  • 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. 

  • 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't screen capture popup windows in Flex web-based application

    Hi all,
    I'm a tech writer looking for a tool that will capture single popup windows of a flex-based web application (perl popups have the same issue).
    Snagit (and all the freeware I've tried), doesn't recognize the popup window as a selectable element, even though the mouse can move the popup window anywhere in the application window.
    We've got lots of snapshots to take, and do not want to have to crop a region and edit out the white space (top of the popup box has square corners, bottoms are rounded).
    Does anyone know of a screen capture utility or way to get these windows in a single click like we can with the standard old window dialog boxes?
    Any help is greatly appreciated!
    Thank you!
    joan

    Hi Alex,
    I don't quite understand.
    Are you suggesting a way to get the snapshots from the server generating the image and not as an end user who opens the application and trys snapping from the Internet Explorer browser window?
    I'll need to be more specific when communicating with the developer. Can you provide a little more direction?
    Thank you!
    :-) joan

  • 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...

  • 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

  • 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.

Maybe you are looking for