dsm-sas Posted June 15, 2023 Posted June 15, 2023 I want to crate a small editor to just have minimum functions. But I want to see my changes directly (Color/Bold...). I tried it with richedit and mostly it is ok. Some functions are not included: Sizeposition (left/center). I do not really need a RTF at the end, I have to create a html-file with the used functions. So. If anyone have a better idea to make this -> please let me know. I put my existing script here: SCEDIT.ZIP includes all used JPG. SCEdit.au3 SCEdit.zip
Andreik Posted June 15, 2023 Posted June 15, 2023 Maybe SciLexer UDF. https://www.autoitscript.com/forum/topic/51547-scilexer-udf/
dsm-sas Posted June 15, 2023 Author Posted June 15, 2023 (edited) Hi. Thx. I downloades the NEW Version and get an error because some includes not exist: - Plugins.au3 - calltips.au3 - Lexer.au3 Edited June 15, 2023 by dsm-sas
Andreik Posted June 15, 2023 Posted June 15, 2023 You don't really need all the crap from example file. Just use the UDF functions. Here is a basic example but you can find all functions in the UDF. #include <_SciLexer.au3> $hMain = GUICreate('Test', 800, 600) $Sci = Sci_CreateEditor($hMain, 0, 0, 800, 600) GUISetState(@SW_SHOW, $hMain) ; Add some dummy text Sci_AddLines($Sci, 'Hello world!', 1) Do Sleep(10) Until GUIGetMsg() = -3
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now