Hi I'm trying to make a radio button web form using edge animate.

www.smpcanada.com/1.5/infinite_app
Hi,
Basically I'm working on this app, the only thing I need is, I want every option that the user click will be recorded and summarize, and will emailed to my email. Much like a web form, can I do that in edge animate? Please help... 

www.smpcanada.com/1.5/infinite_app
Hi,
Basically I'm working on this app, the only thing I need is, I want every option that the user click will be recorded and summarize, and will emailed to my email. Much like a web form, can I do that in edge animate? Please help... 

Similar Messages

  • Default Radio button when form opens

    Is there a way to make a radio button when form opens?
    for e.g. when we open key flexfield value sets form, key flexfield radio button is default. i want to do when i open the form value set button is defaultly checked.
    thanking you in advance.

    User personalization.
    Find the name of the field for that radio button.
    Write a when-new-form-instance personalization.
    Make the action type =property
    And make the action as default value/initial value = the value corresponding to the default you want.
    Also check http://it.toolbox.com/blogs/apps-traction-blog/oracle-form-personalization-basic-example-11936
    Hope this answers your question,
    Sandeep Gandhi
    Edited by: Sandeep Gandhi, Independent Consultant on Feb 4, 2011 11:43 AM

  • I am trying to make a fraction in a form field and I would like it to have an over/under appearance. Is this possible?

    I am trying to make a fraction in a form field and I would like it to have an over/under appearance. Is this possible?

    What system and iPhoto version are you running?  What theme are you using.
    All of my calendars do have the month starting on Sunday,  Don't know of any way to change it.  Where are you located?
    How do you have your Calendar application's preferences set to, Sunday or Monday start of week? 

  • I am trying to make a documentary on my life using scanned photos and some video. Help please

    I am trying to make a documentary of my life using scanned photos and some video imported via disc from original cinefilm. I am having difficulty getting this sorted as I tried to import a whole event from aperture in which I had sorted the photos chronilogically. So it seems to have gone in as a project without an event which seems to be making life difficult. also I am having difficulty editing the imported video. any suggestions please.

    Click here for information. If you can't get the answers emailed to you for some reason(the email may take a few hours to arrive), contact the iTunes Store staff via the link in that article.
    (86384)

  • I am trying to make a purchase and want to use my Apple ID Balance and NOT charge the debit card under my account info.  How do I do this?

    I am trying to make a purchase and want to use my Apple ID Balance and NOT charge the debit card under my account info.  How do I do this?

    As far as I'm aware iTunes always charges the account balance first and when this expires charges any remaining amount to your credit/debit card. The one exception I am aware of (though there could be others) is that Apps purchased from the Canadian store must always be charged to a card rather than a gift card voucher balance due to local legislation.
    tt2

  • I'm trying to make a "Submit" button for my existing UIPickerView. Help!

    Hi there! I’ve been tearing my hair out and searching the web high and low for an answer to a question I have about UIPickerView. I was hoping that perhaps you could help me out!
    I’m trying to make a “Submit” button for my existing UIPickerView.
    I’ve coded a 3 column UIPickerView into my app, and it works great. However I’d like to add a “Submit” button and connect it to my pickerview, so that once a user makes their selections and clicks “Submit,” the app searches an existing array for the user’s selected values.
    Any help would be appreciated! I hope I explained that okay, lol.
    Thanks,
    Brittany

    Check this one.
    http://support.apple.com/kb/HT2731

  • How do I make a Radio Button Widget Report to an LMS?

    Alright....still trying to solve my basic problem.....
    I can put in a radio button widget which looks great, but radio buttons do not report info to LMS.  THen I can use Ravvi's code style to set a variable based on which radio button was clicked and then take a specific action depending on the value.  The action I want is to send info to LMS.  How can I do this? 

    I may have, but I have run across many Survey forms that do exactly that.
    Some also have checkboxes as well and they are used for Check all that apply.
    For all I know they may be using JavaScript code for the buttons to react the way the do.
    I don't know if any of you are old enough to remember the old two button light switches. push one in and the others pop out. Push the other in and the first pops out.  That's the button action I see on many survey forms.
    I am not saying it correct. But if its not correct, how does one change their mind if the clicked the wrong choice?

  • Trying to make jms client inside web service

    Hi i am trying to make a jms call inside a webservice
    but whenever i try to execute the web service it gives error with following url
    http://localhost:8280/axis/services/WSTune?method=setTune&r=TUNE
    i have deploy this service on jboss and code is working properly in normal java application
    and i have also placed the jar files inside axis/web-inf/lib folder
    soapenv:Envelope>
    −
         <soapenv:Body>
    &#8722;
         <soapenv:Fault>
    <faultcode>soapenv:Server.userException</faultcode>
    <faultstring>java.lang.reflect.InvocationTargetException</faultstring>
    &#8722;
         <detail>
    <ns1:hostname>linux</ns1:hostname>
    </detail>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>my code is following
    package services;
    import java.util.Properties;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.jms.Queue;
    import javax.jms.Session;
    import javax.jms.MapMessage;
    import javax.jms.TextMessage;
    import javax.jms.QueueSession;
    import javax.jms.QueueRequestor;
    import javax.jms.QueueConnection;
    import javax.jms.QueueConnectionFactory;
    import com.chetu.MyStream;
    public class WSTune
         InitialContext ctx;
         Queue     queue;
         String tunedata;
            String     queueName;
            QueueConnectionFactory connFactory;
         String rid; // Request id
         public String setTune(String r)throws Exception
              rid=r;
              MyStream m=new MyStream();
              m.setData(new byte[]{'a','b'});
              System.out.println("Started WSTune");
              queueName = "queue/mytQueue";
              try {
                   System.out.println("==> 1");
                      Properties props = new Properties();
                     System.out.println("==> 2");
                         props.setProperty("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
                         System.out.println("==> 3");
                         props.setProperty("java.naming.factory.url.pkgs", "org.jboss.naming");
                         System.out.println("==> 4");
                         props.setProperty("java.naming.provider.url", "127.0.0.1:1099");
                         System.out.println("==> 5");
                         ctx = new InitialContext(props);
                         System.out.println("==> 6");
                } catch (NamingException e) {
                    System.out.println("Could not create JNDI API " +
                        "context: " + e.toString());
                    System.exit(1);
                try {
                     System.out.println("==> 7");
                        Object tmp = ctx.lookup("ConnectionFactory");
                        System.out.println("==> 8");
                            System.out.println("lookup completed");
                            connFactory = (QueueConnectionFactory)tmp;
                            System.out.println("==> 9");
                         queue = (Queue) ctx.lookup(queueName);
                        System.out.println("==> 10");
                   } catch (Exception e) {
                       System.out.println("JNDI API lookup failed: " +
                           e.toString());
                       e.printStackTrace();
                       System.exit(1);
                   System.out.println("==> 11");
                    QueueConnection queueConn = connFactory.createQueueConnection();
                   /* queueConn.start();
                    QueueSession queueSession = queueConn.createQueueSession(false,Session.DUPS_OK_ACKNOWLEDGE);
                    QueueRequestor requestor = new QueueRequestor(queueSession, queue);
                    MapMessage message = queueSession.createMapMessage();
                  message.setString("ID",rid);
                    message.setString("COMMAND","TUNE");
                    TextMessage result = (TextMessage) requestor.request(message);
                    message.clearBody();
                   tunedata=result.getText();
                    queueConn.close();*/
                    System.out.println("==> 12");
                    //     return tunedata;
         return rid+"  from the WS";
    }and in tomcat log it is printing up to 7 numbers.
    Thanks in advance however its very urgent

    Hi Simon,
       Other thing you can do is compare the HTTP requests (including header) from both Delphi and XMLSPY. I suspect if the SOAP message is same in both case the difference might be in the header. But one thing is certain, WAS can not respond differently for same request, don't you think so ?
    Cheers,
    Sanjeev

  • Help with trying to make a rollover button

    I'm trying to make a roll over button using this tutorial 
    http://www.pegaweb.com/tutorials/rollover-buttons/rollover-buttons.htm
    and it doesn't seem to do what the tutorial says it will do 2-3 steps in.
    The part where it says...
    Quote:
    - In the Channels window, Ctrl+Click the "Alpha" layer, to select its outline.
    - Go back to the Layers window, and create a new layer.
    - Choose the Gradient Tool. (Remember that it might be hidden under the Paint Bucket Tool.) Apply a gradient from the bottom of the image to the top.
    Mine does not create a gradient that looks like the image they have presented. 
    I just have the entire wood look, and then the outline of my button is just a little darker. I don't get the white background with the gradient applied to it in the button space.
    Would someone mind following the steps at this link and letting me know if it is missing something? It only took me 2 minutes to get to this point before I couldn't figure out why it wasn't doing what it was supposed to.

    When you create the button look in the upper left hand corner of the screen and see what type of object you are creating. Placing the mouse of the the three buttons will give you a tool tip of what they are.
    The one you want is the one on the right as it will create a pixel based rectangle. Make sure you put this rectangle on its own layer, then you can move it or delete it if necessary. Lock the transparency7 button at the top of the layers panel. The will make sure when you create the gradient it will put it inside the button you made and not outside of it.
    If you are seeing just a border I am thinking the middle button in the top tool bar is selected which creates a path. It is possible to fill that path and then create the gradient but you have to make sure that the lock transparency is not checked. Open the paths panel and at the bottom of the panel is a fill button. This creates a pixel based object which you can then create a transparency using the steps above.

  • Trying to reset a radio button

    Hi Experts,
      I am trying to modify the Bank application in ESS. In there, I have a drop down and a group of radio buttons by Index. When users select "Check" from the drop down, I would like "Paper Check" button to be selected. When users select "Direct Deposit" from drop down, I would like "Checking" radio button to be selected. I have tried a lot of different ways, but it does not work. Any help will be greatly appreciated.
    Thanks a lot
    Preet

    Thanks for taking time to answer my question. I am using NWDS to modify the code. I was looking for an actual code sample which will reset the radio buttons.
    Thanks
    Preet

  • How do I make each Radio button appear in the tab order?

    When users tab through the form, the tab only highlights the first radio button of a group before moving to the next field or group of fields.
    Example: the user is asked for the following information:  LastName, Gender (M/F radio buttons), and BirthDate.
    When tabbing through the form, users are taken from from the LastName field to the Male radio button, to the Birthdate Field. Never does the tab allow them to select Female unless they click it with the mouse.
    It seems like this should be a simple fix, but I can't find it anywhere!
    Thanks for your help.

    That's the way they work. Think of a radio button group as a dropdown or list box. When any of these types of fields receives the focus, you can use the arrow keys to move through the options and the tab key moves to the next field.
    If you set up the group using check boxes instead, giving each in the group the same name but different export value, they will behave as you want. A group of checkboxes will behave a bit different than a group of radio buttons, but it's close.

  • Problem trying to make a LC Designer ES4 form "Reader Extended" in Acrobat XI Pro

    I have a form that I created in LC Designer ES4 that I was able to successfully "Reader Extend" using Acrobat XI Pro.  I added a script to the form to allow for the deselecting of radio buttons (which I found on this forum), and now I cannot Reader Extend the form.
    Here are the specifics of my environment:
    Acrobat XI Pro - Ver. 11.0.10
    Adobe LiveCycle Designer ES4 - Ver.  11.0.20130826.2.901444
    Windows 7 Professional, SP1
    Here's the error I am getting in the Acrobat debugger:
    Exception in line 1 of function top_level, script Document-Level:!ADBE::0100_VersChkStrings
    InvalidGetError: Get not possible, invalid or unknown.  Doc.layout:1:Document-Level:!ADBE::0100_VersChkStrings
    This error message appears at the very bottom of the debugger window:
    Unable to find source for Document-Level:!ADBE::0100_VersChkStrings
    Acrobat XI Pro does not allow me to save the new file, and gives this error:
    This document could not be Reader enabled.
    I used the chat support for Acrobat XI Pro, and was told that this is a LC Designer issue.  Since there's no phone support for LC (at least not free), I came to this forum for help.
    Here's the script object (JavaScript) that I inserted into the main subform:
    form1.Main.#variables[0].RBClear_Script_Object - (JavaScript, client)
    var rbs = new Object();
    function handleRBClick(o)
        if (rbs[o.name]==null)
            rbs[o.name]=o.rawValue;
        else{
            if (rbs[o.name] == o.rawValue)
                o.selectedMember().rawValue = 0;
                o.execEvent('change');
            rbs[o.name] = o.rawValue;
    I then call the above function from within a radio button's group list object (not individual items).
    form1.Main.Subform_Stock_Detail.Table2.Row3.Subform_Responsibility.RadioButtonList::click - (JavaScript, client)
    RBClear_Script_Object.handleRBClick(this);
    This all works fine when I preview the form from within LC Designer ES4.  I then open the dynamic PDF form in Acrobat XI Pro, click File, Save as Other..., Reader Extended PDF, then Enable More Tools.
    Acrobat shows the errors at the top of this post within the Acrobat debugger window.  When I close debugger, Acrobat does not allow me to save the new file, and gives this error:
        This document could not be Reader enabled.
    I've been searching for days and cannot find any resolution to this issue.  It appears to me that this is a security related issue, and Acrobat does not like the running of a function within the form.  Just a guess.  I can't think of anything else.
    Anyone come across this issue, and how were you able to fix it?
    Thanks in advance,
    Dean

    Although I did not find a cause for the errors, I did find a workaround in my case.
    This only happens when running the Javascript Debugger in Acrobat XI Pro.  If you turn it off, you can Reader Extend the document.  If you turn it on, you have to cycle through all of the debugger errors/warnings using the arrow button in the top left corner of the debugger window, then close that window.  Still not sure what the errors are for, but at least I got the form to work.

  • How do I make a radio button choice on a form stand out more?

    I have created a form with lots of square radio buttons. I would like the user's choices stand out more on the form. Right now all I get is a small square black dot in the middle of a white square. Is there a way to fill the whole square in, or better yet, have a check mark (like in a checked box) instead of the small square black dot? I am using Acrobat X Pro.

    You can change the size of the box to get a larger button, and of course
    you change the style of the check-mark by editing Properties - Options -
    Button Style.

  • How do I make a radio button control change automatically with time?

    Hello everybody
    I have a radio button selection with 4 options (Line A, B, C, D) which controls a number of valves depending on which line is sampled. Right now I have to do this selection manually but the proccess requires that each line is sampled for 15 seconds.
    Is there a way to do this automatically, meaning when I press a button (e.x. START) radio selection goes to Line A, after 15 seconds to line B, after 15 seconds to Line C, after 15 seconds to line B, after 15 seconds to Line D, and then from the beginnining to line A, B, etc..., until I press the stop button.
    Any help is appreciated
    Thanks for your time

    Hi evdo,
    'tst' is right. The "Radio Buttons" control from the "Boolean" palette
    is basically an Enum. You can add or remove elements as you want and
    only one element can be TRUE at any time (just as the Enum only can
    have one selected item at any time). Just copy and paste the radio
    buttons within the frame to add more choices/elements.
    I created a small example that takes tst's example a little further. I
    implemented the four choices and added an Event Structure for better
    timing. Give it a try and let me know what you think, thanks.
    Have fun!
    Message Edited by Philip C. on 07-06-2005 10:05 PM
    - Philip Courtois, Thinkbot Solutions
    Attachments:
    Radiogaga.PNG ‏14 KB
    Radiogaga.vi ‏25 KB

  • How do I use Edge Animate to make a clickable image which can be used in Author, and which will redirect you to a different page in your ebook?

    If anyone has experience with Edge Animate, I know that I can make an image clickable, and I can insert a url to define where it will go once clicked. But I want to make a widget to use in iBooks Author, that can take the reader to a certain page of the book. Is this possible?
    It all seems very complicated. Make one thing in Edge Animate, then somehow have that reference something in Author, which will finally work in an ebook. I have no clue where to begin.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

Maybe you are looking for

  • Itunes not working on windows 7 64bit

    i have downloaded itunes from apple site and it is installed as well but when i am trying to open itunes it shows "itunes has stopped working" check online for a solution and close program close the program Problem details : Problem signature:   Prob

  • HP Laserjet 6L paper feed

    For some reason, the paper has started coming out the bottom front of the printer, rather than following the normal path to the top front bin. I've wiped down everything I can reach inside the unit with alcohol. How can I fix this? Thanks. -- Neil

  • When I send a link to my iweb page it doesn't open

    If I want to send a link of my iweb page to someone, the way I do it is firstly open the page online, copy the link from the browsers address and then from mail I goto "add hyperlink" paste the link in and then send, all looks ok, but when the other

  • Still no news on how to disable the sender's ID on the notification banner in locked screen?

    Still looking for some more help on this, since I've got no answer from Apple yet. Maybe never gave it a thought, although all my friends complain about the same thing... I'll say it again, it is annoying to have the 3rd party ID on plain sight: my c

  • Beginner to Enterprise Portals

    Hi All, I am new to Enterprise Portals.Can someone guide me as to how should I go about it. My intention is to give certification in Enterprise Portals. Regards Nikhil Bansal