- Posted by
- Geez. What a response. Some people prefer elastic tabstops, just like some people prefer tabs or spaces. Never mind their reasons.Posted in UltraEdit General Discussion
-   Topics
-   Views
- 999999
Oct 17, 2010
- OK, great, I've just found out that UltraEdit won't paste binary data at all, if it was assigned in the script. Go to HEX mode, copy FF byte, and run this code in HEX mode: UltraEdit.activeDocument.paste(); // works UltraEdit.clipboardContent = UltraEdit.clipboardContent; UltraEdit.activeDocument.pa...Posted in Scripts
-   Topics
-   Views
- 999999
Jan 01, 2009
- Yes, that's what I wanted to explain. The array contains all bytes, but how the bytes are interpreted on read depends on the interpreting functions. In C/C++ a NULL terminated string (not a Unicode string) is always printed from first byte to the first occurrence of a byte with value 0. ... Unicode...Posted in Scripts
-   Topics
-   Views
- 999999
Dec 30, 2008
- Sorry, but I have to disagree... But array property length is not equal the string length for your example. Yes it does, it always does. Try the following HTML file: <script type="text/javascript"> var Text1="one\0two"; alert("Text 1 is: "+Text1); alert("Text 1 starting from 4-th char is: "+Text1.su...Posted in Scripts
-   Topics
-   Views
- 999999
Dec 28, 2008
- Hi, this is a user-to-user forum. You probably want to read what's written on top of every page here :) Thanks, I wrote to the support about the issue... NULLs are not possible because the Javascript core engine handles strings as NULL terminated character array. So every NULL byte in a character a...Posted in Scripts
-   Topics
-   Views
- 999999
Dec 27, 2008