- Posted by
- The Cloud Services with the Cloud Sync feature are still available in UltraEdit for Windows v2024.0 as far as I know although I cannot use that feature as my life-time license without subscription plan does not permit its usage which is no problem for me a s I don't need that feature at all. If you ...Posted in UltraEdit General Discussion
-   Topics
-   Views
- Mofi
5:31 - Jun 28
- There are additions to UltraEdit script feature in v2024.0 as it can be read on the UltraEdit latest changes page or in the file changes.txt in the UltraEdit program files folder. I don't use UltraEdit Portable and cannot verify the issue reported by you for that reason. I suggest creating an UltraE...Posted in Scripts
-   Topics
-   Views
- Mofi
5:01 - Jun 28
- That modification can be done with a Perl regular expression using backreferences with the search expression ( drop materialized view ) ( .* \r ? \n / \r ? \n ) (?! drop table ) and the replace expression \1 \2 drop table \2 .* matches any character except newline characters like carriage return or ...Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Mofi
5:07 - Jun 27
- I post here a newsletter from Ben Schwenk sent on 2024-06-19 by email to all subscribers of the UltraEdit newsletter. [hr] Hello UltraEdit community! If you have an up-to-date license for UltraEdit or any of our other titles, I wanted to update you with some good news. We recently completed an extra...Posted in UltraEdit General Discussion
-   Topics
-   Views
- Mofi
18:38 - Jun 22
- UltraEdit macros are usually recorded and not often written from scratch. There is no debugging interface available at all. There can be used the macro command ExitMacro inside a macro and run the macro on a saved file. It can be seen how the macro changed the active file, what is selected and where...Posted in Macros
-   Topics
-   Views
- Mofi
7:23 - Jun 16
- I have some recommendations on upgrading or updating from UltraEdit for Windows or UEStudio ≤ v2024.0.0. 28 to ≥ v2024.0.0. 35 . It is possible to simply update to currently latest version of UE/UES but following the recommendations below results in a cleaner upgrade/update of UE/UES. Attention: %Pr...Posted in UltraEdit General Discussion
-   Topics
-   Views
- Mofi
14:59 - Jun 09
- A sample file should be provided by the person asking for a script and not by the person who develops and of course tests the script. I attached the file which I used for testing the posted script. The following instructions are for UltraEdit for Windows and UEStudio v2024.0 for all three user inter...Posted in Scripts
-   Topics
-   Views
- Mofi
8:47 - Jun 08
- Here is a simple script for this task. if (UltraEdit.document.length > 0) // Is any file opened? { // Define environment for this script. UltraEdit.insertMode(); if (typeof(UltraEdit.columnModeOff) == "function") UltraEdit.columnModeOff(); else if (typeof(UltraEdit.activeDocument.column...Posted in Scripts
-   Topics
-   Views
- Mofi
5:32 - Jun 07
- This is a user to user forum. Bug reports must be sent to UltraEdit support by email as I have done a few minutes ago, see below. You should do the same. The more users report an issue the higher becomes the priority. I recommend opening the Layout Manager window from the traditional menu Views with...Posted in Configuration/INI Settings
-   Topics
-   Views
- Mofi
15:50 - Jun 01
- Here are my bug reports regarding to messageBox which I sent by email to UltraEdit support in December 2023 and in April 2024 and which were confirmed by the support. It would be good that everybody encountering the same issues as reported by me reports them also be email to UltraEdit support. The m...Posted in Scripts
-   Topics
-   Views
- Mofi
8:56 - May 31
- It looks like German and Austrian people interpret things different than people from other countries. UltraEdit document properties are of type String on using the WebView2 engine which we expect of type Number as it is with SpiderMonkey engine. Here are two more emails which were send by me during ...Posted in Scripts
-   Topics
-   Views
- Mofi
5:17 - May 29
- JavaScript Lint can be executed with active opened file being a JavaScript file or an UltraEdit/UEStudio script file by clicking in ribbon mode on sixth tab Coding in fourth group Formatting on the fourth item JS/CSS and clicking in opened popup menu on last item JavaScript Lint or pressing on keybo...Posted in Scripts
-   Topics
-   Views
- Mofi
8:26 - May 26
- I still write UltraEdit scripts published here with compatibility for the old version of SpiderMonkey JavaScript engine embedded in UltraEdit/UEStudio (Mozilla JavaScript version 1.8.1 / ECMAScript version 3.1) for maximum compatibility with older versions of UltraEdit and older versions of Windows ...Posted in Scripts
-   Topics
-   Views
- Mofi
17:56 - May 25
- The file operations context menu of Windows 11 is only extendable by either a Universal Windows Platform (UWP) app with an IExplorerCommand interface combined with it's app identity, or a standard desktop application using some Win32 identity wrapper. See also: Extending the Context Menu and Share D...Posted in Configuration/INI Settings
-   Topics
-   Views
- Mofi
7:22 - May 22
- That can be done with the following UltraEdit script. Please read at least the comments at top of the script. /* Script Name: SplitFileBasedOnBytes.js Creation Date: 2024-05-20 Last Modified: 2024-05-20 Copyright: Copyright (c) 2024 by Mofi This script splits up by default the active ...Posted in Scripts
-   Topics
-   Views
- Mofi
11:53 - May 20