Forum Replies Created

Viewing 25 posts - 2,851 through 2,875 (of 3,682 total)
  • Author
    Posts
  • in reply to: EmEditor Professional 8.00 beta 12 #6517
    Yutaka Emura
    Keymaster

    emuser1 wrote:
    I’am Chinese Unicode User, When I Loding Bigger (3MB) Chinese Unicode File (Used Vista Unicode Ext-B Font) Very Slow. I Also Test On MS-Office 2007, Same File Loding Is Very Fast, If Compare By Emeditor. I Used Same Computer For Test.
    Please Testing And Fix This Problems.
    This Problems Also Found On Emditor 5.X, 6.X, 7.X, 8 Beta Version. Please Really Test About Multilangue Unicode.

    I would really appreciate if you coud email me a sample file to [email protected] (after zipped). Thank you!

    in reply to: how to save a document with new path and name #6508
    Yutaka Emura
    Keymaster

    Yutaka wrote:

    LuK wrote:
    Hi everybody,

    could anybody tell me, how it´s possible to save a document into a new path with new filename in a macro?

    The following values opens only the Save As dialog box:

    fileName = “de020076o$tempMakeOfflinefilelist.txt”
    document.Save [ FileName ]

    or

    fileName = “filelist.txt”
    document.Save [ FileName ]

    Thx and regards
    Thorsten

    document.Save [Filename] should work. Is this VBScript or JavaScript?

    I don’t know why you have this issue. You should make sure the destination folder is not write-protected. The above macros should not prompt a Save As dialog box if the folder is not read-only.

    in reply to: how to replace string from clipboardData #6507
    Yutaka Emura
    Keymaster

    LuK wrote:
    Hi everybody,

    is it possible to replace every text in the whole document which is stored in the clipboard?

    eg:

    to_replace = clipboardData.getData(“Text”)
    document.selection.Replace to_replace,””,eeReplaceAll

    regards
    Thorsten

    Yes, but you will need to use regular expressions built in the script, not EmEditor macro methods. You should refer to regular expression tutorials for JavaScript. See also: http://www.emeditor.com/help/macro/tutorial/tutorial_regexp.htm

    After you do any replace with “to_replace”, you can copy the text back to the clipboard by using:

    clipboardData.setData(“Text”, to_replace)

    in reply to: Search Box disappeared #6506
    Yutaka Emura
    Keymaster

    FredericCC wrote:
    No, I’m using the English version of emeditor although I’m on a Japanese OS.

    I don’t know why you have this problem.

    Maybe try this:

    Run Regedit.exe, and select
    HKEY_CURRENT_USERSoftwareEmSoftEmEditor v3Common
    key, and delete the “FindDlgPos” value.

    in reply to: Tons of suggestions ;) #6505
    Yutaka Emura
    Keymaster

    colon wrote:
    OK, sorry. I didn’t notice that print option.

    By “‘Windows’ next to tabs” I mean the text that says “Windows”, below the file menu. I think it’s rather obvious.

    Regards.

    You can hide those toolbar titles. Right-click on any toolbar, and select “Toolbar Titles”.

    in reply to: how to save a document with new path and name #6500
    Yutaka Emura
    Keymaster

    LuK wrote:
    Hi everybody,

    could anybody tell me, how it´s possible to save a document into a new path with new filename in a macro?

    The following values opens only the Save As dialog box:

    fileName = “de020076o$tempMakeOfflinefilelist.txt”
    document.Save [ FileName ]

    or

    fileName = “filelist.txt”
    document.Save [ FileName ]

    Thx and regards
    Thorsten

    document.Save [Filename] should work. Is this VBScript or JavaScript?

    in reply to: Tons of suggestions ;) #6499
    Yutaka Emura
    Keymaster

    -A monochromatic print mode would be nice, since some colours are not completely black when printed on a monochromatic printer. Coloured keywords could be made bold instead.

    Check “Ignore Color and Underlines” on the Print tab of configuration properties.

    -“Windows” next to tabs is unnecessary. Also, buttons are better than tabs.

    I am not sure what “Windows” next tabs means… Buttons can be selected from the Tab tab of the Customize dialog box, or select “Customize Tab” after right-click on the tab, and then click the “Style” drop-down list.

    Thanks for your comments!

    in reply to: Search Box disappeared #6494
    Yutaka Emura
    Keymaster

    FredericCC wrote:
    hi,
    I’m back with another uninstall lol
    This time is emeditor version 7 (emed702epx) with no plugin chosen during installation.

    It’s the search box using ctrl F or ctrl H.
    When it does not pop up, I don’t know how to get it back.

    All I did was uninstall and reinstall.
    In details, I exported my personal settings first, then Uninstalled and Removed the settings it asked me whether to keep or not.

    The problem does not happen when I imported the exported personal settings before uninstallation.

    But it would persist if I chose to keep all the settings during the uninstallation process.

    Do you use any language packs? If so, does the version of the language pack match the EmEditor version?

    in reply to: Activate an EmEditor dialog box from a macro #6493
    Yutaka Emura
    Keymaster

    dreftymac wrote:
    QUESTION1 and 2:
    Is there a way to open the “Search” dialog box from within an EmEditor macro? Is there a way to trigger an EmEditor menu item to open from a macro?

    For example, it would be nice to be able to fire activation of Tools :: Plugins :: Explorer from inside a macro. It would be nice to have access to all menu items from inside a macro.

    QUESTION23
    If No to question 1, is there a recommended way to do “sendkeys” from within a macro so that you can send the key necessary to open the dialog box or menu?

    In the help it says that it is not recommended to send keys directly to EmEditor, and yet when recording macros with the record feature, it records keystrokes. What is the story here?

    thanks for any help

    You can open Explorer plug-in from a macro:

    editor.ExecuteCommandByID( nID );

    , but you cannot have access to all menu items within the plug-in.

    You cannot send keys from within a macro. EmEditor can record keystrokes only toward another application.

    in reply to: [sloved]question in displaying "file path link" #6492
    Yutaka Emura
    Keymaster

    tireless wrote:
    Hi~all

    I don’t know whether this is a bug:

    <file://D:test.txt>
    <file://D:Program Filestest.txt>

    Why the second link couldn’t displayed full?

    I had tried some text editors,some of they can displayed like:
    <file://D:Program Filestest.txt>
    and some displayed like:
    <file://D:Program Filestest.txt>

    Who is right?

    This is just a matter of preference. If you want the second link displayed full, go to the Link tab of Properties, and add a space to the “Recognize These Characters” text box. Also, you probably want to add a space to the “Characters Not Allows at End” text box.

    in reply to: screen resolution problems with output bar #6487
    Yutaka Emura
    Keymaster

    dreftymac wrote:
    When using EmEditor on more than one computer (e.g., usb stick settings used at work and home for one user) the output bar has problems when used on a screen with lower resolution.

    The problem is, on a lower-resolution screen, the top of the output bar does not appear within the visible portion of the screen, and there is no way to make it smaller because the mouse cursor cannot reach it.

    Is there a way to change the output bar size with the keyboard alone?

    If not, is there a way to change the settings for the size of the output bar?

    I am not sure exacly what the issue is. What is the resolution of the screen?
    Do you want the function bar smaller?

    in reply to: EmEditor Professional 8.00 beta 12 #6486
    Yutaka Emura
    Keymaster

    B-63 wrote:
    Dear Sir,

    I experience bad news with EmEditor Professional 8.00 beta 11 and beta 12, 32-Bit. Tools /Customize appears on every start of the software, telling me that

    “The selected language pack is not for this version of EmEditor. Select or
    install the correct version of language pack.”

    Installed is emed600lang_german.msi, and newer version I could not find. In EmEditor Professional 8.00 beta 07 or before, this didn’t occur.

    For future installations, it would be fine if there would the error message being removed, or a new language pack would appear.

    Best regards,

    Michael Lukas Sarides

    You are right. You should not use Version 6 or 7 language pack with EmEditor v8. Doing so would prevent some features from working correctly. Please use the English user interface until version 8 language pack becomes available.

    in reply to: Opening large file with executing macro from command line #6480
    Yutaka Emura
    Keymaster

    LuK wrote:
    Hello,

    I would like to know if and how it´s possible to wait for completion of the opening process of a file before the macro will start running.

    At the moment, I have three files with the following config:
    1. File -> ~ 5000 lines
    2. File -> ~ 4000 lines
    3. File -> ~ 50000 lines

    The first two files are loaded quickly, and the macro runs successful, but if EmEditor opens the third file, the macro will run if EmEditor was started. But at this time, the file is´nt fully loaded and the macro does not run correctly. If I delete a part of the file, so that EmEditor can open the file correctly, also the macro will run successful. :-(

    Do you have any idea to solve this, i.e. “wait until file is loaded”.

    Thx and best regards
    Thorsten

    I will check later when I have a time. For now, you can increase the size specified in the “Minimum File Size to Open Asynchronously” text box in the advanced tab of the Customize dialog box.

    in reply to: Vertical selection problem #6479
    Yutaka Emura
    Keymaster

    silverma wrote:
    thank you for your prompt response!
    my version is V7.02.

    This is the new feature of v8. Please try v8 beta.

    in reply to: EmEditor Professional 8.00 beta 9 #6456
    Yutaka Emura
    Keymaster

    EmUser wrote:
    I have check the check box is cleared and text box is set to “0”, Emeditor still Memory exhausted pop windows.
    I don’t know how to solve it.

    That’s the limitation. You will need to find another regular expression to solve it. How about {n,m} ?

    in reply to: EmEditor Professional 8.00 beta 9 #6453
    Yutaka Emura
    Keymaster

    EmUser wrote:
    Aha, I use (.+?)nn1 to search, Emeditor stirll pop Memory exhausted window.

    Please fix this.

    And, can EmEditor don’t pop this windows when my search command is wrong?

    Thanks.

    Check “Regular Expression can match new line characters” check box is cleared and “Additional lines to search for regular expressions” text box is set to “0” in the Search tab of the Customize dialog box.

    I cannot stop the popup window when there is an error.

    in reply to: EmEditor Professional 8.00 beta 9 #6451
    Yutaka Emura
    Keymaster

    EmUser wrote:
    In beta11, still pop memory exhausted windows. Emeditor no more close, but still pop windows.

    Yes. This is a limitation of the regular expression engine. You should use a non-greedy form: (.+?)nn1

    in reply to: Issues in vertical selection feature #6446
    Yutaka Emura
    Keymaster

    visitor wrote:

    Yutaka wrote:
    I want to make sure which posts you are referring to, and I want to know which bugs are not fixed yet.

    The bug with lost selection is not fixed in beta 9. Please do the following:

    1) Open a file (e.g. EmEditorPlugInsCOPYING_ctags.txt)
    2) Select vertical block of text:

    3) Press Shift+Down Arrow.

    You will see that selection is lost.

    This will be fixed in beta 11. Thanks!

    in reply to: Issues in vertical selection feature #6445
    Yutaka Emura
    Keymaster

    visitor wrote:

    Yutaka wrote:
    I want to make sure which posts you are referring to, and I want to know which bugs are not fixed yet.

    The bug with strange selection is still persist in beta 9. Sometimes when selecting vertical block of text and moving mouse quickly from left to right appears strange selection that you can see on the following screenshot (it is made on EmEditorPlugInsCOPYING_ctags.txt file).

    Yes, I realize you are right. However, as soon as you release the mouse button, you should not see the strange selection. The exceptions are some tabs and also when you use proportional fonts.

    in reply to: EmEditor Professional 8.00 beta 10 #6444
    Yutaka Emura
    Keymaster

    Stefan wrote:
    Yes, disabling “Additional lines to search RegEx : 10”
    helps here.

    This means that ?-sign didn’t switch non-greedy.
    EmEditor still search for the longest match and
    search for my 10+ lines.

    ——

    Before disabling this “Additional lines” i try:
    Search ^(.+?Fixed:.+?)$
    Replace: #1#

    I added two ?-signs.

    Pressing [Replace all]
    give me a messgbox: “Out of memory. No UNDO available”
    Pressing [No] here lets EmEditor stop working.

    ———–

    Suggestions:
    1.) EmEditor should recognize the ?-sign to work non-greedy.
    2.) i want to point to my request to add this “Dot find new line”-option to the find&replace-dialog
    for easy access

    Thank you so much for reporting the redrawing issue. I will fix this and build the next beta shortly.

    I don’t know why you don’t get good results with non-greedy marks. You should probably use 0 for “Additional Lines to search RegEx” and uncheck “Regular Expressions can match new lines” check box.
    I always think about adding these options in the Find/Replace dialog box, but there wasn’t enough time by Version 8. Maybe next version, I will consider that.

    in reply to: EmEditor Professional 8.00 beta 9 #6438
    Yutaka Emura
    Keymaster

    yongfa365 wrote:
    http://www.yongfa365.com/EmEditor/bug.txt

    (.+)nn1

    Simplified Chinese,gb2312

    Thanks!

    in reply to: EmEditor Professional 8.00 beta 8 #6435
    Yutaka Emura
    Keymaster

    zhouzh2 wrote:
    I just watched the “Grab Text” feature video. This is a real time-saver I must say! However, when I tried to use it, nothing happened when I press “crtl+alt+x”, also I can’t find this “Grab Text” command in both “tools”-“All Command” and “Keyboard map”. Is there anything that I missd?
    Using EmEditor Professional 8.00 beta 9

    You must have the Tray Icon running for this feature to work. If it is already running, your system might have a conflict with another application. Right click on the Tray Icon, and select “Customize Tray Icon”, where you can change the shortcut key to Grab Text with EmEditor.

    in reply to: EmEditor Professional 8.00 beta 9 #6434
    Yutaka Emura
    Keymaster

    yongfa365 wrote:
    2 bugs:

    1. snipptes
    2.regular ……

    http://www.yongfa365.com/EmEditor/Bug.swf

    I fixed the snippets plug-in.

    I don’t know why you had the issue with regular expressions. I cannot reproduce this issue with the same regular expression. Can you reprodue with a simpler text, maybe English text? If so, can you let me know the text that I can reproduce the issue? Thank you!

    in reply to: "Invalid Regular Expression" #6433
    Yutaka Emura
    Keymaster

    smilinger wrote:
    Hi, I type a RegEx in the search box and it says “Invalid Regular Expression”. My Regex is “(?<=).*(?=)”, which should be right. I have test it with some Regex Tester and it works.
    I tested more and found emeditor did not support +/*/? in (?<=exp), is that right?

    That is true. The pattern in (?<=exp) must be fixed length.

    See http://www.boost.org/doc/libs/1_36_0/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html for details.

    Yutaka Emura
    Keymaster

    luren wrote:
    HI, I’m a new user of emeditor.
    when I use emeditor to open a file, emeditor treat the file as text format. I have to switch configure manully. for example, when I open a .cpp file, I expect that emeditor will use the c++ configure, but it doesn’t, any type of file are treated as text.
    thx.

    Try resetting all configurations. To do this, Define Configurations on the Select Configuration sub-menu on the Tools menu, and click the Reset All button.

Viewing 25 posts - 2,851 through 2,875 (of 3,682 total)