I want to build a form with radio buttons to customers limited checking all the options.

I want to build a form with radio buttons to customers limited checking all the options. I have a range of products and to quote accurately, I want to get specific information.

If I get this, what you want to display the shape options to specific customers, not to all the viewers of the site?

You must create a secure area where authorized viewers can connect and view the form with all the options, form itself we can not set up since what few customers are going to see other options and others are going to see another.

This is possible since the end of your accommodation. Or if you are using Adobe server for hosting, then you can create profiles for clients and then set up another form altogether to achieve this goal.

Thank you

Sanjit

Tags: Adobe Muse

Similar Questions

  • Using switch and case with Radio buttons

    Can I use the case switch with radio buttons?

    What will be the parameter to determine the choice like xfa.event.newText is used for the drop-down list.

    Aditya

    Hi Aditya,

    Select the exclusion group in the hierarchy (you have no script each option button) and select the click event. The switch statement would use the this.rawValue.

    Hope that helps,

    Niall

  • I want to create a form with a Manager to fill out a section and a member of the staff another. The two sections protected by different password.

    I want to create a form with a Manager to fill out a section and a member of the staff another. Should be able to change the other. Different sections is password protected with different passwords? I think it might be a function of "official use only."

    You can use 2 forms in a portfolio.

  • I made a form for my clients, I did this form with a button "submit" button, the button will save the form and send it, I did the URL to go to a different (different to mine) e-mail address but when I distribute the form and it is complete

    I made a form for my clients, I did this form with a button "submit" button, the button Save the form and send it, I did the URL to go to a different (different to mine) e-mail address but when I distribute the form and it is supplemented by my clients it send to my email address not the URL how to change this.

    No matter how you have configured the Send button when you use the feature distribute the form. There are some e-mail address is in your identity preferences (Edit > preferences > identity) and use it. If you can change the email address it or not to use distribute the form and the button send the value you want.

    One thing that happens when you use the feature to distribute the form is the form is enabled Reader, you can do separately, but you really shouldn't do if the form must be used by others. The dispenser a form must activate using their copy under license of Acrobat Reader.

  • Dialogue with radio buttons

    Honourable experts,

    I'm on Win7 64 bit, CS6 (ID 8.1.0.420).

    Script of skills - somewhere in the "Very basic" level

    Now try to adopt, my needs, a dialog box with radio buttons, as in Script UI v2-2 Peter Kahrel, pdf, page 17:

    var w = new Window ("dialog");
    var radio_group = w.add ("panel");
    radio_group.alignChildren = "left";
    radio_group.add ("radiobutton", undefined, "InDesign");
    radio_group.add ("radiobutton", undefined, "PDF");
    radio_group.add ("radiobutton", undefined, "IDML");
    radio_group.add ("radiobutton", undefined, "Text");
    w.add ("button", undefined, "OK");
    // set dialog defaults
    radio_group.children[0].value = true;
    function selected_rbutton (rbuttons)
    {
    for (var i = 0; i < rbuttons.children.length; i++)
    if (rbuttons.children[i].value == true)
    return rbuttons.children[i].text;
    }
    if (w.show () == 1)
    alert ("You picked " + selected_rbutton (radio_group))
    

    My version is designed for operation on the text selected (with the text tool). And here's the problem.

    After selecting the text with Ctrl + A, or shift + end or Ctrl + Shift + end - then - hit KB shortcut assigned to the script I usually 'loose' the mouse pointer. It is still there, but turns out is invisible on the entire InDesign window. "Usually" means approximately 5-6, 10 times... Who escapes from the script window and still hit the shortcut script works - next try mouse pointer remains visible. Until you select another part of the text...

    If the text has been selected with the mouse - or - script is invoked by double-clicking its name in the actions palette, everything goes well, always. Also works well with other types of selection.

    Changing shortcut KB has no effect.

    Replace a mouse has no effect. Microsoft (wired) and mouse optical Logitech (wireless) tested.

    However:

    on a system that is completely up-to-date (Windows 10 Pro N, 1511 version, build 10586,63 x 64 / InDesign CC 2015.2, to build a 11.2.0.100 x 64) it works - there is no mouse pointer disappears.

    Have not the opportunity to test on any other configuration now.

    Could someone confirm this mouse related volatility on Win7/CS6, or is it quite unique in my system?

    And another question:

    Is it possible to activate here cycling through radio buttons to arrow keys, as he works in the script of this Marc Autret?

    http://www.Indiscripts.com/post/2009/09/clean-up-your-pasteboard

    He would let me live with the 1st problem unsolved... Anyway, the keyboard-based workflow is preferable.

    Behold, this is my version changed so far. However, it comes in the same way as described above.

    w=new Window("dialog", "Code");
    radio=w.add("panel", undefined, "Choose Action");
    w.alignChildren="fill";
    radio.optionbtns=radio.add("group");
    radio.optionbtns.orientation="column";
    option1=w.add("radiobutton", undefined, "Action One");
    option2=w.add("radiobutton", undefined, "Action Two");
    option3=w.add("radiobutton", undefined, "Action Three");
    option4=w.add("radiobutton", undefined, "Action Four");
    option1.value = true;
    w.add ("button", undefined, "OK");
                if (w.show() == 1){  
         if (option1.value == true)  
         {alert("Action One!"); exit();};
         if (option2.value == true)  
         {alert("Action Two!"); exit();};
         if (option3.value == true)  
         {alert("Action Three!"); exit();};
          if (option4.value == true)  
         {alert("Action Four!"); exit();};  
        }
    {  
        exit();  
        };
    

    Your comments are greatly appreciated.

    Except the upgrade - this isn't an option so far, sorry, Adobe...

    Hello

    small changes, try this:

    var
      w=new Window("dialog", "Code"),
      radio=w.add("panel", undefined, "Choose Action"),
      option1=radio.add("radiobutton", undefined, "Action One"),
      option2=radio.add("radiobutton", undefined, "Action Two"),
      option3=radio.add("radiobutton", undefined, "Action Three"),
      option4=radio.add("radiobutton", undefined, "Action Four");  
    
    w.add ("button", undefined, "OK"); 
    
    option1.value = true;
    radio.alignChildren="left";
    radio.margins = [10,20,10,10];
    
    function handle_key (key)
    {
      var
      scope = radio.children.length,
      p, newPos, step;
      switch (key.keyName)
      {
      case "Up": step = -1; break;
      case "Down": step = 1; break;
      default : return;
      }
      for (p = 0; p < scope; p++)
      if (radio.children[p].value) {
      newPos = p + step;
      switch (newPos) {
      case scope: newPos = 0; break; // go to first
      case -1: newPos = scope - 1; // go to last
      }
      radio.children[newPos].value = true;
      break;
      }
      } // handle_key
    
    w.addEventListener ("keydown", function (k) {handle_key (k)});
    
    if (w.show() == 1){
         if (option1.value) alert("Action One!");
         if (option2.value) alert("Action Two!");
      if (option3.value) alert("Action Three!");
      if (option4.value) alert("Action Four!");
        }
    else {
        exit();
        };
    

    Can't help you with strange behavior mouse (no idea)

    Jarek

  • jdev11 - how the code filter additional liaison with radio buttons?

    Using JDev 11.1.1.0.2, ADF BC for model, ADF Faces JSF to view, deploy to WebLogic 10.3 appserver, database Oracle 11

    I asked for help (a do my work ask), that I'm the only developer JDev in our shop, and I looked at this problem too long and now have obscured the problem. I don't really want the answer (rather the skills needed to solve this problem), but it will ;-)

    Installation program:
    ExecwithParam base where the logic is stored in the AppModule. At this point, there is only a single binding TechID variable, which is passed to four of your different and updates the where clause and calls on each VO of the AppModule executeQuery. Works great so far!

    Need:
    Add additional time based filter: Group of buttons on the Radio for the last 30 days, 60 days, 90 days, choose a date. If choosing a date is sΘlectionnΘe, then the user selects a date with a date picker, and all records by this date are used.

    Support:
    There is a date variable in each query, and a common type of DATE filterDate may be added to each to filter with somedatefield > =: filterDate in each VO

    Thoughts:
    I like to break things in simple parts, so how about starting just the radio button.
    My thinking goes like this:
    Add another variable of filterDate liaison to each of your. Add this to the App Module.

    So, how can I set up a radio button so that I can get the value of the selected and then button that convert a SYSDATE - value and which use th e App Module logic? I continue to think of the big picture end of case and forget everthing. I know that's not difficult, but just ask me for some advice.

    At one point, I was thinking to add a clove of support to the option button, then wasn't sure if it was the best way and don't know how I would get the value in the AppModule. Part of the problem is that I came across a mental block. If I add the components that aren't linked data, as a selector of dates, or checkboxes, radio buttons, etc.. How can I get the values in the AppModule? I've seen many examples of data to related components, but do not know how to mix and match the binding with just a rich component controls base such as an input control. (This may better ask in a different thread).

    Finally, what of the big picture, the part about the addition of the datePicker - of ideas?

    Like cable TV, characters hosted - the kind that are related in my case the code! (Reference of American humor, must be familiar with USA cable TV channel (I'm addicted to the show House))

    Thank you, Ken

    Ken,

    A small correction to your last sentence - you don't want to refer to the support of the AM bean - you want to refer to the AM of the bean to support.

    If you want a very simple way: find the service for your AM method in the data control palette, drag-and - drop it on your page as a button JSPX. JDeveloper will automatically add a binding for the action in the pagedef. Then, double-click the button that results and create a new method of bean of support for her (in front of JDev, don't remember what we call the dialog box) - given the option, say JDev to put the code to link to you - then the resulting method should have the code that calls the method via the definition of the page. Simply add a bit of extra code to determine and set the date.

    John

  • Small problem with radio buttons

    The form I designed is all complete, but the only question that I have is there is a list of radio button that gives me bad.  The list of radio button controls the presence of a section based on Yes or no.  After the selection is made, it works very well, but when the document is saved and reopened again as well the button Yes and radio are selected.  How can I fix?  Please help, thanks.

    Sorry, I don't understand - Group exclusion "drop-down.

    When you click on the exclusion of radio button group, is that the object > liaison palette should look like:

    Niall

  • I have about 14 000 songs in my library, about 4 copies of each of them. Try to remove duplicates, but can only do one at a time. I spent many hours, check all the files I want to delete only to find out that I can't delete them both?

    I have about 14 000 songs in my iTunes library, but really there are only about a quarter as much because there are so many duplicates. I don't know how they got there in the first place, and try to remove them is infuriating! I have already spent several hours going by checking all the files I want to remove (thinking that I would delete then all files at once) - only to find out that I still have to delete them one at a time. There must be a better way! Help, please.

    If you don't know that you want to delete all checked the songs in your library:

    • Create a new smart playlist with the following rules:

      This will show then checked all the songs in your library.
    • Select all the items in this playlist (Ctrl-A)
    • Hold the SHIFT key and press DELETE - follow the prompts to remove songs from your library and (if necessary) your PC media files

    In case of problem, you must back up your library before you do just in case the results are not what you expect - see tips to the user of turingtest2 on your iTunes for Windows with SyncToy to backup library for a suitable and recommended method.

    There is no 'simple' way to reliably remove duplicates from a library, but see the intelligence in this threadon the use of a scripted for removal of duplicates (for example).

    Long-term, try and avoid adding anything in your iTunes library that already exists in it - that's how arise the duplicates (unlike an opinion apparently dispersed, iTunes not of is duplicate anything in normal operation).  I've seen several comments suggesting here a few users to correctly copy their library from an old computer to a new one and then add the content of its media files - guaranteed way to finish with a copy of database entries or media files.

  • I used him copy / paste to add several checkboxes on my form, but now in preview mode when I check the first box it automatically checks all the boxes.  How can I stop this from happening?

    I used him copy / paste to add several checkboxes on my form, but now in preview mode when I check the first box it automatically checks all the boxes.  How can I stop this from happening?

    For later use, it happened because your fields have the same field name, and fields with the same name automatically have the same value.

    So all you had to do was so each had a unique name and it would have worked, but using the command create several fields is preferable because it renames the fields for rename you them.

  • My friend wants to re-establish its MacBook Air can do this without losing all the files on his iPhone?

    My friend wants to re-establish its MacBook Air can do this without losing all of its files on its iPhone, as they are related?

    Two different devices. She is fine as long as she has a full backup. Why she wants to do? Writing an effective communities of Apple Support question.

    Basic steps to follow for a clean install of OS X Lion and later

    Install or reinstall OS X from scratch

    Make sure that you have backed up your files because the following procedure will remove all of the hard drive.

    HD recovery start:

    Restart the computer and after the buzzer, press on and hold down the COMMAND and R until the menu screen appears.

    Erase the drive:

    1. select in the main menu disk utility and click on the continue button.

    2. once the charges of THE select your boot volume (usually Macintosh HD) in the

    list on the left. Click on the Erase tab in the main window of THE.

    3. set the type of format Mac OS extended (journaled). If necessary, click

    Security and button all the option data from scratch in a single pass. Click

    the clear button and wait until the process is complete.

    4 leave FROM and return to the main menu.

    Reinstall OS X: Select reinstall OS X and click on the install button.

    Note : You will need an active Internet connection. I suggest to use Ethernet if possible

    because it is three times faster than wireless.

    This should install the version of Mac OS X that you had installed it.

  • When I type a question in the search box, I want that my question to stay there until I checked all the results of the research

    I have Windows 7-64 bit

    When I type a Question in the search box, I want my Question to stay there, until I checked all the search results!

    Whenever I have check a result, my question goes, and then I have to type my Question even once! We don't waste any the end of time!

    My Question must stay there until I've done my research and I hit another Question!

    Thank you.

    N.Williams.

    Original title: Windows search problem

    Hello

    If you run a search in Windows 7 from the Start Menu search box, the search string is not saved in the search box. This is normal.

    However, if you are looking for using the search box on the upper right corner of the Windows Explorer window, the search string is saved in the search box and stays there until you delete it or close the Windows Explorer window.

    Reference links:

    Windows Search in Windows 7: http://Windows.Microsoft.com/en-us/Windows7/products/features/Windows-search

    Find what you are looking for: http://Windows.Microsoft.com/en-us/Windows7/help/find-what-you-are-looking-for-staying-organized-in-Windows-7

    Hope this information helps.

  • Is it possible for someone to insert a logo when you fill out a form to fill out? I'm looking for all the options under the button 'add a text field.

    I have created a form to fill out that is a contract, but I need a way for the person who is to fill the form to insert their logo.  Is it possible for someone to insert a logo when you fill out the form to fill out? I'm looking for all the options under the button 'add a text field.

    It is not possible within a text field, either. If they have Acrobat, they can use the built-in under Tools - editing content Add Image tool.

    If they drive XI or higher, they can use a button form field you will need to set up for them, but the image must be in PDF format.

  • HTMLResources PDF shows with a button down refresh that erases just the page. Can it be resolved, thank you.

    HTMLResources PDF shows with a button down refresh that erases just the page. Can it be resolved, thank you.

    These files are loaded in the web browser of iOS. We have no control over the behavior of how it makes or the buttons do, unfortunately.

    Neil

  • Help with Radio buttons in form

    Hello. I inherited a site that has a simple form. Asked me to change the form of 4 radio buttons added to collect the consumer satisfaction with the content of the Web site. I added radio buttons using Dreamweaver MX, however, they do not work as I planned to do. I was under the impression that option buttons did not allow the user to select several options because when the user has selected a different option, the first option is deselected. My form is currently allowing all four options to choose from at the same time. The code for the form is below. I changed the @ in the email address of the form to avoid possible spam. Any help would be greatly appreciated.

    Looks like you need to change the name = the same on each radio button, if they all have the same name, you can go only one. Then, click the shape in the behaviors panel and don't forget that the name of the radio button is the insertion in the appropriate column db.

  • Hi I want to create a form with multiple point

    My original text block is:

    first.jpg

    Make all characters using the pen tool question

    I used this script (poster below) for the first 2 characters of this block of text that is created by the use of pencils and point tool:

    var myTextFrame = myDocument.spreads.item (0).textFrames.add ();

    W = [['113.324296', '212.731144'] ['124.871437', '212.731144'] ['124.871437', '205.148222'] ["11 3.324296", "205.148222"]];

    myTextFrame.paths.firstItem () .pathType = 1668051812;

    W.splice (4.8 ["152.405080", "190.761163"], ["152.405080", "232.323775"] ["156.821515", "232,32 3775"], ["156.821515", "173.873789"] ["153.555194", "173.873789"], ["152.090595", "181.286355"], ["144.653314","185.104713" "], ["144.653314","190.761163"]);

    myTextFrame.paths.firstItem () .entirePath = W;

    myTextFrame.paths.firstItem () .pathType = 1668051812;

    but I'm getting first two characters such as:

    next.jpg

    is not write.

    I want the distinctiveness which is brand by using tool pen as above block of text. Please give me the script to write to such a character of text frame. I also give me the type of path.

    Thank you

    Jarek, although your method works, are there no need to create-then-together of separate paths. The OP is missing the fact that one * object * may contain more * railways *. For example, the character '0', the conversion in vectorised text, is a single object, but it contains 2 ways. (Which should have been easy to discover by inspecting the original object in the first post).

    All you have to do after you have created the first object (which, by default, has a single path) is to continue to add multiple paths to the same object. Each subpath has all the properties of a path regular (you must make 'closed'), but it is a single object, sort of color, lines and fills will apply to the entire thing, and selecting a part any of it will select it.

    var
         myDocument = app.activeDocument,
         myObject1, myObject2,
         W = [["113.324296","212.731144"],["124.871437","212.731144"],["124.871437 ","205.148222"],["113.324296","205.148222"],];
    
    myObject1=myDocument.spreads.item(0).polygons.add();
    myObject1.paths[0].entirePath = W;
    myObject1.paths[0].pathType = PathType.CLOSED_PATH;
    myObject2=myObject1.paths.add();
    W = [["152.405080","190.761163"],["152.405080","232.323775"],[ "156.821515","232.323775"],["156.821515","173.873789"],["153.555194"," 173.873789"],["152.090595","181.286355"],["144.653314","185.104713"],[ "144.653314","190.761163"]];
    myObject2.entirePath = W;
    myObject2.pathType = PathType.CLOSED_PATH;
    

Maybe you are looking for

  • install the printer driver HP Laserjet 1020 windows 7

    Hi all I am here to share my idea to install the printer hp laserjet 1020 in windows 7. There no driver for windows 7 until mid-November. I installed the driver for laserjet 1020 on windwos 7, here is the method to install the driver of windows 7 for

  • After building the .exe program not found .vi (mine or the dependencies OR 'standard')

    Nuub alert!  Could not find a tutorial for extreme nuubs on this... Tutorial for NOR tried, but it still happens.  LabView 2011/XP Pro. Nothing other than LabView - no DAQ or materials. I have designed a new Board of Directors, developed a RS232 inte

  • Windows displays a blue screen while playing games

    Original title: Please help me Hi recently I have bouht a compaq persario computer cq42 laptop with windows xp... I'm new to computers when I start a game all of a sudden show of windows a blue error screen saying dumping physical memory and it resta

  • Attempt to load Samsung phone mobile disk but is not Compatible with Vista

    I am trying to load a disc to samsung mobile phone, but it is only compatible with windows 2000 or windows xp, my PC has windows Vista Home Basic charge, is there a way that I download the driver of bad to install this drive? Thank you

  • Vista SP2 crash my phone!

    I downloaded Windows Vista Service Pack 2 on my HP Pavilion dv7 and entered into a serious issue.  When I try to start my laptop, it works even if the file names on a black screen and stops at:! Oxc0190036! (mfplant.dll) when I try to boot my laptop