I don't find the action builder option, in tools menu

Hi,
I need to do an action with a button, but can not find the "action builder" option?
I attached 2 pictures:
one is taken from Internet ("Tools" menu)
and the other is of my computer ("Herramientas" menu = "tools" in Spanish language).
Can someone explain to me because I can not share?
Thanks

thanks Radzmar, then I can finish my form! that bad luck.
I will have to buy the new version... (or finish the form with the trial).

Similar Messages

  • How hard is it to use javascript to show/hide fields. Is it easier to use the action builder?

    I know nothing about javascript and all that ive been using so far has been stuff ive found on here (thank you everyone).
    Using the action builder seems like its gonna be very tedious to do since i have so many subforms that hide, would it be esier to use javascript?

    I know nothing about javascript myself but I just created a form with about 10 different subform that show or hide depending on what the user chooses from a drop down list and I used Action Builder. If we don't know javascript, how can we use it? But Action Builder did a fine job of hiding/showing wherever I needed it. And Action Builder can do more than one thing by clicking that + sign when you are building an action.
    For instance, I needed to place a button in each subform that would close both the field that the person was working in and also the subform on the next page where the information was going into floating fields in a text block that was only visible thru a drop down list text select. I could have never figured out how to do that based on my knowledge of javascript. Thank Adobe for including Action Builder in this version of LiveCycle and I use it all the time. I find it extremely easy to use but it takes a little mental training to think thru the steps of how you can use the menu in Action Builder to make your form do what you need it to do.
    And if all else fails, ask this forum. I struggle for just so long before I come here and ask for help. I always get the answer I need. I hope you will too.
    Good luck,
    Jeanette

  • Where do I find the enable cache option in CS5?

    Where do I find the enable cache option in CS5?

    First, define the site.  Go to Site > Manage Sites.  Enter the Local site folder where you want to keep your files. 
    Under servers, add the  FTP log-in details for your remote site as provided to you by your web host.
    Root directory is where your hosting provider told you to upload the publicly accessible files.  Commonly used root folders include public_html, www or htdocs but this varies by host.  If unsure, contact your hosting provider for details.
    When you're done defining your site, hit TEST to verify connection and then SAVE your settings.
    In the DW Files Panel (F8) click on Remote Server and hit the green Down Arrow to GET files from remote site to your local site folder.
    Nancy O.

  • Using the LabVIEW (PDS), version 6.0, I cannot find the "Application Builder".

    Hello,
    I use the LabVIEW Professional Development System, version 6.0. However, I cannot find the "Application Builder" in the "Tools" menu.
    How can I install this toolkit from the CD?
    Thanks.

    Hmmm... The App Builder is located in the project folder:
    project\prodisttool.llb\build application.vi
    Make sure this LLB is in your project folder. Also... have you changed the location of your "Library folder" under tools>options ? LabVIEW looks for the project folder inside your "Library folder" whose default is usually something like this on a PC:
    C:\Program Files\National Instruments\LabVIEW\
    So the App Builder should be at:
    C:\Program Files\National Instruments\LabVIEW\project\prodisttool.llb\build application.vi
    If you changed your Library Folder, LabVIEW might not be able to find it, and then you won't see it under Tools

  • I am missing the Preview Builds option...

    My Windows 10 installations are all missing the preview builds option and the build versions are not updating. Do I have a group policy setting in the way?

    That seems actually like good design from Microsoft. I don't want a non-admin user to have any way of upgrading their PC - that should be solely reserved for admins.  And it's not like the option even appears for the user, so they won't know what
    they're missing.
    In the Modern UI, there's no way to elevate (I believe that's the word you're looking for) user's rights - you either have it or you don't.  So all one can do is show what you can access, and hide the rest.   

  • After updating my IOS TO 8.1 (12B411) on 10/23/14, I went to update my blood sugar level in the IHealth app. And now after the new IOS update I'm unable to find the blood glucose option in the IHealth app. Did Apple remove it or just mess up AGAIN?

    fter updating my IOS TO 8.1 (12B411) on 10/23/14, I went to update my blood sugar level in the IHealth app. And now after the new IOS update I'm unable to find the blood glucose option in the IHealth app. Did Apple remove it or just mess up AGAIN?

    Apple removed blood glucose until further notice. The reason behind this is that it gave a distorted picture in countries where the medical world used other measuring units. I suspect it will be available again in a future update.

  • Where can I find the Action Panel in Photoshop?

    Where can I find the Action Panel in Photoshop?

    Are you using photoshop or photoshop elements and which version?
    (in photoshop it should be under Window>Actions or Window>Show Actions)
    (only photoshop elements 11 has Window>Actions)
    (no other version of photoshop elements has Window>Actions)
    What operating system?

  • HT1218 where can i find the airport ulitity option in iphone 4s ..

    where can i find the airport ulitity option in iphone 4s ..

    Right where you find other Apps for the iPhone.....in the App Store.
    AirPort Utility on the App Store on iTunes

  • I don't find the mistake :(

    i simply don't find the mistake in that code. it's supposed to browse through a folder you specify and then print out all the files, folders (+ the files in there etc.) into a text file (txt or doc). the output in the eclipse console is correct, but the output to the file is not. if i want to write it to a file (txt or doc) it only browses/writes the top level files and folders. contents of subfolders are not witten into the file? so apparently the recursion doesn't work when i write into a file. but why is that?! below my code...
    void browseFolder(String s){
              File destination = new File(s);
              String entries[] = destination.list();
              int i=0;
              try{
                   File textfile = new File(s+"/file.doc");
                   FileWriter writefile = new FileWriter(textfile);
                   BufferedWriter textbuffer = new BufferedWriter(writefile);
                   if (destination.isDirectory()){     
                        while (i<entries.length){
                             File destinationUnterfile = new File(s+"/"+entries);
                             if (destinationUnterfile.isDirectory()){
                                  //to file
                                  textbuffer.write(s+"/"+entries[i]);
                                  textbuffer.newLine();
                                  textbuffer.write("--------------------------------------");
                                  textbuffer.newLine();
                                  textbuffer.newLine();
                                  //to console
                                  System.out.println(" ");
                                  System.out.println(" ");
                                  System.out.println(s+"/"+entries[i]);
                                  System.out.println("--------------------------------------");
                                  browseFolder(s+"/"+entries[i]);
                             }else{
                                  //to file
                                  textbuffer.write("- "+entries[i]);
                                  textbuffer.newLine();
                                  textbuffer.newLine();
                                  //to console
                                  System.out.println("- "+entries[i]);
                             }//end if/else
                             i++;
                        }//end while
                        textbuffer.close();
                   }else{
                        System.out.println("Please specify a folder to browse.");
                   }//end if/else
              }//end try
              catch (IOException e){
                   System.out.println("Error -- " + e.toString());
              }//end catch
         }//end browseFolder

    hm, does it work if i insert a timestamp into the filename? if tried it like that, but it still doesn't work!
    void browseFolder(String s){
              File destination = new File(s);
              String entries[] = destination.list();
              int i=0;
              try{
                   Date dt = new Date();
                   File textfile = new File(s+"\\file"+dt.getTime()+".doc");
                   System.out.println(s+"\\file"+dt.getTime()+".doc");
                   FileWriter writefile = new FileWriter(textfile);
                   BufferedWriter textbuffer = new BufferedWriter(writefile);
                   if (destination.isDirectory()){     
                        while (i<entries.length){
                             //File destinationUnterfile = s+entries;
                             File destinationUnterfile = new File(s+"\\"+entries[i]);
                             if (destinationUnterfile.isDirectory()){
                                  //to file
                                  textbuffer.write(s+"\\"+entries[i]);
                                  textbuffer.newLine();
                                  textbuffer.write("--------------------------------------");
                                  textbuffer.newLine();
                                  textbuffer.newLine();
                                  //to console
                                  System.out.println(" ");
                                  System.out.println(" ");
                                  System.out.println(s+"\\"+entries[i]);
                                  System.out.println("--------------------------------------");
                                  System.out.println(s+"\\"+entries[i]);
                                  browseFolder(s+"\\"+entries[i]);
                             }else{
                                  //to file
                                  textbuffer.write("- "+entries[i]);
                                  textbuffer.newLine();
                                  textbuffer.newLine();
                                  //to console
                                  System.out.println("- "+entries[i]);
                             }//end if/else
                             i++;
                        }//end while
                        textbuffer.close();
                   }else{
                        System.out.println("Please specify a folder to browse.");
                   }//end if/else
              }//end try
              catch (IOException e){
                   System.out.println("Error -- " + e.toString());
              }//end catch
         }//end browseFolder

  • Even when I select a playlist I cannot find the burn disc option under file. How do I find it?

    Even when I select a playlist, I cannot find the burn disc option under the file tab.  How do I go about finding it?  It has always worked previously, or at least until the latest version of Itunes installed. 

    Hi Hatethecloud
    Have you tried to make a control+clic on the playlist name ?...

  • So now because of the action builder in Acrobat X and LC 9, is scripting still necessary?

    Dont bash me for this, im a n00b and dont know anything about scripting. But it seems that I can do a lot of what I wanted to do when I didnt know how to write Java but now using the action builder I can do it.

    The action builder in LiveCycle Designer is handy for beginners to get a form to behave as they want. It generates the code that you can then look at, learn from, and further modify to suit your needs. Some of the more advanced things require customized code, so you'll need to learn scripting to move beyond the basics.

  • I am using xp and I don't have the wpa2 personnel option to set it up.

    I have a wrt54g3g. I have it set up using security wpa2 personnel with aes. I have the password set and eveything. I can't get my lap top set up to connect. I am using xp and I don't have the wpa2 personnel option to set it up. I need some help on this? Thanks
    Message Edited by ewoolwine on 04-06-200702:46 PM

    Make sure you have Windows XP service pack 2 (SP2) installed.
    Also, WPA2 is the same as WPA with AES.
    Hope this helps.
    Message Edited by toomanydonuts on 04-07-200702:50 AM

  • Hi , i want to change my secret question? I don't find the reset bottom?

    Hi , i want to change my secret question? I don't find the reset bottom?

    If you aren't getting the reset link on the Password & Security section of your account on http://appleid.apple.com then that means that you don't have a rescue email address on your account (an alternate email address is different), and you won't be able to add one until you can answer your questions - you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : Contact Apple for help with Apple ID account security
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've been reset you can add a rescue email address one for potential future use : Manage your Apple ID primary, rescue, alternate, and notification email addresses

  • I'm using a trial version but i don't find the spiral tool

    I'm using a trial version but i don't find the spiral tool

    You can do that with any tool button that has a little black arrow in the lower right corner.

  • Hi, i am from india, im using iphone3gs with ios5.1.1 .i want to update the same to ios6 or to ios7,but i couldnt find the software update option in my iphone,so plz help me how to update my software.

    hi, i am from india, im using iphone3gs with ios5.1.1 .i want to update the same to ios6 or to ios7,but i couldnt find the software update option in my iphone,so plz help me how to update my software.

    Are you sure it's a 3GS? What is the model number?

Maybe you are looking for

  • Itunes not recognising ipod device?

    My pc runs Vista and latest itunes version 11. This ipod shows Model MD057LL/A Version 6.1.3 which my research shows is ipod Touch 4th Generation? I tried the troubleshooting guide here and restarted the ipod: http://www.apple.com/support/ipodtouch/a

  • Why do I need Pages 5 to open iBooks Author documents?

    I am a TA at a college and I have been grading students' iBook submissions for a class.  However, this week when I went to open their submissions I got the following error message: "You need a newer version of Pages to open this document."  Clicking

  • Do I still have to double-click a clip to see it's date and time?

    iMovie 4 and earler, when you clicked on a clip in the timeline, the time and date would show up right there in the grey area. Then in iMovie 5, that is gone. Now I have to double-click every single clip to see the same info. This has made me very an

  • How to disable the parameter ??

    hai.. my parameter is like this:- PARAMETERS: S_ORG LIKE S706-VKORG default '1234'. Now i want to disable this parameter such that the user should not change the default value. plz help me.

  • Policy Agent + Distributed Authentication UI?

    Can I deploy the distAuth application inside a policy agent protected container, or does it have to be deployed in a non-protected container? Thanks, Michael.