Forum Replies Created
- AuthorPosts
- December 23, 2012 at 7:57 pm in reply to: Margin Positioning on Printout Disagrees with Page Settings #10684
Yutaka Emura
KeymasterHello ArthurZ,
I understand what the issue was about the page margins. There was about 0.166 inch undocumented extra space on each side of a page. I am not sure if this margin depends on printer you use, but I reproduced this issue on my printer, too. I adjusted the margins with Notepad output. Also, there was space on the left side of line numbers, but that was intentional space EmEditor leaves — space assuming 4-digit line numbers. I adjusted this to 2-digit line numbers, and so that the space increases as the line number increases. I removed all the space, so you will see more accurate page margins on the next version.
Thank you!
December 22, 2012 at 2:07 am in reply to: Margin Positioning on Printout Disagrees with Page Settings #10682Yutaka Emura
KeymasterHello,
The Page Setup button allows you to change the margins of a page.
If this doesn’t work, there may not be enough positioning settings for you. I am sorry, but EmEditor is not a word processor. I suggest you use a word processor to print the file you would like.
Thank you!
December 22, 2012 at 1:42 am in reply to: Margin Positioning on Printout Disagrees with Page Settings #10680Yutaka Emura
KeymasterHello,
You can change all kinds of settings on Configuration Properties, the Print tab.
– Print Line Numbers check box
– Ignore Color and Underlines check box
– Draw Separating Lines check box
– Wrap by Page when Printing check box
– Space Between Lines text box
– Header check box
– Header text box
– Footer check box
– Footer text box
– Page Setup button
– Font buttonFor instance, the Header check box allows you to include the “Untitled” word on the print.
Please let me know if these settings still can’t resolve your issues.
Yutaka Emura
KeymasterHi LTT,
I see. It will be fixed on the next version.
Thanks!
Yutaka Emura
KeymasterSome of the strings are case sensitive, but I will fix others. Thanks!
Yutaka Emura
KeymasterHi LTT,
I reproduced this issue, and it will be fixed on the next version.
Thanks!
Yutaka Emura
KeymasterI realize the sort commands do not work in the 32-bit edition. Please select all (Ctrl + A) or select where you want to sort before you do these commands. This will be fixed on the next version.
Thanks!
Yutaka Emura
KeymasterWhat do you mean by “in vain”? Can you take a screenshot or screencast?
Thanks!
Yutaka Emura
KeymasterHello,
The following macro will move the cursor to the n-th line.
document.selection.SetActivePoint(eePosLogical, 1, n);
Thanks!
Yutaka Emura
KeymasterHello LTT,
OK. eeFindSaveHistory will be supported on Find/ReplaceInFiles in the next version.
Thanks!
Yutaka Emura
KeymasterHello LTT,
I will fix the first issue.
As for the second issue, eeFindSaveHistory is not supported in Find/Replace in Files.
Thanks!
Yutaka Emura
KeymasterHi LTT,
I am fixing the “xml” vs. “XML” issue. Thanks!
Yutaka Emura
KeymasterHi LTT,
I am not sure your test environment. Is the “Enable Tabs” set? If you are using the Tabs, you won’t be able to close a new tab that is created during the macro because the “Confirm” dialog box is the foreground window. If the Enable Tabs is not set, you can close a new created window during the macro, but the macro will continue as expected. Please explain the detail procedure to reproduce the issue.
Thank you,
Yutaka Emura
KeymasterHello,
When you do something like below, you can change the configuration properties for C++:
cfg = document.Config;
cfg.Load( "C++" );
cfg.File.Delimiter = "|";
cfg.Save();
You can’t add or delete a configuration by macros.
Yutaka Emura
KeymasterHello,
There was no problem on Windows 7 or Windows 8, but the issue appears on Windows XP. I will try to fix on this issue on Windows XP.
Thanks!
Yutaka Emura
KeymasterHello,
1. You will need to load the Config object into the memory before you can modify and save it. Please rewrite like this:
cfg = document.Config;
cfg.File.Delimiter = cDSV;
cfg.Save();
2. I will add Delimiter to the help index.
Thanks!
Yutaka Emura
KeymasterHi LTT,
I can’t reproduce this issue. Can you write detail procedure to reproduce the issue? Are you using English UI?
Thank you.
November 19, 2012 at 6:34 pm in reply to: Show find highlight positions in the vertical scroll bar #10642Yutaka Emura
KeymasterHello,
I will consider something like this in future versions.
Thanks for your inputs!
Yutaka Emura
KeymasterHello,
If you just want to make your HTML prettier, you can use HTML tidy. You can search the internet for “HTML Tidy” to download the binary, and run that from an External Tool with EmEditor. See this screenshot:
November 18, 2012 at 9:16 pm in reply to: (document.selection.IsEmpty) Does Not Equal (document.selection.Text == "") ? #10637Yutaka Emura
KeymasterI will fix this on the next version.
Thanks!
November 14, 2012 at 6:31 pm in reply to: (document.selection.IsEmpty) Does Not Equal (document.selection.Text == "") ? #10629Yutaka Emura
KeymasterHello,
I will fix this by the next version.
Thank you!
Yutaka Emura
KeymasterHello,
I reproduced this issue, and it will be fixed on the next version.
Thanks!
Yutaka Emura
KeymasterHello,
I will consider this in future versions.
Thanks!
Yutaka Emura
KeymasterI will look into the code.
Thanks!
Yutaka Emura
KeymasterHello LTT,
I will fix those bugs.
Thanks!
- AuthorPosts