Drag select in text fields causes scrolling

On many sites in safari under Yosemite, I click drag text in a text field, and get scrolled back to the top of the page. Happens in blogger and many other platforms

On many sites in safari under Yosemite, I click drag text in a text field, and get scrolled back to the top of the page. Happens in blogger and many other platforms

Similar Messages

  • How can I stop URL from loading when I paste it into a page without selecting a text field first?

    I'm using a chat where I often copy links; if I forget to click the text field when copying an URL, it opens, forcing me to go back manually, which is really annoying. Can I disable URL autoopening somehow?

    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • Selecting just text fields throughout the entire document when editing forms in Acrobat Pro XI

    I edit PDF's all day and it is seriously time consuming to edit the properties of text fields when you can only select a few at a time due to other elements (checkboxes, radio buttons etc.) prohibiting you from simply "Selecting All" elements and editing them all at once. I do not want to change the Appearance properties of all elements, just all of one type throughout the document. Is there a way to do this?
    Long story short I would like to just edit all text fields at once, then all checkboxes at once etc.
    Thanks for you time!
    Sean

    In the form edit mode, one can order the display of the fields by "name" or "tab order".
    If I sort the fields by name order and then use the control key and left mouse button, I can select various field names and the right mouse click brings up the context menu and I can then select the "Properties" option and I now have the 5 tabs for the common properties for the selected fields. I believe using the control key and the left mouse button is the usual method for selecting specific items in a  window listing.

  • Drag and drop text fields

    Hey.  trying to drag and drop a text field.  So I have created a text field, and saved it as a swf.  I then load it in using xml and the loader class.  When I go to pick it up, i get the error
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.text::TextField@10d59b51 to flash.display.Sprite.
        at GalleryNew_fla::MainTimeline/pickUp()[GalleryNew_fla.MainTimeline::frame1:81]
    It is specifically pointing to
    function pickUp(event:MouseEvent):void {
        getPosition(event.target);
        stage.addChild(event.target as DisplayObject);
        Sprite(event.target).startDrag(true);
    Should I be casting it to something else or something?
    cheers

    I will try and explain what I am doing better, because I am problably doing this tottally wrong, I am just mixing a lot of code to get something together.
    Basically, I have several buttons.  If a button is pressed, it displays objects in a sort of holder.  These objects might be images, animations etc.  When these are placed in the holder, they can be dragged and dropped.  If they are not dropped in the right location, they go back to their position in the holder.
    So, my first two buttons work great.  These just deal with images.  button5, which I am working on now, is dealing with textfields.  So, it should load my textfield swfs, place them in the holder, and made to be drop and draggable.  Problem is, I am using the code which i used for the images, which is where I might be going wrong.
    If I show you the code, maybe you could suggest a better way to do things
    Cheers
    import caurina.transitions.*;
    var xml:XML;
    var xmlList:XMLList;
    var urlLoader:URLLoader;
    button1.addEventListener(MouseEvent.CLICK, click_handler);
    button2.addEventListener(MouseEvent.CLICK, click_handler2);
    button5.addEventListener(MouseEvent.CLICK, click_handler5);
    function click_handler(event_object:MouseEvent) {
         removeChildren(photoContainer);
         while (arrayThumb.length > 0) {
              arrayThumb.pop();
         loadXML("pics.xml");
    function click_handler2(event_object:MouseEvent) {
         removeChildren(photoContainer);
         while (arrayThumb.length > 0) {
              arrayThumb.pop();
         loadXML("pics2.xml");
    function click_handler5(event_object:MouseEvent) {
         removeChildren(photoContainer);
         while (arrayThumb.length > 0) {
              arrayThumb.pop();
         loadXML("pics5.xml");
    function removeChildren(doc:DisplayObjectContainer):void {
         while (doc.numChildren > 0) {
              doc.removeChildAt(0);
    function loadXML(xmlS:String):void {
         var urlRequest:URLRequest=new URLRequest(xmlS);
         urlLoader = new URLLoader();
         urlLoader.load(urlRequest);
         urlLoader.addEventListener(Event.COMPLETE,urlLoaded);
    var arrayThumb:Array=[];
    var photoContainer:Sprite = new Sprite();
    addChild(photoContainer);
    photoContainer.mask=thumb_holder;
    function urlLoaded(event:Event):void {
         urlLoader.removeEventListener(Event.COMPLETE,urlLoaded);
         xml=XML(event.target.data);
         xmlList=xml.children();
         for (var i:int=0; i<xmlList.length(); i++) {
              var thumb:Thumbnail=new Thumbnail(xmlList[i].url);
              arrayThumb.push(thumb);
              arrayThumb[i].y=150.5;
              arrayThumb[i].x=i*110+280;
              photoContainer.addChild(thumb);
              arrayThumb[i].addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
              arrayThumb[i].addEventListener(MouseEvent.MOUSE_UP, dropIt);
    var xPos:int;
    var yPos:int;
    function getPosition(target:Object):void {
         xPos=target.x;
         yPos=target.y;
    function pickUp(event:MouseEvent):void {
         getPosition(event.target);
         stage.addChild(event.target as DisplayObject);
         Sprite(event.target).startDrag(true);
    function dropIt(event:MouseEvent):void {
         Sprite(event.target).stopDrag();
         if (event.target.hitTestObject(getChildByName("movie"))) {
              var my_loader:Loader = new Loader();
              var myString:String=event.target.url;
              var newString:String=myString.replace("pics/","");
              my_loader.load(new URLRequest("pics2/" + newString));
              movie.addChild(my_loader);
              this.photoContainer.addChild(event.target as DisplayObject);
              event.target.x=xPos;
              event.target.y=yPos;
         } else {
              this.photoContainer.addChild(event.target as DisplayObject);
              event.target.x=xPos;
              event.target.y=yPos;
    var minScroll:Number=0;
    var maxScroll:Number=track.width-handler.width;
    var draging:Boolean=false;
    var bounds:Rectangle=new Rectangle(handler.x,handler.y,maxScroll,0);
    handler.buttonMode=true;
    handler.addEventListener(MouseEvent.MOUSE_DOWN,beginDrag);
    function beginDrag(event:MouseEvent):void {
         handler.startDrag(false,bounds);
         draging=true;
         handler.addEventListener(Event.ENTER_FRAME,checkingProgress);
         stage.addEventListener(MouseEvent.MOUSE_UP,endDrag);
    function endDrag(event:MouseEvent):void {
         handler.stopDrag();
         draging=false;
    function checkingProgress(event:Event):void {
         var procent:Number=handler.x/maxScroll;
         if (draging) {
              Tweener.addTween(photoContainer,{x:(475-procent*(photoContainer.width-thumb_holder.width)),time:1});

  • Select a text field

    hello,
    I have a text field, I want when I select this field the cursor shows up after the last character of the text so that I can add characters.
    I work with forms 10g
    thank you

    You may set the item property Keep Cursor Position to TRUE

  • Resizing Text Fields Causes Adobe to Hang

    Good Afternoon All-
      I have a PDF of our company floor plan. I added text fields over each office with the person's name and telephone number. There are over 100 text fields. I created this form in Adobe Acrobat Pro 8. I have since upgrade to 10 Pro. When I open the form and try to resize one of the text fields, Adobe will hang for on average, 1 minute or two and then come back to life. It only seems to happen when I resize or try to move a text field from this PDF. I tried adding text fields into other PDF's and they resize/move fine without Adobe hanging. Does anyone know what the issue might be? I even tried opening it up on another PC that has Acrobat Pro 11. I also tried using the PDF Optimizer and making it compatible with Acrobat 10 and still no dice. Any help would be greatly appreciated.

    Hi AdobeDonutGeek,
    Based on your description, this would be one where it might be better to contact our technical support for assistance.
    Thanks,
    -Dave

  • How do I create a text field the scrolls mutliple pages in Adobe Pro XI

    How do I create a text field that when filled in the alloted space on one page it opens a second page?

    Search the forum for "auto tab"...

  • Creating & Moving Text Fields Causes Delays/Slowness

    Maybe it's my computer, but I'm trying to create a simple PDF form using only text fields and it's very slow going. I'm adding the text fields to a 4MB PDF created in Illustrator that includes hi-res JPEG-compressed images. I need the file to be hi-res for end-user printing. The problem arrises right off the bat when I go to insert my first text field. I get the text field placed and then my curser goes to the watch, then the twirling beach ball. This lasts for about 30 seconds before I can even edit the formatting/properties. Once the program is done thinking, I go to create another text field. Sometimes this too requires 30 seconds of spinning beach ball and sometimes not. Either way, it's painfully slow as I have a couple dozen of these to add and tweak. I don't want to wait 30 seconds every time I try to tweak something. I'm running with 8 GB of RAM and while my Mac Pro is 4 years old, it has a 2 x 3 GHz Quad-Core. I'm running CS5 with Acrobat Pro.
    Is there a setting I could be using that could help speed things up? It just seems strange that the computer/program has to do so much thinking after each placed text box... especially since there are no formulas/calculations being used. Unfortunately, I don't usually use Acrobat or create forms, so I'm somewhat of a novice user despite being a 20-year Adobe user.
    And I suppose if the problem is the size of my original PDF created in Illustrator, can I create the form on top of a much lower res PDF and then transpose the form to the higher res version for distribution?
    Thanks everyone!
    Abby

    I suppose a possible solution is if there's a way to add the text form fields in Illustrator... or if there's a way to add an invisible marker (besides adding a rule line) that Acrobat will automatically read as a text field location?

  • Select List/Text Field

    On my form I have a dynamic select lists What I want to do is that, if the required value is not in the select list, then the user can type it in. Then on saving the record the value is added to the select list.
    Any ideas appreciated
    Gus

    Hello,
    I guess the easiest way to do that is to put a text item next to the select list.
    If you don't find the value, you type in there.
    Or you could add for ex. an other in the select list and when that's selected, the text item gets visible.
    Next to that you want a process that handles the insert into the table.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • Arrows in a text field / Common scroll for a jlist and a graphic field

    I am developing a software which requires me to dynamically add arrows from one list entry to another(depending on the users respone) in a jlist.
    Is there any method to do that directly or by means of two parralel fields(one for the list and other for the arrows) controlled by a single scroll????
    Cheers!!!

    I don't understand the question, but read the Swing tutorial on "How to Use Lists" which shows the proper way to add and remove items from a JList:
    http://java.sun.com/docs/books/tutorial/uiswing/components/list.html
    If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)", that demonstrates the incorrect behaviour.
    http://homepage1.nifty.com/algafield/sscce.html
    Don't forget to use the "Code Formatting Tags", so the posted code retains its original formatting.
    http://forum.java.sun.com/help.jspa?sec=formatting

  • Adding text field to e-mail subject

    Hi all,
    I've got a button on my form that should submit the form in pdf format, to a fixed mail address with a fixed subject message, that has variable content dragged from a text field, i.e "Subject; New e-DCR <TextField12.rawValue>"
    Firstly, I got everytihng working with an automatic Submit by E-mail button, but couldn't solve the subject line text issue.  Next, I added a normal button, with a Regular controil type, & tried the following script (from another forum post) under the Click event in script editor - now, the button won't even fire....
    var Mailto = "[email protected]";
    var Subject = "New e-DCR" + TextField12.rawValue;
    var Mail = "mailto:" + Mailto + "?Subject=" + Subject;
    event.click.submitForm({
    cURL: Mail,
    bEmpty: true,
    cSubmitAs: "PDF"
    I'm a complete n00b at scripting, so any advice & help would be very much appreciated.  Thanks!

    Hi Ian,
    This can be done by using a dummy submit button.  Try the following.
    Drag a button into the form. Lets name it as DummySubmitButton. Then in the control Type select Submit. In the Presence dropdown select Invisible.Then select Submit tab next to Field tab.Then in the SubmitURl mention the url you want to send. Like this - mailto:[email protected] Select Submit As XML/ PDF as you want. This button will not be visible in the form.
    Now drag another button. Lets name as SubmitButton. This will be visible in the form. It will be or regular control type. In the click event of this SubmitButton write the following code
    DummySubmitButton.event__click.submit.target = "mailto:[email protected]" + "?subject=" + "New e-DCR " + TextField12.rawValue ;
    DummySubmitButton..execEvent("click");
    What this script will do is it will use set the submit functionality like mailto, Subject before submitting. After setting these parameters finally the click event of the dummy button would be called and it will submit the form.
    Hope this helps.
    Thanks,
    Bibhu.

  • Please help. Text fields launch email for XML data

    Let me start by saying I have only been using LiveCycle for two days. I did buy a book and have exhaustuvley searched for a solution....with that said....
    After completing almost the entire form, somehow or other I managed to make all the text fields but one initiate email of xml data as soon as you try to type in them in PDF preview or reader or pro.
    I added a new text field for test and it does NOT do the same thing. I can't for the life of me figure out how to turn this off.
    Issue:
    When checking pdf preview, if I click inside a text field to type, it stops the preview and launches an email window with a blank XML file. It does the same thing if I open the file in Reader or Pro.
    Solution I am looking for:
    My form is nearly complete and i would hate to have to start all over. Basically, I do NOT want the text fields to initiate an email of the form data. I just want the user to be able to type in them as required. In my opinion this should only happen with the "email form" button.
    Thanks,
    Joe
    [email protected]

    funny, i found a workaround. after nearly 3 hours and finally posting here, in 15 minutes i found something. I still would like to know
    what caused this if anyone knows.....
    Fix:
    By selecting the text field and changing object type to "Text" then changing it back to "TextField" then save, it now works fine. Of course I had to do it on all 25 fields but way better than redoing all the custom fields i created.

  • How to provide text formatting options to user from a text field

    Hi,
    My requirement is - in the interactive form, a comments field needs to be provided where user should be able to enter text with formatting options like
    Headers
    indentations
    bold/italic
    bullet points and numbers
    Once user enters the formatted texts in a text field, data needs to be displayed/printed in the same format. Could you help me on how to provide these formatting options to the user for a particular text field?
    I understand that once I define the text field with format XHTML (with RTF), user formatting can be captured and displayed in the same way. But I am not sure on how to provide the formatting options for the text field.
    Thank you,
    Madhu

    Hi,
    if you select a text field for Rich Text and the press Ctrl + E you'll get a bar for all available text formatting options in Acrobat/Reader.

  • Text continues moving horizontally rather than starting a new line in editable text field

    I am trying to make a feed backbox for visitors on my website. I have made the editable text field and scroll bar and set all of my preferences, but when the typing reaches the border on the right of the text field it just continues to type further horizontaly. I can start a new line by pressing enter but I would like it to start a new line on its own when it reaches the boundary. Any help is appreciated.

    assign your textfield's wordWrap property to true.

  • Using radio buttons to populate a text field

    Hi
    This is my first time creating Adobe Forms and my first time using JavaScript as well. One of the questions on my form asks about Ethnicity and I have about 15 choices for which I created radio buttons. I want the user's choice to populate a textfield, but am not sure how to write the code that will do this. Any help would be greatly appreciated. Thanks

    If you set the export value (aka Button Value, Radio Button Choice) of each radio button to the text you want to show up in the text box, the custom calculate script for the text box, which you should set to read-only, can be simply:
    (function () {
        // Get the value of the radio button group, as a string
        var s = getField("Ethnicity").valueAsString;
        // Set this field's value to the text associated with the selected radio button
        event.value = s === "Off" ? "" : s;
    If none of the radio buttons is selected, the text field will be blank. Change "Ethnicity" above to the actial name of the radio button group.

Maybe you are looking for