Oh Help please! Need a simple script

I am trying to format text in a form field. I just want the text in the field to show up with the following properties when a user types in the form:
Font: Verdana
Size: 10pt
Leading 12 pt (this is the important part!)
Multiline but I don't want scroll bars.
If some hero on here could supply me the script I input into the Custom Format script field I would be soooooo happy!
Thanks!

"You need to create a "rich text" field."
That's great but how do I do that?
What its AcroForms? Is that a separate plug-in or something? Sorry I'm asking some dumb questions but I really have no clue about this stuff. I'm using a Mac so I don't have LiveCycle
Thanks

Similar Messages

  • I need a simple script (Break Link To Style)

    Hi nice guys,
    Can someone please provide a simple script that will break the links to styles in all the paragraphs in a document.
    Thanks in advance
    Maria*
    *An non coder designer that simply is not capable of understanding javascript... (but I have tried!)

    Hi Maria,
    Jongware's post (http://forums.adobe.com/message/1890625#1890625) gave me a clue on how to do this.
    Give this a try:
    var i, j, myDoc = app.activeDocument,
              allStories = myDoc.stories,
              thisStory,
              thisPara;
    for (i = 1; i < allStories.length; i++) {
              thisStory = allStories[i];
              for (j = thisStory.paragraphs.length - 1; j >= 0; j--) {
                        thisPara = thisStory.paragraphs[j];
                        thisPara.applyParagraphStyle(myDoc.paragraphStyles[0], false)
    alert ("Job Done!");

  • HELP I NEED A JAVA SCRIPT

    I NEED A JAVA SCRIPT that chance the crouser on my webpage
    my webpage is made whit flash
    so i want i want a script that chance the cruser(mouse-pointer)

    <script language="JavaScript">
    alert("WRONG FORUM, Suggest you do a google search....");
    </script>

  • Quick April Fools Day help--I need an ARD script to change the screensaver

    I set up all the machines I manage to have a screensaver that looks like a broken LCD screen. Pushed it out with ARD3 and it's installed on everyones machine. I just need help sending a script to change the default screensaver to be the broken screen. I've no idea how to complete this. Can anyone help?

    I don't know how to change it, but if you have ARD you can run it:
    /System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app /Contents/MacOS/ScreenSaverEngine -module ScreenSaverName

  • Help, please, with a beforeQuit script

    The script uses a beforeQuit event handler to copy InDesign libraries from one folder to another. Some of the libraries are large and the process takes a while.
    I would like to display a progress bar so that users know that their PCs haven't frozen up. But it only flashes into view briefly. Then the InDesign window closes, but the file-copying is still taking place.
    Is there some way to delay the actual quit event until the beforeQuit function has finished? Or maybe what I need is a way to display the progress bar that isn't dependent on InDesign.

    Hi Robert
    You can use vb and applescript
    To display a simple alert that won't close on the application quite is quite simple.
    Note the use of the 3 quote marks.
    A progress bar is more complicated.
    myVBScript = '''MsgBox "Hello there",64,"My message Box"''';
    myAppleScript = """tell application "System Events" to display notification "Hi there!" with title "Greetings" """;
    // if the above notifcation doesn't work i.e. old o.s. then you can do the below alert
    // myAppleScript = """tell application "System Events" to display alert "Hi there!" """;
    if ($.os.match(/^W/)) app.doScript(myVBScript,ScriptLanguage.VISUAL_BASIC);
    else app.doScript(myAppleScript,ScriptLanguage.APPLESCRIPT_LANGUAGE);
    // see
    // http://www.javascriptkit.com/javatutors/vbalert.shtml
    // http://stackoverflow.com/questions/5588064/how-do-i-make-a-mac-terminal-pop-up-alert-applescript
    // https://developer.apple.com/library/mac/documentation/applescript/conceptual/applescriptlangguide/reference/aslr_cmds.html#//apple_ref/doc/uid/TP40000983-CH216-SW224
    Trevor

  • Help Please Needed for Java Calculator - ActionListener HELP

    Hi. I am constructing a simple Java calculator and need help with the actionlistener and how it could work with my program. I am not too sure how to begin constructing the actionlistener. I would like to know the best and most simple solution to get this program work the way it should, like a real calculator. If anyone can help me, that would be much appreciated.
    package calculator;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class CalculatorGUI extends JFrame implements ActionListener{
    JTextField screen;
    JButton button7;
    JButton button8;
    JButton button9;
    JButton button4;
    JButton button5;
    JButton button6;
    JButton button1;
    JButton button2;
    JButton button3;
    JButton button0;
    JButton add;
    JButton minus;
    JButton multiply;
    JButton divide;
    JButton equals;
    JButton clear;
    private JTextField m_displayField;
    private boolean m_startNumber = true;
    private String m_previousOp = "=";
    private CalculatorLogic m_logic = new CalculatorLogic();
    public CalculatorGUI() {
    CalculatorGUILayout customLayout = new CalculatorGUILayout();
    getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
    getContentPane().setLayout(customLayout);
    screen = new JTextField("textfield_1");
    getContentPane().add(screen);
    button7 = new JButton("7");
    getContentPane().add(button7);
    button7.addActionListener(this);
    button8 = new JButton("8");
    getContentPane().add(button8);
    button8.addActionListener(this);
    button9 = new JButton("9");
    getContentPane().add(button9);
    button9.addActionListener(this);
    button4 = new JButton("4");
    getContentPane().add(button4);
    button4.addActionListener(this);
    button5 = new JButton("5");
    getContentPane().add(button5);
    button5.addActionListener(this);
    button6 = new JButton("6");
    getContentPane().add(button6);
    button6.addActionListener(this);
    button1 = new JButton("1");
    getContentPane().add(button1);
    button1.addActionListener(this);
    button2 = new JButton("2");
    getContentPane().add(button2);
    button2.addActionListener(this);
    button3 = new JButton("3");
    getContentPane().add(button3);
    button3.addActionListener(this);
    button0 = new JButton("0");
    getContentPane().add(button0);
    button0.addActionListener(this);
    add = new JButton("+");
    getContentPane().add(add);
    add.addActionListener(this);
    minus = new JButton("-");
    getContentPane().add(minus);
    minus.addActionListener(this);
    multiply = new JButton("*");
    getContentPane().add(multiply);
    multiply.addActionListener(this);
    divide = new JButton("/");
    getContentPane().add(divide);
    divide.addActionListener(this);
    equals = new JButton("=");
    getContentPane().add(equals);
    equals.addActionListener(this);
    clear = new JButton("Clear");
    getContentPane().add(clear);
    clear.addActionListener(this);
    setSize(getPreferredSize());
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public void actionPerformed(ActionEvent event) {
    public static void main(String args[]) {
    CalculatorGUI window = new CalculatorGUI();
    window.setTitle("Calculator");
    window.pack();
    window.show();
    class CalculatorGUILayout implements LayoutManager {
    public CalculatorGUILayout() {
    public void addLayoutComponent(String name, Component comp) {
    public void removeLayoutComponent(Component comp) {
    public Dimension preferredLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    Insets insets = parent.getInsets();
    dim.width = 421 + insets.left + insets.right;
    dim.height = 494 + insets.top + insets.bottom;
    return dim;
    public Dimension minimumLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    return dim;
    public void layoutContainer(Container parent) {
    Insets insets = parent.getInsets();
    Component c;
    c = parent.getComponent(0);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+8,408,64);}
    c = parent.getComponent(1);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+80,96,56);}
    c = parent.getComponent(2);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+80,96,56);}
    c = parent.getComponent(3);
    if (c.isVisible()) {c.setBounds(insets.left+232,insets.top+80,96,56);}
    c = parent.getComponent(4);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+144,96,56);}
    c = parent.getComponent(5);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+144,96,56);}
    c = parent.getComponent(6);
    if (c.isVisible()) {c.setBounds(insets.left+232,insets.top+144,96,56);}
    c = parent.getComponent(7);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+208,96,56);}
    c = parent.getComponent(8);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+208,96,56);}
    c = parent.getComponent(9);
    if (c.isVisible()) {c.setBounds(insets.left+232,insets.top+208,96,56);}
    c = parent.getComponent(10);
    if (c.isVisible()) {c.setBounds(insets.left+120,insets.top+272,96,56);}
    c = parent.getComponent(11);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+80,72,56);}
    c = parent.getComponent(12);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+144,72,56);}
    c = parent.getComponent(13);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+208,72,56);}
    c = parent.getComponent(14);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+272,72,56);}
    c = parent.getComponent(15);
    if (c.isVisible()) {c.setBounds(insets.left+344,insets.top+336,72,56);}
    c = parent.getComponent(16);
    if (c.isVisible()) {c.setBounds(insets.left+8,insets.top+408,408,72);}
    }

    Yeah, I have a rough idea of what the calculator
    should do, like most people would. Its just that I
    dont know how to implement this in Java. Thats the
    problem. Can anyone provide me with code snippets
    that I can try?No I would rather see you make an effort from what has been discussed here. This is not a Java problem this is a general programming problem.

  • Help Please:  Need To Create Temporary Table

    Hi Guys,
    I am a new Oracle user. I need to create this report that uses
    temporary table. I can't use "create" statment in the sql
    query. Now wihtout that I don't know how to create the
    temporary table. Please let me know if anyone has any
    suggestions.
    Thanks a billion
    Sam

    Hi Sam,
    yes, you can't apply neither Data Definition Language (DDL) nor
    Data Manipulation Language (DML), except SELECT statement, at
    the query builder inside your report. You may create a stored
    procedure containing the DDL or the DML, then run this stored
    procedure at the "Before Report" trigger. You can find this
    trigger under Report Triggers of your Object Navigator.
    hope this help you.
    have a nice day...
    daniel

  • HELP Please need contacts ASAP!!

    I had two blackberry curves, one was my personal and the other one was from my job. I keep the one from my job sync with my desktop but would do backups for my personal phone in a file on the computer. My personal phone was stolen this weekend and I need to pull the contacts and place them on my work phone. However when I use the desk top manager it doesnt give me the option to switch pins (as it usually would do once I connect a one of the devices) My personal phone files are all saved as ipd but I cannot open. Please can anyone provide assistance as I don't have any family/friends information anymore until I can retrieve my last backup file from my personal phone. I tried opening the desktop manager and switch device wizard but it only recognizes my job phone device.
    Solved!
    Go to Solution.

    On your work phone, Open the Address Book and click Menu > Options and General Options. Do you see the choice there for Wireless Syncrozination? Disable that, and then return to connect to the USB and Desktop Manager.
    Click on Restore > Advanced > and over the left hand pane you will see File > Open and navigate to the most recent backup IPD file, and proceed.
    After it reads the file, scroll down on the left hand side to Address book data to where it is highlighted. Press the right facing arrow in the center of the screen to move that data to the device.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • My 4s lost sound on text alerts, music and keyboard clicks but still plays ringtones and alarm sounds.  Took to Genius Bar but they said never seen anything like it and to buy a new one.  Help please, need fix to get all sound back!

    Lost partial sound, speakers work but keyboard, music, text alert does not except on headphones, please help!

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

  • Help Please -Need video to NOT automatically load when not using autoplay feature

    Hi, I am hoping someone can help me or point me to the right
    place to find what I need!
    I use the standard skins in Flash for putting videos onto a
    webpage but I am having problems when I use more than one video on
    a page.
    I have the videos set to autoplay -false, however the page
    takes forever to load because the videos still download so they are
    'ready' to play. (Of course this is what you want when you have one
    video on a page but it is not helpful for more than one video...)
    I have looked through the parameter options for the flv and
    the HTML publish setting but can not find anything in here -I have
    also tried to search through this forum and have tried "googling"
    but no luck. Perhaps I am using the wrong terminology for my search
    but I am not sure what the correct terminology is.
    I am pretty sure that I need to go in to the actual flash
    file of the skin and alter it to suit my needs but I am not sure
    what code I need to do this etc....
    I am using Flash CS3 and using the Actionscript3 skins. I
    know how to access the standard flash skin flash files and alter
    them to customize them but my knowledge of code is not the best.
    If someone could help me out I would really appreciate it!!

    Friend,
    I have maintained the means of transport to the tranportation lane
    Regards
    KRN

  • Help please- need help adjusting logo before cutting out

    hi all, im after a little help.
    I had a logo created that all looks okay, until i opened it up in illstruatvoe adobe full version.
    Some of the lettering over laps so when cutting on a vinyl plotter, it would all go wrong.
    So i got the rubber out to try and sort it out although the rubbers too big to correct it.
    What do yuo all recommend?
    many thanks,
    kind regards,
    Ryan

    If under the File menu there isn't an import option and you cannot open
    other file types, then you are just up a creek. If you can, then get the
    AI file in a format that it can read. You may have to upgrade your Stika
    software.
    Greg
    This email and any files transmitted with it are confidential and
    intended solely for the use of the individual or entity to whom
    they are addressed.
    If you have received this email in error please notify the
    originator of the message. This footer also confirms that this
    email message has been scanned for the presence of computer viruses.
    Any views expressed in this message are those of the individual
    sender, except where the sender specifies and with authority,
    states them to be the views of ESAB Welding & Cutting.

  • Help please need to install java update 3

    Just updated to java update 4. I have medical software on the computer and it breaks. I need to roll back one version. Can anyone help me out with this? 10.6.6 OS

    OK, there is a method, but it is risky at best. Backup your data before proceeding*:
    http://www.macmaps.com/backup.html
    Note where it says on these instructions rm -rf:
    http://weblogs.java.net/blog/joshy/archive/2007/11/howto_removej.html
    Change that "f" instruction to i (the letter I as in I am).
    So you would say:
    sudo rm -ri /System/Library/Frameworks/JavaVM.framework/Versions/(whatever the version is that is newer)
    If you are unsure of the version, look it up first by typing:
    ls -aF /System/Library/Frameworks/JavaVM.framework/Versions/
    And determine which ones are newer.
    Answer 'n' to the rm once files are listed that you don't want. Careful not to go trigger happy with the 'y' as it automatically takes every 'y' response as an affirmative.
    - * Links to my pages may give me compensation.
    Message was edited by: a brody

  • Help Please need help with a motherboard

    I have an Ideacentere A310 ALL IN ONE AND iM LOOKING TO MAYBE GET A REPLACEMENT MOTHERBOARD BECAUSE THE POWER SWITCH IS BROKEN. i HAVE NO IDEA HOW TO FIGURE OUT WHAT TO LOOK FOR ON COMPUTER PARTS WEBSITES IT IS WAY OVER MY HEAD. CAN ANYONE EXPLAIN TO ME IN VERY SIMPLE TERMS HOW TO FIND A REPLACEMENT MOTHERBOARD BECASUSE i have absolutely no clue. thank you

    http://www.manualowl.com/m/Lenovo/IdeaCentre-A310/Manual/118029 shows the repair manual, but first why don't you describe what your unit is doing/not doing, there are several things that might be wrong other than your switch.
    If the switch is physically broken then it can probably be replaced.
    More info might help someone help you.

  • HELP please, need to recover lost photo.

    Recently uploaded a group of pictures from my camera, deleted the originals from my camera after uploading them. When reviewing them I was looking at a really great family photo that I took, only one like it. And of course instead of pressing escape to get out of the full screen mode, I pressed delete and the picture seems to be gone for good. I tried using a recovery program that recovers deleted photos from your cameras memory card. It recovered a lot of deleted photos, but none of them from the batch I recently took and uploaded. Is there anyway I can get it back? It didn't go to my Trash.

    Look in the iPhoto trash (on the left near the top of the source pane under "recent")
    Unless you have emptied the iPhoto trash since you deleted your family photo all of your deleted photos will be there
    LN

  • Help please need a link,

    So I downloaded itunes and bought a bunch of music now I can't seem to find where you log in to access your music.

    You don't log in anywhere.
    It's in iTunes.
    Use iTunes to listen to it.

Maybe you are looking for