Delete an alphabet in a text field

I have a text field "house". I need to create a button to delete one of the alphabets in this text, for example e of "house".
Your help to create an action script on the button, please.

The following will do what you want:
btn.onRelease=function(){
     my_txt.text = my_txt.text.slice(0, my_txt.text.length-1);
You should look thru the String class to see the variety of methods available to you for manipulating text.

Similar Messages

  • Hidden/Visible text fields in saved PDF

    I got some very helpful advice yesterday about deleting content from hidden boxes (text fields). I have another related problem that somebody might have an answer for. I have text fields that are hidden or visible depending on selections made in drop-down lists. This is working fine but I've noticed something strange. When a user completes the form, saves it, closes it, and re-opens it--all of the text boxes are visible. Has anyone run across this? If so--is there some script I can add to fix this?
    //Clear out the StaticLocation DropDown list
    StaticLocation.rawValue = "";
    StaticLocation.clearItems();
    switch (this.rawValue)
         case "Top Center  ":
              StaticLocation.addItem("Lower Right");
              StaticLocation.addItem("None");
              break;
         case "Lower Right":
              StaticLocation.addItem("Top Center  ");
              StaticLocation.addItem("None");
              break;     
         case "Top Center":
              StaticLocation.addItem("Lower Left");
              StaticLocation.addItem("None");
              break;
         case "Lower Left":
              StaticLocation.addItem("Top Center");
              StaticLocation.addItem("None");
              break;
    //TextFields 1a-4a
    if (this.rawValue == "Top Center")
         TextField1a.presence = "visible";
    else
         TextField1a.presence = "hidden";
         TextField1a.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2a.presence = "visible";
    else
         TextField2a.presence = "hidden";
         TextField2a.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3a.presence = "visible";
    else
         TextField3a.presence = "hidden";
         TextField3a.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4a.presence = "visible";
    else
         TextField4a.presence = "hidden";
         TextField4a.rawValue = "";
    //TextFields 1b-4b
    if (this.rawValue == "Top Center")
         TextField1b.presence = "visible";
    else
         TextField1b.presence = "hidden";
         TextField1b.rawValue = "";
    if (this.rawValue == "Lower Left")
         TextField2b.presence = "visible";
    else
         TextField2b.presence = "hidden";
         TextField2b.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3b.presence = "visible";
    else
         TextField3b.presence = "hidden";
         TextField3b.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4b.presence = "visible";
    else
         TextField4b.presence = "hidden";
         TextField4b.rawValue = ""; 
    //TextFields 1c-4c
    if (this.rawValue == "Top Center")
         TextField1c.presence = "visible";
    else
         TextField1c.presence = "hidden";
         TextField1c.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2c.presence = "visible";
    else
         TextField2c.presence = "hidden";
         TextField2c.rawValue = "";
    if (this.rawValue == "Top Center  ")
         TextField3c.presence = "visible";
    else
         TextField3c.presence = "hidden";
         TextField3c.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4c.presence = "visible";
    else
         TextField4c.presence = "hidden";
         TextField4c.rawValue = "";
    //TextFields 1d-4d
    if (this.rawValue == "Top Center")
         TextField1d.presence = "visible";
    else
         TextField1d.presence = "hidden";
         TextField1d.rawValue = "";
    if (this.rawValue == "Lower Left")
         TextField2d.presence = "visible";
    else
         TextField2d.presence = "hidden";
         TextField2d.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3d.presence = "visible";
    else
         TextField3d.presence = "hidden";
         TextField3d.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4d.presence = "visible";
    else
         TextField4d.presence = "hidden";
         TextField4d.rawValue = "";
    //TextFields 1e-4e
    if (this.rawValue == "Top Center")
         TextField1e.presence = "visible";
    else
         TextField1e.presence = "hidden";
         TextField1e.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2e.presence = "visible";
    else
         TextField2e.presence = "hidden";
         TextField2e.rawValue = "";
    if (this.rawValue == "Top Center  ")
         TextField3e.presence = "visible";
    else
         TextField3e.presence = "hidden";
         TextField3e.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4e.presence = "visible";
    else
         TextField4e.presence = "hidden";
         TextField4e.rawValue = "";
    //TextFields 1f-4f
    if (this.rawValue == "Top Center")
         TextField1f.presence = "visible";
    else
         TextField1f.presence = "hidden";
         TextField1f.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2f.presence = "visible";
    else
         TextField2f.presence = "hidden";
         TextField2f.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3f.presence = "visible";
    else
         TextField3f.presence = "hidden";
         TextField3f.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4f.presence = "visible";
    else
         TextField4f.presence = "hidden";
         TextField4f.rawValue = ""; 
    //TextFields 1g-4g
    if (this.rawValue == "Top Center")
         TextField1g.presence = "visible";
    else
         TextField1g.presence = "hidden";
         TextField1g.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2g.presence = "visible";
    else
         TextField2g.presence = "hidden";
         TextField2g.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3g.presence = "visible";
    else
         TextField3g.presence = "hidden";
         TextField3g.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4g.presence = "visible";
    else
         TextField4g.presence = "hidden";
         TextField4g.rawValue = "";
    //TextFields 1h-4h
    if (this.rawValue == "Top Center")
         TextField1h.presence = "visible";
    else
         TextField1h.presence = "hidden";
         TextField1h.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2h.presence = "visible";
    else
         TextField2h.presence = "hidden";
         TextField2h.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3h.presence = "visible";
    else
         TextField3h.presence = "hidden";
         TextField3h.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4h.presence = "visible";
    else
         TextField4h.presence = "hidden";
         TextField4h.rawValue = ""; 
    //TextFields 1i-4i
    if (this.rawValue == "Top Center")
         TextField2i.presence = "visible";
    else
         TextField2i.presence = "hidden";
         TextField2i.rawValue = "";     
    if (this.rawValue == "Lower Left")
         TextField1i.presence = "visible"; 
    else
         TextField1i.presence = "hidden";
         TextField1i.rawValue = "";  
    if (this.rawValue == "Top Center  ")
         TextField4i.presence = "visible";
    else
         TextField4i.presence = "hidden";
         TextField4i.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField3i.presence = "visible";
    else
         TextField3i.presence = "hidden";
         TextField3i.rawValue = "";
    ----- form1.#subform[0].VariableLocation::ready:layout - (JavaScript, client) ----------------------
    if (TrimSize.rawValue == null) {VariableLocation.access = "readOnly";}
    else {VariableLocation.access = "open";}
    //1a-4a
    if (VariableLocation.rawValue == null)
         TextField1a.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2a.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3a.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4a.presence = "hidden";
    //1b-4b
    if (VariableLocation.rawValue == null)
         TextField1b.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2b.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3b.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4b.presence = "hidden";
    //1c-4c
    if (VariableLocation.rawValue == null)
         TextField1c.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2c.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3c.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4c.presence = "hidden";
    //1d-4d
    if (VariableLocation.rawValue == null)
         TextField1d.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2d.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3d.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4d.presence = "hidden";
    //1e-4e
    if (VariableLocation.rawValue == null)
         TextField1e.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2e.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3e.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4e.presence = "hidden";
    //1f-4f
    if (VariableLocation.rawValue == null)
         TextField1f.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2f.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3f.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4f.presence = "hidden";
    //1g-4g
    if (VariableLocation.rawValue == null)
         TextField1g.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2g.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3g.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4g.presence = "hidden";
    //1h-4h
    if (VariableLocation.rawValue == null)
         TextField1h.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2h.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3h.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4h.presence = "hidden";
    //1i-4i
    if (VariableLocation.rawValue == null)
         TextField1i.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2i.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3i.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4i.presence = "hidden";

    You are not saving the state of the form. You can do this programmatically but there is a facility in Designer that will do it for you. If you open the Form Properties under the File menu then click the Defaults tab, you will see a section called Scripting. In that section make sure that the "Preserve Scripting changes to for when saved" radio button is set to Automatically.
    Paul

  • Print just what is typed in the text field without printing the text fields

    Hello,
    I'm trying to print a form after I filled in the text fields, but would like it to print just what I typed in the field, not the text field and the color in the text field. I use CS3.
    Any help would be appreciated!

    Hello Teddy and wellcome to the group!
    If you want to change fonts or other things then you might need to use the PrePrint method. What I normally do is select PrePrint from the "Show" section in the Script Editor (If you do not have it go to the toolbar at the top, Windows, and select Script Editor). After you select PrePrint you can now either type the name of the subform and field you want to change (or you can put your cursor in the Scripting Dialog box, hold CTRL and then select the field with your mouse) and then type in the JS to change the font. it is something like TextField1.fillcolor = "255, 255, 255"; (that changes the background fill to white). You can also replace fillcolor with font or border to change the color of the font or the border. I put a link to an Adobe website that goes over JS color changes below. You just need to add a PrePrint method for each field that you wish to remove the necessary highlighting on. Then once the user either hits a Print button that you have on the form or uses CTRL+P to print the form it will remove any highlighting.
    Now On the Text Field not printing itself that I am not sure what you are asking for. Are you asking for the caption not to print or for there not to be a box around the data that is entered? If you do not want to have a box surround the text field that is in the Object section of the field (see image below). You just need to select None if you just want the text. If you want to change that with JS I put another link below that has the code to change the border color to white and the user cannot see it. If you do not want the caption to print the only method is to delete the caption from the text field and replace it with static text that can be hidden, but I am assuming that is not what you are talking about (correct me if I am wrong though).
    http://partners.adobe.com/public/developer/en/livecycle/designer/pdfs/ChangingFieldAndSubf ormBGColors.pdf
    https://forums.adobe.com/thread/1409617

  • ICal deletes dates typed in the Notes field... help!

    I have the new Lion iCal and I want to type dates into the Notes field and type in the Dates of the event so that I can see the specific dates quickly... iCal auto creates the event for the duration of the dates, but deletes the numbers I've typed.  Help.
    It seems that there would be a way to remove this preference. 
    I travel a lot and sync via the iCloud with my phone and really need the ability to glance at an event and know the duration of day's I'll be in a city/town. 
    I used to be able to type these and have them remain. 
    Now the system is "overly helpful" by creating an event for the duration I type in, but it removes the dates I type in the field and won't let me retype them in... 
    Any suggestions? 
    Is there a preference/view that I can switch off???
    All help greatly appreciated.
    MV

    Hello Teddy and wellcome to the group!
    If you want to change fonts or other things then you might need to use the PrePrint method. What I normally do is select PrePrint from the "Show" section in the Script Editor (If you do not have it go to the toolbar at the top, Windows, and select Script Editor). After you select PrePrint you can now either type the name of the subform and field you want to change (or you can put your cursor in the Scripting Dialog box, hold CTRL and then select the field with your mouse) and then type in the JS to change the font. it is something like TextField1.fillcolor = "255, 255, 255"; (that changes the background fill to white). You can also replace fillcolor with font or border to change the color of the font or the border. I put a link to an Adobe website that goes over JS color changes below. You just need to add a PrePrint method for each field that you wish to remove the necessary highlighting on. Then once the user either hits a Print button that you have on the form or uses CTRL+P to print the form it will remove any highlighting.
    Now On the Text Field not printing itself that I am not sure what you are asking for. Are you asking for the caption not to print or for there not to be a box around the data that is entered? If you do not want to have a box surround the text field that is in the Object section of the field (see image below). You just need to select None if you just want the text. If you want to change that with JS I put another link below that has the code to change the border color to white and the user cannot see it. If you do not want the caption to print the only method is to delete the caption from the text field and replace it with static text that can be hidden, but I am assuming that is not what you are talking about (correct me if I am wrong though).
    http://partners.adobe.com/public/developer/en/livecycle/designer/pdfs/ChangingFieldAndSubf ormBGColors.pdf
    https://forums.adobe.com/thread/1409617

  • Text Field Alphabet Soup crashes Safari 3.0.4 - How to fix?

    Like many others, I have installed the 10.4.11 bundle update and am having problems with Safari. My problems occur when I try to type anything into a text field. If I type something that starts with the same characters I have used before, the field fills in automatically and backspacing makes a mess of it. If I use the spacebar, the page scrolls down. If I backspace, the text I type sometimes appears in reverse order. Other garbling of typed text occurs that I cannot fully describe, but in all cases Safari grinds to a halt. I have reinstalled Safari with Pacifist. I have scoured my hard drive for Input Managers and found none. I have deleted Cookies.plist. None of these fixes has worked for me. Anybody have ideas for a fix? Here is a recent crash report:
    Date/Time: 2007-11-29 22:00:41.412 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [65]
    Version: 3.0.4 (523.12)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 45231200
    PID: 401
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000080
    Thread 0 Crashed:
    0 com.apple.WebCore 0x959e1124 WebCore::RenderObject::setStyle(WebCore::RenderStyle*) + 2036
    1 com.apple.WebCore 0x959e046c WebCore::RenderBox::setStyle(WebCore::RenderStyle*) + 44
    2 com.apple.WebCore 0x959e02c8 WebCore::RenderBlock::setStyle(WebCore::RenderStyle*) + 88
    3 com.apple.WebCore 0x959e74b4 WebCore::Node::createRendererIfNeeded() + 340
    4 com.apple.WebCore 0x959e72c8 WebCore::Element::attach() + 24
    5 com.apple.WebCore 0x959e2938 WebCore::ContainerNode::attach() + 88
    6 com.apple.WebCore 0x959e72d0 WebCore::Element::attach() + 32
    7 com.apple.WebCore 0x959e2938 WebCore::ContainerNode::attach() + 88
    8 com.apple.WebCore 0x959dd190 WebCore::Document::attach() + 160
    9 com.apple.WebCore 0x959dd0a0 WebCore::Frame::setDocument(***::PassRefPtr<WebCore::Document>) + 384
    10 com.apple.WebCore 0x95b6fdc0 WebCore::FrameLoader::open(WebCore::CachedPage&) + 1056
    11 com.apple.WebCore 0x959c4e7c WebCore::FrameLoader::commitProvisionalLoad(***::PassRefPtr<WebCore::CachedPage >) + 300
    12 com.apple.WebCore 0x95b6f924 WebCore::DocumentLoader::loadFromCachedPage(***::PassRefPtr<WebCore::CachedPage >) + 84
    13 com.apple.WebCore 0x95b68e1c WebCore::FrameLoader::loadProvisionalItemFromCachedPage() + 92
    14 com.apple.WebCore 0x95dd39dc WebCore::FrameLoader::continueLoadAfterNavigationPolicy(WebCore::ResourceReques t const&, ***::PassRefPtr<WebCore::FormState>, bool) + 220
    15 com.apple.WebCore 0x95a1166c WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool) + 44
    16 com.apple.WebCore 0x95a0fad4 WebCore::FrameLoader::checkNavigationPolicy(WebCore::ResourceRequest const&, WebCore::DocumentLoader*, ***::PassRefPtr<WebCore::FormState>, void ()(void, WebCore::ResourceRequest const&, ***::PassRefPtr<WebCore::FormState>, bool), void*) + 644
    17 com.apple.WebCore 0x95a0ed1c WebCore::FrameLoader::load(WebCore::DocumentLoader*, WebCore::FrameLoadType, ***::PassRefPtr<WebCore::FormState>) + 220
    18 com.apple.WebCore 0x95b682e0 WebCore::FrameLoader::loadItem(WebCore::HistoryItem*, WebCore::FrameLoadType) + 688
    19 com.apple.WebCore 0x95b67e40 WebCore::FrameLoader::recursiveGoToItem(WebCore::HistoryItem*, WebCore::HistoryItem*, WebCore::FrameLoadType) + 336
    20 com.apple.WebCore 0x95b678fc WebCore::Page::goBack() + 60
    21 com.apple.AppKit 0x93821d44 -[NSApplication sendAction:to:from:] + 108
    22 com.apple.Safari 0x00034ae0 0x1000 + 211680
    23 com.apple.AppKit 0x93821c78 -[NSControl sendAction:to:] + 96
    24 com.apple.AppKit 0x93821b58 -[NSCell _sendActionFrom:] + 156
    25 com.apple.AppKit 0x9383bb80 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1020
    26 com.apple.AppKit 0x9383b768 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 564
    27 com.apple.AppKit 0x9383b18c -[NSControl mouseDown:] + 536
    28 com.apple.Safari 0x000b0ca4 0x1000 + 720036
    29 com.apple.AppKit 0x937dc970 -[NSWindow sendEvent:] + 4616
    30 com.apple.Safari 0x00030a64 0x1000 + 195172
    31 com.apple.AppKit 0x937859b4 -[NSApplication sendEvent:] + 4172
    32 com.apple.Safari 0x000304b4 0x1000 + 193716
    33 com.apple.AppKit 0x9377cdf0 -[NSApplication run] + 508
    34 com.apple.AppKit 0x9386d974 NSApplicationMain + 452
    35 com.apple.Safari 0x0009bad4 0x1000 + 633556
    36 com.apple.Safari 0x000022fc 0x1000 + 4860
    Thread 1:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.WebCore 0x959afa30 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x959ab928 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddad8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd3dc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0c738 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be40c0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddad8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd3dc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0b5f8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be40c0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f036c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92beb22c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9ad5042c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92be40c0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddad8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd3dc CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf3090 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf2fc8 -[NSRunLoop run] + 76
    6 com.apple.Safari 0x0004cb8c 0x1000 + 310156
    7 com.apple.Foundation 0x92be40c0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000959e1124 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44048242 xer: 0x0000000020000006 lr: 0x00000000959e1124 ctr: 0x00000000959e0270
    r0: 0x00000000959e046c r1: 0x00000000bfffd450 r2: 0x0000000000631dc8 r3: 0x0000000000000000
    r4: 0x0000000004d646c4 r5: 0x0000000004d646c4 r6: 0x0000000000000000 r7: 0x0000000000000000
    r8: 0x0000000000000030 r9: 0x0000000004cea400 r10: 0x0000000095cd1130 r11: 0x00000000005e1a20
    r12: 0x00000000959e0270 r13: 0x00000000a37ab768 r14: 0x0000000000000100 r15: 0x0000000000000000
    r16: 0x00000000a379b784 r17: 0x00000000a37ab784 r18: 0x00000000a37ab784 r19: 0x00000000a37ab784
    r20: 0x00000000bfffdf30 r21: 0x0000000000000000 r22: 0x00000000bfffde18 r23: 0x00000000005abc00
    r24: 0x00000000bfffdd3c r25: 0x00000000051127f8 r26: 0x0000000000000000 r27: 0x0000000000000000
    r28: 0x0000000004d646c4 r29: 0x0000000004d4ad10 r30: 0x0000000004d4ad10 r31: 0x00000000959e0944
    Binary Images Description:
    0x1000 - 0x134fff com.apple.Safari 3.0.4 (523.12) /Applications/Safari.app/Contents/MacOS/Safari
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.8 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d44fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d49000 - 0x91d4cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4e000 - 0x91e2cfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4c000 - 0x91e4cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4e000 - 0x91f33fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3b000 - 0x91f5afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc6000 - 0x92034fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203f000 - 0x920d4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ee000 - 0x92676fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a9000 - 0x929d4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a04000 - 0x92af2fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af5000 - 0x92b7dfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbe000 - 0x92de9fff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f16000 - 0x92f34fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3f000 - 0x92f99fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb7000 - 0x92fb7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb9000 - 0x92fcdfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe5000 - 0x92ff5fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93001000 - 0x93016fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93028000 - 0x930affff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c3000 - 0x930cefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d8000 - 0x93105fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311f000 - 0x9312efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93776000 - 0x93776fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93778000 - 0x93dabfff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94138000 - 0x941aafff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e3000 - 0x942a8fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942fb000 - 0x942fbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fd000 - 0x944bdfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94507000 - 0x94544fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454c000 - 0x9459cfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a5000 - 0x945bffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945d0000 - 0x945f1fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9467f000 - 0x946b7fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946fc000 - 0x94718fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9472c000 - 0x94770fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94794000 - 0x947a3fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947ab000 - 0x947b8fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947fe000 - 0x94817fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c2c000 - 0x94c9dfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e12000 - 0x94f42fff com.apple.AddressBook.framework 4.0.6 (488) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fd5000 - 0x94fe4fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fec000 - 0x95019fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95020000 - 0x95030fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95034000 - 0x95063fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95073000 - 0x95090fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x957a9000 - 0x95864fff com.apple.WebKit 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x958cd000 - 0x95980fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x959a8000 - 0x95f25fff com.apple.WebCore 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9ad4d000 - 0x9ad83fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ada0000 - 0x9adb2fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerBook5,8, BootROM 4.9.6f0, 1 processors, PowerPC G4 (1.5), 1.67 GHz, 512 MB
    Graphics: ATI Mobility Radeon 9700, ATY,RV360M11, AGP, 128 MB
    Memory Module: SODIMM0/J20STANDARD, 512 MB, DDR2 SDRAM, PC2-4200S-444
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci106b,4318, sppci_othernetwork, SLOT-A
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    PCI Card: usb, usb, USB20
    PCI Card: usb, usb, USB20
    PCI Card: usb, ehci, USB20
    Parallel ATA Device: ST9808211A, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R UJ-846
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: PS/2+USB Mouse, Up to 1.5 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: USB Printer, EPSON, Up to 12 Mb/sec, 500 mA

    Hello,
    Your description sounds similar to this here: http://discussions.apple.com/message.jspa?messageID=5978076#5978076

  • Text fields cannot be deleted in field group in Query

    Hi Experts,
    I created an additional table ZTEST for node A in InfoSet and chose some fields which have text fields into Field Group for display.
    Then in SQ01, those selected fields appeared in my Query field selection. Of course I can tick it to display or not tick it.
    But when I don't need those fields, I go to SQ02 to delete addional table ZTEST in extras in InfoSet and generate it. I go to SQ01 to check whether those fields disappear or not. However, some of them are still there. e.g.
    Checkbox: Text: ZTEST-TA_TYPE
    Checkbox: Text: ZTEST-TA_STATUS
    Since there is no such a table in Infoset, I have no other clue to delete remaining text fields. Do you have idea?
    Regards,
    Ying

    Hello Ying,
    After you made your change to the infoset, you need to completely exit out of SQ01 before running query again.  Call SQ01 like it is the first time you are calling it for a logon.
    Kind Regards,
    Rae Ellen Woytowiez

  • Additional text field in Infoset deleted but not reflected in field selection in Query

    Hi,
    I have deleted an additional text field in infoset. It was used in one query.
    Even in the query it is deleted, but when in field selection screen i am not able to delete.
    If i try to execute the query, I get dump (syntax error) saying in field type(additional field) doesnot exist.
    Can anyone pleassseee help me in this.

    Hi San,
    I am trying to understand. How could you separately delete an additional text field associated with a main field?
    Jogeswara Rao K

  • Safari 3.0.4 (523.12) weird text field & delete button behavior

    Just installed the software update (10.4.11), and now have a weird problem with Safari 3.0.4 (523.12).
    When entering text into a text field _on a web page_ (i.e. NOT the address bar or the built-in Google search field), the screen scrolls when the space bar is pressed (oddly, a space IS entered into the text field).
    Also, once a few pages have been visited, hitting the delete key makes the browser act as if the "back" button had been pressed!
    What gives?
    I tried disabling plug-ins (and restarting Safari) in case one of them was causing a conflict, but it didn't help. I also repaired permissions with Disk Utility. For clarity, I hadn't tried rebooting before launching Safari.
    Is it possible to revert back to a previous version?

    Hi,
    Some other things to try:
    - delete the Safari prefs file at /Users/YourUsername/Library/Preferences/com.apple.Safari.plist
    - try resetting Safari via the Safari menu
    - a test you can do to help narrow down things is to try Safari in another user account. This will help us to know whether your problem is local to your account or system wide. If you don't have another account you can use System Preferences -> Accounts -> \[+\] to create a test one (and \[-\] to remove it if needed)

  • I am creating a request for proposal form and I need to add a commission structure field.  I created a table using the ranking field and now I need to delete the "dots/buttons" and turn them into text fields, is this possible?

      I created a table using the ranking field and now I need to delete the "dots/buttons" and turn them into text fields, is this possible?

    It sounds like what you are trying to do is edit the choices in a likert field to something other than the default radio button. This is not something that you can do in Formscentral at this time.
    Andrew

  • Deleting a Text field...In need of help!

    Hi there,
    I have a text field that loads HTML inside a movie clip, and
    I CAN remove all text with the following code, but not the
    textfield itself. No clickable buttons will work in that space
    after the text field has once been loaded there. Even when I
    manually remove the movie clip from the screen itself. Any
    suggestions?
    This is the code I'm using:
    homeButton.onRelease = function() {
    tArticle.removeTextField();
    gotoAndPlay(3);
    };

    Hi, thanks for your reply, but I'm not sure I'm following
    you. Are you saying that the text is not being removed? Because I
    don't see it on the screen anymore.
    And I'm not sure I understand what you mean by "if it's at a
    removable depth" how would I know if it is?
    Thank you.

  • Check for text in a text field and make checkbox mandatory

    I have a text field where if the user has entered a value, then the checkbox that follows must be mandatory. I have this script that works (sort of), but I'm not sure which event to use to get the results I want. I want the message and the checkbox to be mandatory only if something is typed in the field.
    Here's the script:
    if ((this.rawValue != "null") || (this.rawValue != ""))
         CheckBox3.mandatory = "error";
         app.alert("Please indicate that you have reviewed the similar profile and approve it");    
    else if ((this.rawValue == "null") || (this.rawValue == ""))
         CheckBox3.mandatory = "disabled";
    Thanks,
    MDawn

    That worked. Thank you. I have another problem now. If the user deletes the information typed in the text field, the message box still displays and the checkbox is still outlined in red indicating it's required and it shouldn't be.
    Thanks,
    MDawn

  • Permanently save line spacing in a multi-line text field

    Me: Adobe Acrobat 8 Pro, Windows Vista
    (I think the people who will be using the form have Reader 7 on Windows)
    I work in a doctors' clinic, and we use phone message sheets to document conversations between the patients/us/nurses/doctors, and I scanned the form and made it into a fillable PDF for our secretaries to fill out more quickly. The "message" area has pre-printed lines on it, and the multi-line text field I placed there needs to match up to the lines. I used the Rich Text Formatting options to set it to "Exactly 24 Points," but I can't get it to KEEP the formatting permanently. The only way I could get it to save the formatting in that field was to put a space in it and then save it, and then give that to the 2 phone secretaries. It works perfectly the first time, but instead of just closing/re-opening the file to start a new message, one of the secretaries highlights everything in the "message" field and deletes it... which deletes the line spacing formatting. I've told her
    b numerous
    times to leave that starting space in the field, but she "forgets" so all of her messages look messed up. So is there a way to force that line spacing
    b PERMANENTLY
    ???? Here's a shrunken screenshot of the field -- I wish I could just erase the lines altogether so the spacing wouldn't matter, but the secretaries type/print the message out, then the nurses/docs write on the page with pen so the lines have to stay. http://img187.imageshack.us/my.php?image=notepreviewph8.jpg
    Thanks!

    You can set the font size of the text. Then play with the underlines in the original document to match the needs of the font that is used. Print to a new PDF and then use replace pages to put the new page into the form without changing the form fields. I was able to do this with a word processing document by adding underlining in the document with 12 pt and setting the font to 12 pt in the text field. You can play with the font, the border of the field, and the underlining in the original document to get the desired result. Is this optimal, probably not. However it does the job.

  • How to create a pdf/a-1b with a text field

    hello, I'm trying to execute a very simple task: create a pdf/a-1b containig a text field.
    using Acrobat XI pro, I created a simple pdf form with 1 form field of type text , then tried to save as pdf/A-1b. The pdf is saved but the form field is removed from resulting pdf.
    Here in detail the steps I made:
    0) configure adobe pdf printer to save as pdf/A-1b
    1) creat a test.txt with notepad
    2) print using acrobat pdf printer
    3) open the generated pdf with Acrobat XI
    4) in 'Standards' panel I see that pdf conform
    5) now go to 'Tools\Modules' and 'Modify'
    6) add a textbox field
    7) exit from 'Modify' mode and save
    8) in 'Standards' panel I see that pdf doesn't conform.
    9) I opened the preflight tool and see two errors
         a) "XMP property for a page object not predefined and no extension schema present".
         page reports the following Trigger values:
         - Extension schema is present in XMP: is not true
         - Property exists in PDF/A Standard: is not true
         b) Form field does not have an appearance dictionary
         page reports the following Trigger values:
         - Form field has an appearance dictionary: is not true
    I'm quite new to Acrobat: simply downloaded the Actobat XI evaluation version, created the file and added the text field. No special settings nor other configurations was applied,
    I'm wondering if someone else was able to reproduce this behavior.
    thank you for any comment

    First, about invalidating the PDF/A. I was told, but never had this confirmed nor tested, that editing a PDF/A will automatically cause the PDF/A status to be deleted from the file. This is because Acrobat does not know about the compatibility of every edit with every current (and future) PDF subset standard, so it is safest just to remove the indicator - if you turn off Adobe's PDF/A view mode which will prevent editing anyway.
    Now, you have a problem with the signatures. Possibly a very big one. Your description "2) fill the text field with some annotations and then sign the signature field 3) save the pdf" is a little too separated. At the time a file is signed it is saved, the hash calculated, and written to the file. So signing and saving are just one action. Yet an unsigned digital signature needs, it seems to me, no appearance.
    I think the solution is a simple one. Sign it, but not with a signature field. If it is PDF/A when you start it is probably PDF/A when you finish. Signature fields seem a distraction and obstacle to the important thing, signing.

  • Address Book - Weird text field behaviour

    In Address Book when I try to edit any text field weird things happen.
    When I start typing all the previous characters are repeated with each keystroke - for example typing "Thomas" would become TThThoThomThomaThomas". Pressing the backspace, delete or the ESC key repeats only the keystrokes made, i.e. "Thomas" would be added to the end of "TThThoThomThomaThomas".
    If I click into another field and start typing it still remembers all the previous keystrokes and puts all of them in front of the key I just pressed.
    Additionally, nothing can be typed in the notes field.
    I've tried deleting:
    ~/Library/Preferences/com.apple.AddressBook.abd.plist
    ~/Library/Preferences/com.apple.AddressBook.plist
    but that doesn't fix it.
    Anything in ~/Library/Application Support/Address Book be the problem?
    When I log in a a guest user this behaviour is not present.

    It's good that you tried this on a different account. That suggests that the problem exists somewhere in your user account directory. I don't think anything in ~/Library/Application Support/AddressBook/ would cause this. Do you have any input managers installed? These might be in ~/Library/Input Managers/ or something like that. I've never installed one myself, so I am not certain where they are. I think if you find one, you can just remove it from that folder by dragging it out, and then restarting Address Book might solve the issue.

  • How can I validate numeric values in a text field?

    Hi
    Once more I have a problem.
    I have a field in which the user should enter 10 digits in the pattern 999999-9999. The field must only contain numeric data and must be exactly 10 characters. I have a validation script on the print button, that prevent printing if required fields are empty or not properly filled out.
    I have tried two ways to work this out, and I'm not satisfied with any of them, as I can still print despite of validation scripts and warning messages.
    1.
    I set the field to numeric, limited to 11 characters.
    Display pattern num{999999-9999}, edit pattern num{999999-9999} and validation pattern num{999999-9999}
    Problems using this solution: When I type 11 digits in the field (ex.12345612345) I get a warning message and 12.345.612.
    But when I type 9 digts (ex. 123456-123 or 123456123) I get no warning message and 000000-0000 or 012345-6123
    If I type alphabetical characters (ex. 123456-abcd) I get no warning message and 000000-0000.
    2.
    I set the field to text field, limited to 11 characters.
    Display pattern text{999999-9999}, edit pattern text{999999-9999} and validation pattern text{999999-9999}
    Now when I type 11 digits in the field (ex.12345612345) I get no warning message and 12345612345.
    When I type 9 digts (ex. 123456-123) I get no warning message and 123456-123
    When I type 9 digts (ex. 123456123) I get a warning message and 123456123
    If I type alphabetical characters (ex. 123456-abcd) I get a warning message and 123456-abcd.
    It works slightly better as a text field, but I am not satisfied at all.
    Has anyone a solution to this?
    Additional I would also like the hyphen to emerge automatically when typing.
    K

    I just want to summarize my experience.
    I found a related discussion here: http://forums.adobe.com/message/2513720#2513720.
    Putting the pieces together I came up with this solution.
    form1.subform.TextField1::exit - (JavaScript, client)
    var      
    myRegex = /\d{6}\-\d{4}/;
    var   
    singleDigits = [0,1,2,3,4,5,6,7,8,9]; // array for single digit check
    if   
    (this.rawValue != null || this.rawValue != ''){ // only if the field has a value...
         if (!this.rawValue.match(myRegex)){ // and it doesnt match the pattern (i.e. 2 digits)
         this.rawValue 
    = ''; // clear the field
         xfa.host.setFocus( 
    this); // set focus back to the field
         xfa.host.messageBox('Error: Pattern Conflict. Please use the pattern 999999-9999.'); 
    // enter any message you wish here
    Kirstine

Maybe you are looking for

  • I cannot sync my iphone.  computer says I don't have enough access privileges.

    I cannot sync my iphone.  My computer gives me a message that says, "I don't have enough access privileges".  After an internet search, one site said that I need to delete my photo cache.  How do I resolve this, and is it wise to sync?

  • Xml xslt and java

    To obtain a HTML form from a xsd (xml schema) I thought I must use a parser to parse the schema and extract field info (how many fields needed and which type) to create the form to add records to a simple XML DB, like: <db> <rec id="0"> </rec> </db>

  • Business One in Clustered Environment

    Hey Guys, I was wondering if anyone has any documentation with regards to running Business One in a clustered environment. We have a client who is asking questions about running Business One in this type of setup. Are there any documents available on

  • Again FRM-41213: Unable to connect to Report Server

    Hi all I've been fighting with this problem a week, but I can not understand why my form, which works fine in the Oracle DS Report Server, can not run the report in the Oracle AS. I'm using the Oracle AS 10g. All forms and reports are done in the DS

  • In-place "member server" upgrade Windows 2003 to Windows 2008

    Hi All My scenario is to do an inplace upgrade from Windows Server Standard 2003 32bit to 2008 Standard 32bit. This server is a "member server" no AD/DC. Are there any particualr pre configuration i need to do to the server? There is alot of info. wi