Forum Replies Created
- AuthorPosts
Yutaka Emura
KeymasterI added information about JSON to the History page of the Help, the latest feature page of the website, and I posted a new blog about the feature.
As for email notifications, I didn’t change anything, but we constantly update WordPress, so it is possible that there might have been glitches in some version of WordPress.
Thanks!
Yutaka Emura
KeymasterHello LifeTimer,
It will take some time until we can release a new version, so I built a test version for you:
Here is an example:
sTsvFile = "E:\\Test\\filter.tsv"; // export the current filter to a TSV file. document.ExportFilter( sTsvFile ); // import the TSV file and apply the filter nCount = document.ImportFilter( sTsvFile );
April 20, 2016 at 4:00 pm in reply to: Does Javascript macros in EmEditor only support a subset of Javascript standard? #20779Yutaka Emura
KeymasterEmEditor v15.9.0 supports the JSON object. Here is an example:
var text = '{ "employees" : [' + '{ "firstName":"John" , "lastName":"Doe" },' + '{ "firstName":"Anna" , "lastName":"Smith" },' + '{ "firstName":"Peter" , "lastName":"Jones" } ]}'; var obj = JSON.parse(text); alert( obj.employees[1].firstName + " " + obj.employees[1].lastName );
I hope this helps. Thanks for your inputs!
Yutaka Emura
KeymasterHello,
Actually, the JSON object is already defined on EmEditor v15.9.0.
Can you try on your computer, and see if there any issues?
Thanks!
Yutaka Emura
KeymasterHello,
You can go to configuration properties, the Display tab, select Matched parentheses/brackets, and then change the text color or background color.
I am not sure why you didn’t receive notifications. I would subscribe the RSS feeds for the entire forums.
Thank you,
April 20, 2016 at 8:22 am in reply to: Shortcut for editing current cell in Cell Selection Mode? #20770Yutaka Emura
KeymasterHello,
You can use the ENTER key to edit the current cell, but you can also assign the “Edit Cell” command to F2. The F2 key had been assigned to another command, so I didn’t want to change the current key assignments.
Thank you,
Yutaka Emura
KeymasterAfter unpin the EmEditor icon from the Taskbar, can you right-click on the EmEditor icon on the Start menu, and add it to the Taskbar? If you are using Windows 10, you can right-click the EmEditor icon on the Start menu, click “More”, and then “Pin to taskbar”.
Thank you,
Yutaka Emura
KeymasterIs it only the Taskbar Icon that has the 16-color effect? Are other EmEditor shortcut icons (desktop and start menu) OK? Since the Taskbar icon was not updated by the EmEditor installer, you might want to unpin the icon from Taskbar, and then pin again when EmEditor is running. Can you try?
Thank you,
Yutaka Emura
KeymasterThanks for the function proposals. These two function prototypes are helpful. Do you want to export filters to TSV files?
Yutaka Emura
KeymasterFrom the screenshot you sent me, the EmEditor icon used is 16 colors. Do you use any reduced color mode in your Windows Personalization?
Thanks,
Yutaka Emura
KeymasterHello,
Can you just select a previously used filter by clicking the v button (or pressing the DOWN key) on the drop-down list box in the Filter toolbar?
Yutaka Emura
KeymasterPlease confirm, are you using 100% in the Windows Display Settings? You can also send me a screenshot at tech at emurasoft.com.
Thanks!
Yutaka Emura
KeymasterHello LifeTimer,
Just to be clear, do you want to record exporting the current filter as a macro?
Yutaka Emura
KeymasterHello Paul,
I understand. I will think about that in future versions.
Thanks!
Yutaka Emura
KeymasterHello LifeTimer,
Did you change the Windows Display settings, “Change the size of text, apps, and other items” (DPI)? If this is not 100%, you might want to revert to 100% and see if you can resolve the issue.
Thanks!
Yutaka Emura
KeymasterHello Paul,
In case you are not aware of already, you can use the Search plug-in to do the same.
Thank you!
Yutaka Emura
KeymasterHello LTT,
“Unspecified error” is a correct behavior. If you want the script to continue even if the Unspecified error appears, you can surround the code with try … catch statement.
For example:
try { document.selection.Find( "abc", eeFindNext | eeFindAround ); } catch ( e ) { alert( "dialog box dismissed" ); } alert( "end of macro" );
I hope this helps.
Thanks!April 14, 2016 at 11:10 am in reply to: Down key in Quick Launch calls Start Window if in new document #20725Yutaka Emura
KeymasterHello Paul,
I will fix this bug on beta 4 as well.
Thank you!
Yutaka Emura
KeymasterHello Paul,
I reproduced the crash with Onigmo engine. I will fix this issue on beta 4.
Thank you!
April 12, 2016 at 3:00 pm in reply to: Rendering problem when horizontally scrolling off-screen Right-to-Left text. #20709Yutaka Emura
KeymasterHello Meir,
You can write a macro (it can be a dummy macro, for example just one comment line)
//
and then associate to the “Scrolled” event. (Macros menu > Customize > select the macro name you created, click “Runs at Events”, click “Events…” button, and check “Scrolled”, and select Delay Time 0.
When a macro is finished running, EmEditor automatically redraws the whole window.
Thanks!
April 12, 2016 at 2:52 pm in reply to: Selected configuration New File to open a choice of different templates #20708Yutaka Emura
KeymasterHello Meir,
You can write a macro to select a template, and associate the macro to the event when you create a new file. Can you try that way? I would really appreciate if you could use macros first. I don’t think I can satisfy all your requests.
Thanks,
Yutaka Emura
KeymasterHello Meir,
You can click a marker button while press the SHIFT key to find previous.
Thanks!
April 12, 2016 at 2:43 pm in reply to: Does Javascript macros in EmEditor only support a subset of Javascript standard? #20706Yutaka Emura
KeymasterHello,
On the next beta version (v15.9.0 beat 3), I added the versioning code to set JScript version to 5.8, but unfortunately, it doesn’t seem working. I will still look into the issue.
April 12, 2016 at 8:39 am in reply to: Selected configuration New File to open a choice of different templates #20703Yutaka Emura
KeymasterHello Meir,
Thanks for several inputs. I am currently busy with other parts of development, but I will work on these issues as soon as I have some time. Thanks for your patience!
Yutaka Emura
KeymasterHi Paul,
On the next beta version (v15.9.0 beta 3), you will be able to call Snippets by using ExecutePlugin function with the nParam = 1, and strParam = path to the snippet. For example:
editor.ExecutePlugin( "Snippets.dll", eePluginUserMessage, 1, "General\\Date" );
I hope this will help you.
Thank you!
- AuthorPosts