Copy/paste - bug/odd behavior

I am getting an annoying behavior from the workshop IDE, when i do
copy/paste.
I often double-click a word and then press CTRL-C. I can do this as well
in workshop. But the behavior is VERY odd, when I do it with normal
working speed.
Say for example this code:
<code>
Line 1: String str = null;
Line 2: If ( str != null)
Line 3: str = "workshop is odd";
</code>
If I do double click and then CTRL-C on "str" in Line 3. Then my cursor
moves up to "str" in Line 1, and on the clipboard is the full Line 3.
Except from the movement of the cursor, a copy of the whole line I would
only expect from a triple-click and it should as a minimum mark the
whole line.
In this example it is not so bad, but if my line 3 was line 99, it gets
very annoying.
If I do it "slowly" it behaves correctly or as expected.
Is this expected behavior of IDE?? - Because this it definitely not my
expectation.

I doubt anyone can help without a screen shot of what you are seeing.  Come back when you have one.  In the meantime I would not worry, it is most likely some kind of encoding glitch.  You don't have to "enable" a language to have it displayed on your screen, OS X automatically does that.

Similar Messages

  • IOS 5 Copy/Paste Bug

    Since updating to IOS 5 (both on iPhone 4 and iPad 2), I can no longer copy content from some web pages. This almost always happens when displaying .htm pages. IOS will allow ou to select the content and will go through the motions of copying it, but when you go to paste the information anywhere none of the data copied is pasted.

    Somewhat similar issue with my ipad2 after upgrade to ios5.I cannot copy/paste the URL address in landscape position with home button on the right. If I rotate the ipad to portrait positions (either side) and landscape with home buttion on the left, it works fine. And when it is working, like I can copy, then after awhile the safari browser website will crashed. The keyboard will comes up and down, up and down..... the search engine will slide in and out, in and out........... the bookmark wll slide in and out.... and immpossible to control the page ..... it will not response when i tap on any part and just have to switch off to stop. Anybody knows what is happening? got a bug? Any fix? Please help...........

  • InDesign CS4 & IDML & Copy & Paste Bug

    Hello,<br /><br />i have build an InDesign CS 4 document with javascript; like this<br /><br />//HelloWorld.jsx<br />//Create a new document.<br />var myDocument = app.documents.add();<br />//Get a reference to the first page.<br />var myPage = myDocument.pages.item(0);<br />//Create a text frame.<br />var myHelloTextFrame = myPage.textFrames.add();<br />//Specify the size and shape of the text frame.<br />myHelloTextFrame.geometricBounds = ["6p0", "6p0", "18p0", "18p0"];<br />//Enter text in the text frame.<br />myHelloTextFrame.contents = "Hello World!";<br />var myStory = myHelloTextFrame.parentStory;<br />myStory.trackChanges=true;<br />myStory.insertLabel("innerText1","dbkey2211");<br /><br />var myInnerTextFrame = myPage.textFrames.add();<br />//Specify the size and shape of the text frame.<br />myInnerTextFrame.geometricBounds = ["6p0", "30p0", "18p0", "42p0"];<br />//Enter text in the text frame.<br />myInnerTextFrame.contents = "ziemlich sinnfreier Text";<br />var myInnerStory = myInnerTextFrame.parentStory;<br />myInnerStory.trackChanges=true;<br />myInnerStory.insertLabel("innerText2","dbkey3322");<br /><br />//Save the document (fill in a valid file path).<br />var myFile = new File("/c/HelloWorld.indd");<br />var result = "saved to:  " + myFile.fullName;<br />if(!myFile.parent.exists && !myFile.parent.create()) {<br />     result = "Not saved.  Unable to create the folder:  " + myFile.parent.fullName;<br />} else {<br />     myDocument = myDocument.save(myFile);<br />}<br />//Close the document.<br />myDocument.close();<br /><br />result;<br /><br />so i get the "HelloWorld.indd" file ... so far so good. Now i load this in InDesign and export it as IDML.<br /><br />I get for example this story<br /><br /><?xml version="1.0" encoding="UTF-8" standalone="yes"?><br /><idPkg:Story xmlns:idPkg="http://ns.adobe.com/AdobeInDesign/idml/1.0/packaging" DOMVersion="6.0"><br />     <Story Self="ue0" AppliedTOCStyle="n" TrackChanges="true" StoryTitle="$ID/" AppliedNamedGrid="n"><br />          <Properties><br />               <Label><br />                    <KeyValuePair Key="innerText2" Value="dbkey3322"/><br />               </Label><br />          </Properties><br />          <StoryPreference OpticalMarginAlignment="false" OpticalMarginSize="12" FrameType="TextFrameType" StoryOrientation="Horizontal" StoryDirection="LeftToRightDirection"/><br />          <InCopyExportOption IncludeGraphicProxies="true" IncludeAllResources="false"/><br />          <ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle/$ID/NormalParagraphStyle"><br />               <CharacterStyleRange AppliedCharacterStyle="CharacterStyle/$ID/[No character style]"><br />                    <Content>ziemlich sinnfreier Text</Content><br />               </CharacterStyleRange><br />          </ParagraphStyleRange><br />     </Story><br /></idPkg:Story><br /><br />so far so good ... now i package them with "package -c HelloWorld Hello.idml" and load this document in InDesign ...<br /><br />at following i do some copy & paste actions and export the result to IDML and get this story ...<br /><br /><?xml version="1.0" encoding="UTF-8" standalone="yes"?><br /><idPkg:Story xmlns:idPkg="http://ns.adobe.com/AdobeInDesign/idml/1.0/packaging" DOMVersion="6.0"><br />     <Story Self="u186" AppliedTOCStyle="n" TrackChanges="false" StoryTitle="$ID/" AppliedNamedGrid="n"><br />          <StoryPreference OpticalMarginAlignment="false" OpticalMarginSize="12" FrameType="TextFrameType" StoryOrientation="Horizontal" StoryDirection="LeftToRightDirection"/><br />          <InCopyExportOption IncludeGraphicProxies="true" IncludeAllResources="false"/><br />          <XMLElement Self="di3i8" MarkupTag="XMLTag/Root" XMLContent="u186"><br />               <ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle/$ID/NormalParagraphStyle"><br />                    <CharacterStyleRange AppliedCharacterStyle="CharacterStyle/$ID/[No character style]"><br />                         <Content>ziemlich sinnfreier Text</Content><br />                    </CharacterStyleRange><br />               </ParagraphStyleRange><br />          </XMLElement><br />     </Story><br /></idPkg:Story><br /><br />what the hell ... and find 2 differences <br /><br /> TrackChanges="false" <--- in the original this was true<br /><br />and the label has lost.<br /><br /><Properties><br />    <Label><br />     <KeyValuePair Key="innerText2" Value="dbkey3322"/><br />    </Label><br /></Properties><br /><br />so i think InDesign CS 4 have a bug in the copy and paste facility; only the content will be copied but all additional infos are lo

    Hi Bjoern,
    I'm not sure that InDesign ever really copies a story, just the text in the story. Since the label and the track changes setting were associated with the story itself (and not with the text in the story), they didn't survive the transfer from one story to another.
    It may depend on how you copy/paste--I'd expect the above to be true if you copy/paste with the Type tool, but I'm not sure what happens if you copy/paste all of the text frames in a story using the Selection tool. It may be that the label is maintained in that case.
    Thanks,
    Ole

  • Copy/paste bug

    Hopefully this isn't a repeat (I've been trying to keep up with this group, but boy it's active!)
    There seems to be an issue with copy/paste (or perhaps my case is not supported). Try the following:
    1) run a report (I ran the datafiles listing)
    2) click on a cell
    3) hit CTRL-C
    4) go to a worksheet and hit CTRL-V
    I get a CR and some spaces instead of the cell contents.

    I tested this and can copy over text data fine but when I tried it with numbers, I get nothing. That was just from Reports. When I copied text and numbers from the results of a Worksheet into the Worksheet both worked fine. I will log a bug. Thanks for letting us know.
    -- Sharon
    p.s. I tried this with a variety of reports and even had trouble with cells containing text. Added all the details to the bug.

  • Copy/Paste Bug (Chinese Characters Added)

    Hi everyone,
    I'm not sure what is going on but recently, when I copy/paste something on my MacBook Pro, running the latest Mavericks, it sometimes appends some weird Chinese characters at the end of it. It will only show up sometimes and only in certain programs (such as copying URLs).
    This worries me very much for some obvious reasons. I don't have Chinese enabled, the characters are not always the same, and I have absolutely no idea why it is doing this.
    Any suggestions? Is this some weird but known bug? Am I the victim of some sort of spyware? Any suggestions as to what I should use to try to track this down? A quick google search turned nothing up.
    I would demonstrate the bug here but it isn't currently reproducing the problem. As I said earlier: It's rather intermittent.
    Any help or suggestions would really help me out.
    Thanks.

    I doubt anyone can help without a screen shot of what you are seeing.  Come back when you have one.  In the meantime I would not worry, it is most likely some kind of encoding glitch.  You don't have to "enable" a language to have it displayed on your screen, OS X automatically does that.

  • Copy/paste bug in RichEditableText.as

    Hi All,
    I found this bug when I accidentally copied an excel file and pasted it inside a TextInput control (I thought I had copied one of the cell in the spreadsheet).
    Flex throws the following:
    Error #1009: Cannot access a property or method of a null object reference.
    This error came from inside the handlePasteOperation() method inside the RichEditableText.as.
    Have any of you had this problem ? I cannot override the function because it is marked as private function. Any suggestions for workaround ?
    Thank you

    I get the same exact error when I paste anything, even if there is nothing in clipboard.
    I also found similar threads here:
    http://forums.adobe.com/message/2904634
    http://forums.adobe.com/message/2030606

  • Copy/Past Bug?

    Ever since CS3 I've found that when I copy something and subsequently paste the item, it pastes unselected. I have to undo the process and paste again for it to be selected. On rare occasions I even have to do this more than once before it pastes in a selected state. I'm disappointed to find this is still the case with CS4.
    Sean

    Not a bug as it does not happen here in CS 4 or CS 3 ti is some conflict with what you have
    installed perhaps a haxie or a plug in or a font or some other software.
    This only happens withe few users and so I suspect a plug in or font and possibly a haxie but they
    all have stated in that past they have no haxies then if that is true I suspect a commonly used plug in or font.
    What is your system and OS like I am on a Mac Pro running 10.5.7. have a coupe of plug ins loaded.

  • Can't get Typekit to work with localhost (also, another weird issue with copy+paste)

    Hi!
    I've searched through the other posts already, and I *think* I've tried all the solutions, but I still can't get the typekit fonts on my machine.
    I'm trying to use the "orator-std" font.  In the "kit editor", in the "kit settings -> kit settings" tab I have for name "localhost" (w/o quotes) and for domains just "127.0.0.1" (w/o quotes).
    Then (AFTER saving the settings from that tab), I go back into edge animate, I start a new font by clicking that + sign next to "fonts", in the "library" tab.  I set the "font fallback list" to ' "orator-std",sans-serif ' (w/ quotes, w/o single quotes), and then go back to the open browser and go to the "embed code", copy both lines of javascript, go back to edge animate, and... nothing.  It won't let me change ANY text in this box anymore after the window loses focus.  I have to press "cancel" and try again.  So this time, I just type in the orator-std... blah blah, same as last time, but paste in the code successfully as it was already in the clipboard and I didn't need to make the window lose focus.  Okay, so I click "Add font", and apply the font to my text.  Nothing happens.
    Huh... well the "Font's from T" picture is showing up in the bottom right of my screen, so that's odd.  I go to preview in chrome, still ugly old sans-seriff there, also with the "Font's from T" logo in the bottom right.
    I figure "okay, probably just takes a second... or a minute... or w/e like the message said."  Well this was at least an hour ago, so something is still wrong.
    I would love to just delete the font and start from scratch... maybe something got screwed up along the way and it would fix things to just start from scratch.  Well... "sorry" says edge animate... can't let you delete that!  In the "libarary" tab, there's only one font visible, it says "orator-std,sans-serif" (w/o quotes).  If I right click it, the only option is "delete" and it's greyed out.
    I tried doing one with arial instead of sans-serif just now, still not working, but everything shows up in arial now instead of sans-serif... so that's something I guess.
    Apologies if this is just a simple problem that I'm just somehow not grasping.  Please accept this legitimate bug report as payment... the er copy paste bug, I mean...
    Thanks!
    Trevor

    Hi Trevor,
    I'm sorry you ran into trouble here. Typekit can be used locally. However there are some necessary steps that if left out, will cause the fonts not to render. In order to use Typekit locally, you've got to:
    1. Be running a local server when testing your site in the browser. You can tell if you're running a local server by the URL of the local site. If it starts with: file:// then you are just viewing the local file in a browser and not running it from a local server.
    If the local URL starts with: http:// then you're running a local server.
    2. The domain of your local server has to be part of the domain list in your Kit. So, if your local server uses: localhost, you'll need to add this to your Kit's domains.
    I hope this helps. If you have any further questions, feel free to reach out to us directly: [email protected]
    Cheers,
    Benjamin

  • JTable: getColumnClass() causes instability when copy-paste

    Hi,
    I implemented copy-paste feature in MyJTable() class
    public class MyJTable extends JTable {
         public static final long serialVersionUID = 0L;
         public MyJTable(){
              super();
         public boolean editCellAt(int row, int col)
              setValueAt(new String(""), row, col);
              return super.editCellAt(row, col);
    }The copy-paste feature I downloaded from here: http://www.javaworld.com/javaworld/javatips/jw-javatip77.html
    However when I try to implement MyJTableModel like this:
    public class MyTableModel extends AbstractTableModel {
         public static final long serialVersionUID = 0L;
         private Vector ColumnNames                = new Vector();
         private Vector<Vector> Data               = new Vector<Vector>();
         public MyTableModel(Vector<Vector> Data, Vector Col)
              this.ColumnNames = Col;
              this.Data = Data;
         public int getColumnCount()
              return ColumnNames.size();
         public int getRowCount()
              return Data.size();
         public Object getValueAt(int row, int col)
              return ((Vector)Data.elementAt(row)).elementAt(col);
         public boolean isCellEditable(int row, int col)
              if (col < 2)
                   return false;
              else
                   return true;
         public void setValueAt(Object val, int row, int col)
              ((Vector)Data.elementAt(row)).setElementAt(val, col);
              fireTableCellUpdated(row, col);
         public Class getColumnClass(int col)
              return getValueAt(0, col).getClass();
              //return super.getColumnClass(col);
    }I noticed that copy paste causes instabilities. It behaves in a very strange way. In general it does not work. The problem is when in getColumnClass(int) I return getValueAt(0, col).getClass(). If I return super.getColumnClass(col) copy paste is working but the TableModel is primitive (no checkboxes, no Dates, etc).
    The only workaround is to apply correct column rendering for specific columns like this:
                   public Class getColumnClass(int column){
                        if (column == 9)
                             return (getValueAt(0, column).getClass());
                        else
                             return super.getColumnClass(column);
                   }     Any ideas why copy-paste causes this behavior?

    From the JComponent class check out getActionForKeyStroke(...);

  • After Effects CS6 copy paste from other apps is broken

    Hi there,
    After Effects just recently stopped accepting copied text from Microsoft Word (and many other applications incl Photoshop).
    Although it does allow me to copy into the AE GUI search bars, but still not from there into my composition text.
    I have tried a system restore to before the problem developed, however it did not work. I also found this (http://shisko.blogspot.co.nz/2008/01/copy-paste-bug-in-after-effects-fix.html), but the patches are for XP and Vista.
    I'm on Windows 7, running AE version 11.0.0.378, let me know if you have a workaround! This is very frustrating!
    Cheers,
    Brad

    Begin by installing the most recent updates and restarting your computer.
    http://blogs.adobe.com/premierepro/2011/06/updates-for-adobe-premiere-pro-after-effects-an d-adobe-media-encoder-cs5-cs5-5.html

  • Bug:  Copy / Paste from Clipboard.  Issue on HTML build.

    Bug: Copy Pasted from the clipboard.  On export to HTML, some of the graphic references got confused.  Replaced 4 image with the 3rd and 4th no where to be found.

    While there isn't a unique number displayed with each pasted item in the Assets panel, Muse does append a number to the image file name on export to maintain unique names on the exported site.
    As noted in my reply to your other thread, please export from scratch to an empty folder and verify the behavior. Thanks.

  • Copy/Paste/Edit menu bug. Anybody else seen this?

    I have a project with an imported stereo wav file on track one. It is about 8 minutes long, 44.1k. I am trying to copy small regions of this track and then paste those into track two and make these little pieces real audio clips. (Thanks again to Bee Jay and Jim Frazier for the help with that!) In this example I use the Marquee tool to highlight a 2 measure section of track one and from the Edit menu I select COPY. Then I select track two and move the playhead to the location I want to paste the copied clip.
    Now, when I click on the Edit menu to select PASTE the drop-down menu is gone! However, to restore it I found a way. Minimize Logic, then maximize it again and the Edit drop-down menu has returned ! Very strange.
    This has got to be a bug although not too serious. But it is very annoying having to minimize/maximize Logic just to get the drop-down menu back especially since I am using this copy/paste function a LOT. So it makes it very time consuming to have to do this. And it happens every time for me.
    I sent this in to the feedback of Logic but wondered if anyone else has seen this?
    Thanks,
    Greg

    Yes - I had this today for the first time in fact!
    The Edit menu title was still in the bar, by when you clicked on it, the edit menu was completely gone and didn't drop down (the rest of the menus were fine). A weird one. I found it amusing for a couple of minutes until I got it back again (I've no idea how I did it) and it hasn't happened since.
    Another one for the buglet files, methinks...

  • Copy/Paste Layer Style Bug

    Really, you guys didn't fix the copy/paste layer style bug in 13.0.2.  Wow, easily reproduced, there is an adobe recommended workaround, meaning very aware of the problem, and couldn't fix it for this update, very sad Adobe, very sad.  Can you let us know when this will be fixed?

    The 13.0.2 update was targeted to fix one specific bug. It was not intended to be a general bug-fix update.
    We are testing a fix now for the layer styles bug and others, and we intend to include these fixes in the next general update, which is currently slated for release in less than two months.

  • Possible bug with Notes (in Mail) with copy / paste

    Has anyone else experienced this...
    From time to time the copy / paste does not work properly. When I copy some text with command-c & place the insertion point at the end of line somewhere else in the document & press command-V, the text will be inserted in the line above.
    I am not certain of the precise pattern to reproduce the bug, but try this...
    1) Open an existing note document within mail...
    2) Copy several lines of text & paste somewhere else in the document
    3) Then type some text at the end of one of these lines
    4) Highlight & copy that text
    5) Move insertion point to the end of the next line
    6) press command-v
    7) Text does not get pasted to the right location, but to the line above
    I running Lion 10.7.2
    Thanks

    No, each of the two subpanels calls a different VI. Try it!
    "Satans Little Helper" wrote in message
    news:[email protected]..
    > Are both your subpanels calling the same VI that contains the 3D
    > graph, or are you using two separate VI's? If your subpanels are
    > sharing the same sub-VI, then that sub-VI should be made re-entrant
    > executable.

  • BUG: Copy / Paste settings

    This bug has been reported in various forms.  But I'd like to chime in.
    I'm finding that the set of develop settings I copy are not pasting correctly onto other images.  Sometimes settings I have NOT checked are pasted; other times settings I HAVE checked are being pasted.  The bug does not seem to be related to the specific combination of settings checked and unchecked.   Particularly I've found that copy/pasting UNCHECKED white point settings will not paste.  UNCHECKED crop will paste.  It's quite frustrating.  I have not found a work around. 
    I am using LR 3.2 RC.

    Mark, you can report this here. This would be most helpful. This forum is now mostly for user help rather than technical issues.

Maybe you are looking for

  • Upgrade process for SQL server 2005 service pack4 on stand alone and cluster servers

    Hi All, We have iniated a process of upgarding sp4 for all sql 2005 stand alone and clusters servers. Please provide me the step by step process for installing sp4 and roll back paln for sql 2005 servers.And before proceeding with sp installation wha

  • Documents in business blueprint do not open

    Hi, I have uploaded some documents in the "Project Documentation" tab in SOLAR01. However, after generating the blueprint, when I click on the link (document name), the document does not open at all. There is no error. I have installed SAP GUI 7.20 T

  • Setting default "Open With" for files

    Trying the set Photoshop CC 2014 as the default program for all PSD files.  When I select Photoshop CC 2014 as the default and select change all, the default reverts back to the old Photoshop CS6 - which is still installed.  Any ideas?

  • Another NoClassDefFoundError

    I'm new to java so I'm not sure whether this should be in the newbie forum. I'm using netbeans and I'm trying to write my first java application. My app compiles without any errors, but it won't run when double-clicked. Running the app from the comma

  • How do I send a contact from my contacts to someone else's iPhone?

    I need to send contacts to someone else 's. iPhone. How do I do this? Thanks, KEW