-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Colduction
Hi AutoIt Scripters/Programmers. I have a question about MIME Tools for Notepad++:
I've recently found a UDF about Base64 in forum, but they can't decode\encode correctly some emojis , other UTFs and etc. so i decided to use mimeTools.dll of Notepad++ or main site
My problem is how to use this dll in AutoIt Language?
I will be happy with your comments and answers❤ Thanks.
-
By jloyzaga
I am able to open notepad++ and open an xml file, select all the contents but I want to then click on the plugins menu item, select mime, and then select base 64.
This part eludes me can you help me please? - the plugin select etc
and then save as base64n.txt
the code isRun("C:\Program Files (x86)\Notepad++\notepad++.exe E:\icare\icare\P_PrintArchivePDF_140001201_NI_WI_NEWBUS_QUARTERLY_INSTALMENTS_3b_NBSE_ERR.xml")
sleep (200)
Send("{CTRLDOWN}a{CTRLUP}")
sleep (500)
ENTER select of plugin etc
save as XXXXXX.txt
-
By oldtimer
If anyone has considered creating an interface for Notepad++ to support AutoIT, I think there would be a lot of interest. I believe that Notepad++ is based on the same underlying editing engine as Scite. I, for one, would be willing to pay for some of the Scite functionality for AutoIT to be ported to Notepad++.
Randy
-
By SugarBall
Hi guys, i am having an issue reading a notepadd++ file...
#include <FileConstants.au3> #include <MsgBoxConstants.au3> #include <WinAPIFiles.au3> Example() Func Example() ; Open the file for reading and store the handle to a variable. Local $hFileOpen = FileOpen("test123.html", $FO_READ) If $hFileOpen = -1 Then MsgBox($MB_SYSTEMMODAL, "", "An error occurred when reading the file.") Return False EndIf ; Read the contents of the file using the handle returned by FileOpen. Local $sFileRead = FileRead($hFileOpen) ; Close the handle returned by FileOpen. FileClose($hFileOpen) ; Display the contents of the file. MsgBox($MB_SYSTEMMODAL, "", "Contents of the file:" & @CRLF & $sFileRead) EndFunc ;==>Example It does seem that i get an error but why?
-
By Ontosy
I user notepad++ and "language help" plugin to display contestual help.
It work a small but annoying gap.
When it launch the AutoIt.chm it display searchead word but the index is empty with only "Merge" word.
Do it is a AutoIt.chm problem?
Do it is possible to solve?
-