Editor Auto-Selects Text Won't Edit CS4

Hi,
I dunno what I did, but after 2 happy years with CS4, the editor has started doing something very annoying. Probably a stupid thing -I- did but I can't figure it out.
When I open a document, the cursor struggles to auto-select either an entire 'block' (eg. a DIV or even the entire file) and when I try to edit, it refuses... simply trying to 'select' the appropriate surrounding block of -whatever- rather than simply allowing for -editing-.  What I have to do is double click on some arbitrary spot in the code, enter a space, then remove the space... and then it magically 'gives up' the fight and allows for straight editing.
What's going on? As I said, I'm sure it's some goofy preference but I can't figure out what it is.
Any ideas?
TIA,
---JC

Hey that worked!
Annoyed that I had to re-do all my windows but... what the hey...
Still wondering what 'preference' that is, though.
THANKS!
---JC

Similar Messages

  • ABAP Editor - Get selected text

    Hi experts,
    I created a menu exit in se38 and i wanted to retrieve the text that was selected in the editor once the menu item has been clicked.
    Is that possible?
    Thanks.
    FARTAL.

    This only provides the full text of the text box... I was hoping to get the selected text...
    Now, I know that the selected text is lost when the field loses focus, but I also know that the selected text remains selected until after the exit event fires fully.
    To test this, thow an 'xfa.host.messageBox("is it still selected?")' into the exit event of a text box... Run the form, write a line, select a part of it, then exit the text box. You'll get an alert, and the text is still selected. The way I see it, this would be as good a time as any to get the selected text, I just need to know how.
    I've tried several javascript methods, but they were all designed for web browsers. The only thing else that is similar that I can find is the selStart/selEnd attributes that get filled  with the selection indexes on the change event. I'm just now looking at how these attributes work.
    Does anyone know if it's possible to use these attributes to get the selected indexes on exit?
    Thanks again for any help.
    - Scott

  • Select text cell when edit

    How can i select the data in a cell of a JTable when i edit this cell?

    Hi
    I u can highlight it when you select the row and try to edit it. You just have to add an editor to it. And try like setting the background when you add a editor. I think you can do it.

  • How to Turn Off the Auto-Select Function When Clicking In a Document?

    Whenever I click my cursor within any document (Mail, Text, this post) sometimes an entire word is selected (highlighted in blue) rather than the cursor just being there blinking & ready for me to type. If I click again the entire line is selected, then the whole paragraph.
    This is VERY frustrating when all I want to do is place my cursor within the document to edit or begin typing. If I'm not careful and click in a document and just start typing, the auto-selected text is deleted. Yikes!
    Only my Mac Mini with the Leopard OS 10.5.8 does this, not my PowerBook w. Tiger OS 10.4.11. Thanks for any advice on this.

    Correct, Sig.
    When I checked the Double-Click speed in prefs, it was set all the way to the left -- SLOW. When I set it half-way to the right, problem was solved. Thanks much.

  • How to get paragraph number of selected text in ID CS4

    Hi,
    Can anybody help me how to get paragraph number of selected text in Indesign cs4.
    Thanks,
    Gopal

    Ah, I see -- thanks. Turns out that there's no difference in speed between texts.itemByRange(), characters.itemByRange(),and insertionPoints.itemByRange(). In a document with 170 pages of text, and with the cursor in the last paragraph, the second and third lines, below (and your function), give exactly the same result:
    t = app.selection[0];
    t.parentStory.texts.itemByRange (t.parentStory.insertionPoints[0], t).paragraphs.length;
    t.parentStory.characters.itemByRange (t.parentStory.characters[0], t).paragraphs.length;
    Peter

  • Auto-fill text box field values based on pulldown selection

    Trying to fill in address, city, state, zip text fields based on option selected in a select form field. The following code works great in Internet Explorer, but in Chrome or Firefox, after making selection, text fields are populated with the word "undefined."
    I've found a PHP version of Jquery script here that would probabably fit the bill.
    http://stackoverflow.com/questions/3657127/jquery-populate-text-input-from-table-based-on- select-value
    Maybe someone has a CF version they could share?
    Thanks in advance to any who can point me to a solution for this code, or a better way to accomplish my need.
    <!--- Destinations with auto-fill of address, city, etc. --->
    <script type="text/javascript">
          function selectAddress(list) {
                // assume first item is empty
                if (list.selectedIndex > 0) {
                      var locationID = list.options[list.selectedIndex].value;
                      var locationAddress = list.options[list.selectedIndex].locationAddress;
                      var locationCity = list.options[list.selectedIndex].locationCity;
                  var locationState = list.options[list.selectedIndex].locationState;
                  var locationZip = list.options[list.selectedIndex].locationZip;
                  document.getElementById('locationID').value = locationID;
                      document.getElementById('locationAddress').value = locationAddress;
                      document.getElementById('locationCity').value = locationCity;
                  document.getElementById('locationState').value = locationState;
                  document.getElementById('locationZip').value = locationZip;
    </script>
    <tr>
    <td align="right" bgcolor="#FFFFFF" valign="top">Name of Destination</td>
    <td align="left" bgcolor="#FFFFFF" valign="top">
       <select name="locationID" onChange="selectAddress(this)" class="smallforms">
                 <option value="">SELECT DESTINATION ››››››››››</option>
                 <cfoutput query="allLocations">
                       <option value="#locationName#" locationAddress="#allLocations.locationAddress#" locationCity="#allLocations.locationCity#" locationState="#allLocations.locationState#" locationZip="#allLocations.locationZip#">#locationName#</option>
                 </cfoutput>
            </select> 
          Other: <cfinput name="destinationNameOther" type="text" class="smallforms" size="75">
          <br />
           <input id="locationID" name="locationID" type="hidden"><br>
             Address:    <input class="smallforms" id="locationAddress"    name="locationAddress"    type="text" size="30"> 
             City:       <input class="smallforms" id="locationCity"    name="locationCity"    type="text" size="20"> 
             State:       <input class="smallforms" id="locationState"    name="locationState"    type="text" size="2"> 
             Zip:       <input class="smallforms" id="locationZip"       name="locationZip"       type="text" size="8"><br />
    <br />
    </td></tr>

    Thanks a million for the help Steve, the array is being created in source as follows: 
    <script type="text/javascript">
    var addresses = [
       "locationName": "Airport Park School",
       "locationAddress": "",
       "locationCity": "",
       "locationState": "WI",
       "locationZip": ""
       "locationName": "American Legion Golf Course",
       "locationAddress": "1001 Golf Club Road",
       "locationCity": "Wausau",
       "locationState": "WI",
       "locationZip": "54403"
    but I'm lost at the
    // reference as address[index].locationName...address[index].locationZip where index = 0-[arraysize-1]
    direction, and just to double check, you named the Javascript var "addresses", so the "reference as address" s/b "reference as addresses" right?
    I've tried many iterations of "onchange" adding other variables (locationCity, locationZip, etc.) but coming up empty.
    Anyway, I wish I could buy you a beer or two for the help . . .
    Here's where I'm at, which ain't working. If you have a minute to look over, it would be MUCH appreciated. Try not to laugh at my (what's probably ugly) Javascript code:
    <!--- Code from Steve @ Adobe.com CF Forum --->
    <script type="text/javascript">
    var addresses = [
    <cfset variables.fs = "" />
    <cfoutput query="allLocations">
      #variables.fs#{
       "locationName": "#jsStringFormat(locationName)#",
       "locationAddress": "#jsStringFormat(locationAddress)#",
       "locationCity": "#jsStringFormat(locationCity)#",
       "locationState": "#jsStringFormat(locationState)#",
       "locationZip": "#jsStringFormat(locationZip)#"
      <cfset variables.fs = "," />
    </cfoutput>
    // reference as address[index].locationName...address[index].locationZip where index = 0-[arraysize-1]
    </script>
    <tr>
    <td align="right" bgcolor="#FFFFFF" valign="top">Name of Destination</td>
    <td align="left" bgcolor="#FFFFFF" valign="top">
      <select name="locationID" class="smallforms"
      onChange="var locationAddress = addresses[list.selectedIndex].locationAddress;">
                 <option value="">SELECT DESTINATION &#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;</option>
                 <cfoutput query="allLocations">
                       <option value="#locationName#">#locationName#</option>
                 </cfoutput>
          </select> 
      Other: <cfinput name="destinationNameOther" type="text" class="smallforms" size="75">
      <br />
      <cfoutput>
       <input id="locationID" name="locationID" type="hidden"><br>
       Address:  <cfinput class="smallforms" id="locationAddress"  name="locationAddress"  type="text" size="30"> 
       City:   <cfinput class="smallforms" id="locationCity"   name="locationCity"  type="text" size="20"> 
       State:   <cfinput class="smallforms" id="locationState"   name="locationState"  type="text" size="2"> 
       Zip:   <cfinput class="smallforms" id="locationZip"   name="locationZip"   type="text" size="8"><br />
      </cfoutput>
    <br />
    </td></tr>
    Thanks again Steve . . . much appreciated!

  • In JDev11.1.2, when I select texts in editor, it will copy  automatically?

    All,
    I met one strange thing in the Jdev version 11.1.2, when I select some texts in editor(Java/JSP/XML/HTML), it will copy the selected text automatically, and I can't find which property that I can deselect in preference to disable this function.
    And I reinstalled it, this issue is still existed, but other colleagues using the same version don't have this issue, and also I didn't meet this issue when I used previous version(like 11.1.1.5 or 11.1.1.4) .
    Anyone knows it?
    Thanks,
    zeroxin

    Does it happen the same way when you use some text editors as well (notepad ? gedit? ).
    -Arun

  • How to programatically select text for editing in an af:inputText control?

    Hello, I am new to jdeveloper 11.1.1.3.0 and have searched and searched for info. I must be using the wrong terms as I cannot find any info or example on how to programatically select text for editing in an inputText field.
    My request is to change an existing app so when the user presses a button, control should go to the inputText control (this part works, see existing backing bean code from another developer below) but automatically select the text within for editing by the user (saving the user from having to select the text first before editing).
    Backing bean code to set the focus to an inputText field:
    * sets the cursor to the given component id
    * @param  componentId of item on page
      public void setFocusOnUIComponent(String componentId) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        ExtendedRenderKitService service =
          Service.getRenderKitService(facesContext, ExtendedRenderKitService.class);
        UIComponent uiComponent = facesContext.getViewRoot().findComponent(componentId);
        service.addScript(facesContext,
          "Component = AdfPage.PAGE.findComponentByAbsoluteId('" + componentId + "'); Component.focus();");
      } I hope this isn't a dumb question and would appreciate it if someone can steer me in the right direction.
    Thank you for any info,
    Gary

    Hi,
    not a dumb question at all. Before answering it, here some comments on the code you pasted in your question
    1. UIComponent uiComponent = facesContext.getViewRoot().findComponent(componentId);
    This code line is not used at all in your method. So it seems you can get rid of it
    2. "Component = AdfPage.PAGE.findComponentByAbsoluteId('" + componentId + "'); Component.focus();");
    I suggest to change it to
    "var component = AdfPage.PAGE.findComponentByAbsoluteId('" + componentId + "'); component.focus();");
    as it is better coding practice to have variable names starting with a lower case letter and being flagged with the "var" identifier
    For pre-selecting text in an an input component, there is no API available in ADF Faces, which means you need to reach out to the rendered HTML ouput. To access the markup for the rendered component, you can try
    var markup = AdfRichUIPeer.getDomContentElementForComponent(component)
    If this markup returns the HTML input component then you can use JavaScript you find on the Internet to select the area of it. If it does not return the input component then you may have to use
    document.getElementById(componentId+'::content')
    Note however that working directly with generated HTML output bears the risk that your code breaks when - for whatever reason - the ADF Faces component rendering changes in the future
    Frank
    Frank

  • Selection tool won't select swatches or link text frames?

    My selection tool won't select swatch colours and most of the time it is very difficult to link text boxes.
    Am I doing something wrong?

    All files, or just this one?
    Have you trashed your prefs? see Replace Your Preferences

  • Edit selected text object

    Hey guys,
    Trying to find a shortcut for 'go to edit mode for the selected text frame' I tried scripting it myself using lines[].select. However you still cannot edit the text immediately after that.
    I'd like to have a function that when I select a text frame, I press a key (e.g. F2) and can edit the text contents. Like for example you can edit file names in Windows Explorer.
    Koen

    Doubleclicking the object gives the wanted behaviour however I am looking for a solution that does not involve a mouse.

  • What controls the color of the cursor that selects text when you use the "Edit Document Text" tool?

    Hi, I have had a student ask me a question I cannot answer: what controls the color of the cursor that selects text when you use the "Edit Document Text" tool?
    I have only seen it appear as a black semicircle over each letter, but at a different computer in our training facility, this same tool appears as an aqua-green highlight.
    Is it a preference I never noticed? Thanks for any info.

    What version of Acrobat? What operating system?

  • Edit/Replace just in Selected Text?

    Is there any way to select a block of text and go an edit/replace operation ONLY in that text, not the entire worksheet?
    (Other than doing a prompted one and stopping once one leaves the selected text.)

    I don't know how many times I've looked at that dialog box... :)

  • Can't select text in pages to edit

    can't select text in pages to edit

    Details?
    We can't see your screen or what versions you are using.
    Or at least I can't.
    Peter

  • How do I get the bold, underline, italics editing option for Notes on iPhone 5 iOS 7.0.4? Option is not appearing when I select text.

    When I select text, I don't get an arrow with additional options. What is shown in the image are the only options I get. Is there something I need to do in Settings or something in order to be able to bold, underline and italicize text?
    I     

    I only have an iPod (but it does have the latest software) but I achieved bold text as follows:
    1) touch and hold word to embolden;
    2) touch Select;
    3) touch the arrow head at the right;
    4) touch BIU option section of the option bar;
    5) touch the Bold section of the option bar.
    Having selected the text, the selection can be narrowed or widened using the blue dot.  Also, the Bold, Italics and Underline option bar does not disappear once a section has been made, thus bold and underline can be chosen - touch elsewhere on the screen to remove the option bar.  When the selected option bar section background turns grey the software has accepted your request.  Note that a first go at achieving this might not work if the software has not correctly picked up your touch and may not present you with the correct options - it is intuitively trying to help you and sometimes misunderstands your touch.

  • Airport card won't auto select my AirPort network at boot up

    I have two AirPort express routers in the house, configured together (to increase range) on one network, "Aspen". Its the only network I have. When I first set up my Mac several years ago I used the AirPort wizard. After initial config, my Mac would always automatically select the wireless network "Aspen" at every boot up. Over time, I started to see my neighbor's various networks listed too, but, the AirPort card always auto selected and connected to my network.
    Somewhere along the way (with various network reconfigs happening to add the second router, reset a password so someone's WIndows machine could use the network, etc..) somehow my config got munged and for the last year or so my AirPort card would not auto connect. I'd have to manually select "Aspen". In the last few months, auto select has begun working again, but, it always, always selects my neighbors network, and I have to manually switch it over to mine.
    I've used the Help docs below. I've got it set up exactly as they're saying. "Aspen" is the ONLY network on my AirPort list. When I boot, it says, "I can't find your network. Would you like to connect to "neighbors network"? What can I do to reconfigure this to work correctly?
    Thanks so much!
    Choosing preferred AirPort networks
    By default, AirPort attempts to join the wireless network your computer was most recently connected to.
    If you are in an environment with multiple wireless networks, you can set up your computer to join a preferred network when you start your computer, wake it from sleep, or turn AirPort on.
    AirPort keeps track of the wireless networks your computer has connected to, and lists them in the Network pane of System Preferences.
    To choose a preferred AirPort network using Mac OS X 10.4:
    Open Network preferences, choose AirPort from the Show pop-up menu, and click AirPort.
    Choose "Preferred networks" from the "By default, join" pop-up menu, and select a network from the list.
    You can add wireless networks to the list by clicking the Add button, and clicking on the Network Name pop-up menu. Choose a network and enter a password for the network if necessary. Use the Delete button to remove a network from the list.
    To give a network the highest priority, drag the name of the network to the top of the list. This is the network AirPort will attempt to join first.
    If you are using Mac OS X 10.3, choose "A specific network" from the "By default, join" pop-up menu, and either type the name of the network in the Network field, or click the Network pop-up menu to display the available networks, choose one and then enter your password for the network.
    You can set additional options to control the way your computer joins available networks. Click Options and choose an option from the "If no preferred networks are found" pop-up menu.
    If you choose "Ask before joining an open network," you will be prompted when an open network becomes available. If you choose "Automatically join an open network," you will not be promoted, and will automatically join an open network when it becomes available. If you choose "Keep looking for recent networks," AirPort will continue looking for networks you have already joined, and automatically join the network when one is found.

    You might try the steps in this Knowledge Base article;
    http://docs.info.apple.com/article.html?artnum=304482
    Dah•veed

Maybe you are looking for

  • Lightroom 5.4 backup hangs upon finish, relaunches new dialog box

    Is this a bug? I have a recurring Lightroom 5.4 issue on quitting. I have it set up to backup catalog every week upon exit. When the time comes each week, the backup proceeds, but doesn't end -- it just hangs while a new, second dialog box asking to

  • FCP X Project export to USB Thumb Drive

    I have a client that is requesting thier Wedding DVD to go on a USB Thumb Drive so they can watch it on thier TV in Full 1080p HD and not have to use a DVD Player (which degrades the quality from its original source). My first question is - How do I

  • Email script adds a ghost address in email client

    I am using the following script to send an attached PDF back to my client when their customers complete and submit the form. Everything works well, except that it lists the email address twice in the "to" field (the second is not a complete address s

  • RenderPDFForm is generating big pdf files

    hi, In a workbench process Im generating a xdp file that I convert to a PDF file using the renderPDFForm component. This is working, however, the generated PDF document is not being compressed. In the renderPDFForm properties I can´t find any propert

  • Questions re upgrading to Office 2011

    Two questions: I have Office 2008 home installed on my MacBook Pro Retina. I bought an upgrade to 2011 home; do I have to uninstall 2008 before installing 2011? Second, related and more important question; my Exhange hosting firm gave me a copy of Ou