Forum Replies Created

Viewing 25 posts - 2,451 through 2,475 (of 3,693 total)
  • Author
    Posts
  • in reply to: Strange message on file opening #7821
    Yutaka Emura
    Keymaster

    First, thanks for purchasing an EmEditor Professional license.

    I am not sure why you encountered that issue. Some components must be missing on your Windows. I would suggest reparing your system from Windows CD-ROM.

    in reply to: EmEd 9.03 freezes constantly in Parallels #7817
    Yutaka Emura
    Keymaster

    TimGreen wrote:
    Hi Yutaka,

    Thanks for your answer: I tried setting that registry value but it doesn’t seem to work, in fact it seems to make it a little worse. After a lot of testing it seems that the problem is the tray utility. If I exit the tray utility and run EmEd without it everything seems to work.

    Have there been any significant changes in the way the tray utility works in version 9?

    There is no significant change in emedtray.exe (Tray Icon).

    in reply to: EmEd 9.03 freezes constantly in Parallels #7814
    Yutaka Emura
    Keymaster

    TimGreen wrote:
    I do a lot of work with a Windows XP virtual machine in Parallels Desktop on an Intel Mac. Up to version 8 I’ve used EmEditor for almost all my editing needs in this environment and it has always been absolutely stable and reliable. I just bought the update to version 9 and updated to 9.03 and now EmEditor is freezing constantly when I use it in the XP VM in Parallels. I then have to force EmEditor to terminate with Task Manager and restart XP, because the whole system becomes unstable. This is the only program this happens with.

    As far as I can see this has something to do with the way EmEd 9 is using the Windows clipboard, which is linked to the Mac OS X clipboard in Parallels so that you can copy and paste between the two systems. The first sign of an impending freeze is usually that the shared clipboard becomes corrupted and then stops working, then EmEd freezes completely and needs to be killed to exit. I’m also using 9.03 on my Windows 7/64 development machine on hardware and there it works fine.

    I know that this is a bit of an unusual scenario but I’ve really come to depend on EmEditor and I’d like to go on using the new version if possible. Is it possible that any fix for this might become available? I’d be happy to do any testing necessary with a debug coded version if you like… :-)

    If the Clipboard history is the issue, please open regedit.exe, and set MaxClipboardHistory (REG_DWORD) as 0 in HKEY_CURRENT_USERSoftwareemsoftEmEditor v3Common. This will effectively disable the Clipboard history. Thank you for using EmEditor!

    in reply to: Bugs With Properties Setting——9.03 #7810
    Yutaka Emura
    Keymaster

    dsscicin wrote:
    “Toos—>Properties for …” is unavailable!
    It can let Emeditor crash easily!

    9.03—XP sp3.

    I suspect the file is corrupted. Where did you download the file from? Please make sure the downloaded file’s digital signature is correct. See http://www.emeditor.com/modules/download2/rewrite/tc_2.html

    in reply to: Bug with SRP #7806
    Yutaka Emura
    Keymaster

    RaiGal wrote:
    Hello there,
    First of all i wanna say thanks for this great program,it really has helped me over the time more than any other program in my pc!Lately i have installed WinXP SP3 running on a limited user account and a Software Restriction Policy (as described here, http://www.mechbgon.com/srp/ ) along with SuRun ( http://kay-bruns.de/wp/software/surun/ ) which leaves no space for any virus.

    However this seems to include EmEditor as well since if i don’t run it as admin i can’t save any files (always asks for admin rights for the specified file,specifically appears a message saying “You will need to provide administrator permission to save this file) and if i actually run it as an admin it will always crush/stuck as long as it opens.Any help please?

    Thanks in advance!

    I tried Software Restriction Policy ( http://www.mechbgon.com/srp/ ), and I didn’t try SuRun as I can’t read German, but I don’t have any problems with the Software Restriction Policy only. EmEditor didn’t crash or hang, and displays a message that it cannot save the document.

    in reply to: Automated S&R? #7803
    Yutaka Emura
    Keymaster

    WmMitchell wrote:
    I posted this in the regex group, which might have been a mistake. I think that it might actually be better here.

    I’m not getting consistent results with the S&R macro below. If I don’t put:

    document.selection.StartOfDocument(false);
    shell.SendKeys(“{CTRL DOWN}{CTRL UP}”);

    a lot in the document to periodically force the cursor to the top of the document being edited, the macro doesn’t replace _all_ items, even though I have put the option eeReplaceAll in every single S&R instance. Even forcing the cursor up to the top of doesn’t make the S&R perform consistently and I have to manually invoke this script 2 or 3 times.

    ————————————————————
    document.selection.StartOfDocument(false);
    shell.SendKeys(“{CTRL DOWN}{CTRL UP}”);

    document.selection.Replace(“. “,”. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“. “,”. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“. “,”. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“. “,”. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“. “,”. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“? “,”? “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“? “,”? “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“! “,”! “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“! “,”! “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“: “,”: “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“: “,”: “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“Dr. “,”Dr. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“Mr. “,”Mr. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“Mrs. “,”Mrs. “,eeFindNext | eeReplaceAll);
    document.selection.Replace(“Lt. “,”Lt. “,eeFindNext | eeReplaceAll);

    document.selection.StartOfDocument(false);
    shell.SendKeys(“{CTRL DOWN}{CTRL UP}”);
    document.selection.Replace(“1/4″,”¼”,eeFindNext | eeReplaceAll);
    document.selection.StartOfDocument(false);
    shell.SendKeys(“{CTRL DOWN}{CTRL UP}”);
    document.selection.Replace(“1/2″,”½”,eeFindNext | eeReplaceAll);
    document.selection.StartOfDocument(false);
    shell.SendKeys(“{CTRL DOWN}{CTRL UP}”);
    document.selection.Replace(“3/4″,”¾”,eeFindNext | eeReplaceAll);
    ————————————————————

    I saw an example of a macro in what looks like an old forum for EmEditor and subsituted eeFindNext for eeFindReplaceQuiet, but that didn’t make the macro work repeatedly until all instances found and fixed.

    What can be done to ensure the macro “loops” through each function until done, pls?

    Thanks!

    “eeFindNext | eeReplaceAll” should be enough, and you shouldn’t use shell.SendKeys(“{CTRL DOWN}{CTRL UP}”);.

    Can you simplify your test program and a sample file, and email me at [email protected] ? I will try to reproduce your problem, and fix it if it is a bug of EmEditor.
    Thank you.

    in reply to: Download Url for the x64 installer for EmEditor 9.03.1? #7802
    Yutaka Emura
    Keymaster

    ptlomholt wrote:
    Hi, the announcement states that there is a 64 bit version available, however I cannot seem to find the Url for the installer…

    The 64-bit version is only for full-version. The trial is only available for 32-bit version.

    in reply to: "New Version Available" warning keeps poping up #7795
    Yutaka Emura
    Keymaster

    Atomhrt wrote:
    Besides this new nagging problem, the new 9.x registration process was a real pain and I never want to go through that again. I’m starting to reconsider using emeditor. Sorry to say this but it was a good editor.

    If you already registered v9, you do not need to register again. You can select “Log in” to login with your email address, and then click “Available Downloads” to download a latest version of EmEditor.
    Thank you!

    in reply to: Help about adding another n after save #7792
    Yutaka Emura
    Keymaster

    netsking wrote:
    I did not check the function as you mentioned. But the problem is still.

    Do you use any plug-ins? You might want to try disabling all plug-ins. Also, if you set any macros for any events, you might want to disable all the macros at events. Event macros can be configured in the Macros menu > Customize.

    If you still can’t figure out, you might want to uninstall EmEditor, and during uninstall, select No when asked to save your personal settings. Then install EmEditor again for fresh install.

    in reply to: Link to the release notes when you get an upgrade notice #7790
    Yutaka Emura
    Keymaster

    Klortho wrote:
    Hi Yutaka,
    It would be nice if, when you start up EmEditor and it indicates there’s a new version, there were also a link to the page containing the release notes for that version. Or, at least a link to the release notes from the Emurasoft customer service site.

    I will consider this in future versions. Thanks!

    in reply to: "New Version Available" warning keeps poping up #7789
    Yutaka Emura
    Keymaster

    warrendlr wrote:
    Hi,
    I have v9.01.
    The “New Version Available” warning keeps poping up despite I tell it not to warn me within the next 3 months.

    (In the meantime, as a workaround, I upgraded to v9.02, so it does not annoy me anymore – however, I really expect no new message for the next 3 months, whatever versions are released)

    This will be fixed in v9.03. Thank you.

    in reply to: ClearType font rendering in v9.01 under XP SP3 #7788
    Yutaka Emura
    Keymaster

    betaspin wrote:
    The ClearType font rendering problem with the Horizontal Line and/or Vertical Line (Properties for Current Configuration -> Scroll tab) has been resolved in v9.01, many thanks!

    So far as the attempts to connect to the Internet, these are continuing with the Update Checker set to “Never” (this is with the 64bit version), which is not a big deal but still can be classified as unexpected behaviour (I have decided to permanently allow these through my firewall, classifying EmEditor as a “web browser”).

    I am sorry for the Update Checker bug. It will be fixed in v9.03. Thanks!

    in reply to: Drag and drop selection gone missing #7787
    Yutaka Emura
    Keymaster

    rayd wrote:
    I’ve just upgraded to version 9.02 and have lost the ability to drag and drop selected lines of text.

    With all previous versions, if I selected lines of text, I could drag them to a new location by holding down the left hand mouse button.

    With 9.02, even when holding down the left hand mouse button, dragging the mouse just selects more text and doesn’t drag the selected text.

    I haven’t changed any options so, has something changed?

    How can I get the original behaviour back?

    I do have Enable Text DRag and Drop ticked in preferences.

    Ray D

    This will be fixed in v9.03. Thanks!

    in reply to: Drag and Drop fails on text #7786
    Yutaka Emura
    Keymaster

    ToadLoadin wrote:
    You’re right, D&D is ok in v9.01, but disfunctional in v9.02. :-o

    This will be fixed in v9.03. Thanks!

    in reply to: Help about adding another n after save #7785
    Yutaka Emura
    Keymaster

    netsking wrote:
    Hi, there,
    I have met a strange thing when I saved my text file.
    Each time, when I saved my text file, the curse moved to the end of the file, and added another n in the end of the line.

    Does anybody know what cause this problem or how to fix this? Thank you in advance.

    Please make sure:

    Configuration Properties > File tab > Saving… button > Insert Returns when Saving

    is not checked.

    Yutaka Emura
    Keymaster

    ToadLoadin wrote:
    Hi Yutaka, have you received my email? Now my work around is down grade outline plugin to previous version, it also works in EmEditor v9.

    I have received your email, and I fixed that issue. Thanks!

    in reply to: New License #7762
    Yutaka Emura
    Keymaster

    All minor updates are free. v10 will be free for v9 registered users who purchased licenses. We make no promises after v10.

    in reply to: Some suggestions & questions #7760
    Yutaka Emura
    Keymaster

    excellents wrote:
    0) Maybe even a bug report: Smart Home key doesn’t work with Shift, i.e. when Shift is pressed selection goes to the beginning of the line not to end of indentation.
    1) ‘Cursor’/selection border is not seen when selecting block from the very first column.
    2) Is there an auto-spellcheck aka spell-as-you-type (underlining misspelled words) feature as a plug-in (it seems me, there is no such a plug-in)? Is it implementable with current plug-in API? At least ‘Outline’ draws in editor’s window…

    0) You can customize keyboard settings, but I will change the default keyboards as you desire on the next minor version.

    1) It depends on the color configuration, but the default configuration hides the lines when the cursor is at the very first column. I will try to improve this.

    2) I don’t think it is easy to implement auto-spellcheck aka spell-as-you-type. This is a text editor, not a word processor, so I don’t think so many people would like to have so aggressive spelling checkers. However, I might consider that in future versions.

    Thanks for your comments!

    in reply to: Notification When Unicode File Contains Invalid Encoding #7759
    Yutaka Emura
    Keymaster

    hannasm wrote:
    Recently i had an issue with an XML file, the creator of the file told me the encoding was UTF-8. The actual encoding was ANSI/Windows Codepage 1252. Emeditor automatically opened the file as UTF-8 (the status bar indicated “UTF-8 Without Signature”).

    The file contained (U+00C9) with it’s ANSI encoding. Emeditor did not display this character.

    I can only guess that this file was opened as UTF-8 because of the xml encoding declaration.

    <?xml version="1.0" encoding="utf-8"?>

    I would like a warning to be generated when opening the utf-8 encoded XML file containing an invalid code-point. It would also be useful for the incorrectly encoded characters to be displayed in the editor somehow, in the same places where they are encountered.

    I am still using Emeditor 8.0, apologies if this has been implemented already.

    I couldn’t reproduce your issue. Can you send me a sample file to [email protected]? I will try to reproduce your issue. Thank you!

    Yutaka Emura
    Keymaster

    Is “Number of Spaces” selected for the Type drop-down list box in Outline properties? and is the Custom Bar Max Level 6?

    I tried to reproduce your issue, but I couldn’t. Can you send your sample files to [email protected]? Thanks!

    in reply to: hate workspaces, how to switch them off for good? #7750
    Yutaka Emura
    Keymaster

    urlwolf wrote:
    I open large files with emeditor.
    This makes workspaces worthless, because I DO NOT WANT to wait for minutes to have a working copy.
    How to switch them off for good?

    Thanks

    You can turn off workspaces from the Customize dialog box > Window, and then select “None” in Automatic Workspace drop-down list box.

    in reply to: Importing settings from 8 to 9: workspace is not imported. #7748
    Yutaka Emura
    Keymaster

    ginger wrote:
    Hi, I’ve imported the settings from 8 version (was running in XP) into 9 (running in win7), but my workspace have not been properly moved, though HKEY_CURRENT_USERSoftwareEmSoftEmEditor v3CommonWorkspace is exists and it have old workspace files listed there.
    But when I press ctrl+0 – that old workspace not loading.
    Even more: when I try to make new workpace via ctrl+shift+0 and then restore it with ctrl+0 it is restores properly, but that register parameter still have my old workspace files listed there.

    So I guess 9 version stores workspace somewhere else? If so, then where? Cause I still want to import that old 8-version workspace I have.

    Thanks!

    In EmEditor Version 9, the workspace is saved in C:UsersYutakaAppDataLocalEmurasoftEmEditorWorkspace. The workspace format is different from the registry version for version 8, so you can’t import your old workspace into the new version, unfortunately.

    in reply to: Plug-in install problem with Windows 7 x64 #7734
    Yutaka Emura
    Keymaster

    kaz wrote:
    I have been using a few plug-ins downloaded from the library such as Sort Strings and Sort Numbers. After I installed Windows 7, I can’t install those plug-ins. I just installed the latest EmEditor x64 9.01 on Windows 7 x64 (the EmEditor install just went fine). I downloaded sortstringa500x64.exe and sortnumbera500x64.exe from the 64-bit plug-in library and tried to install them. But, the following error is displayed for both plug-ins:

    Failed to extract files. Close all EmEditor windows and try again.

    EmEditor is not opened and I verified no EmEditor instances are running in the process tree.

    It would be great if someone can shed some light here.

    Thanks.

    – Kaz

    On Windows Vista and Windows 7, you will need to run these installers as an administrator. However, EmEditor Professional v9 includes sort functionalities, so you don’t really need these plug-ins. :-) Thanks!

    in reply to: Keyboard shortcuts #7733
    Yutaka Emura
    Keymaster

    SansHobo wrote:
    I have been testing the functionality of emEditor before purchasing it. I noticed something that I never seen before (new to emEditor). The keyboard shortcuts for recording and running a macro changes depending on whether the computer is connected to a network. The help system shows CTRL + SHIFT + P to record a macro. Yet, the tool tip shows SHIFT + F4 – however, the SHIFT + F4 changes to what is stated in the help system. Further, the SHIFT + F4 works while I am connected to the network and both fail (SHIFT + F4 and CTRL + SHIFT + P) in standalone mode.

    I use a laptop (lenovo with 2 GB’s RAM, 100 GB hard drive, 1.67 GHz dual core).

    Thanks,
    Sandor

    The keyboard shortcuts will not change by the factor of internet connections. I suspect the selected configuration was changed from times to times. To fix this, you might want to show Properties for All Configurations, select the Keyboard tab, and then click Reset button to reset all keyborad shortcuts throught all configurations to the default. Thank you!

    in reply to: Why not emeditor 9.01 Portable Download ? Thanks. #7732
    Yutaka Emura
    Keymaster

    emuser1 wrote:
    Why not emeditor 9.01 Portable Download ?
    I Can’t Find It.
    Thanks.

    It is now available for registered users at Emurasoft Customer Center – Available Downloads page. Thank you!

Viewing 25 posts - 2,451 through 2,475 (of 3,693 total)