Jump to content

paule

Members
  • Posts

    14
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

paule's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. @yashied Only work on 32 Bit. I have a German 64Bit Windows 7 Ultimate OS $__cpDll = DllOpen($sDll) If $__cpDll = -1 Then Return SetError(1, 0, 0) EndIf On 64Bit the result $__cpDll is always -1. XP 32Bit is ok $__cpDll=1
  2. I thing you don't not read topic. there was no lua script that startet when the the AutoIt script was compiled. Sorry for my question. Regards paule
  3. For my problem you wrote: "here are many examples there."Can you give me a link? Thanks Paule
  4. I have a lua script in scite for AutoIt. Here the lua script. function TraceLineNumber() for m in editor:match("\"|[0-9]*|",SCFIND_REGEXP,0) do local LineNumber = editor:LineFromPosition(m.pos)+1 if LineNumber < 10 then LineNumber = "000"..LineNumber elseif LineNumber < 100 then LineNumber = "00"..LineNumber elseif LineNumber < 1000 then LineNumber = "0"..LineNumber end m:replace("\"|"..LineNumber.."|") end print("Ich habe fertig") end In SciTEStartup.lua I have added the line LoadLuaFile("TraceLineNumber.lua") -- suche "|12| und ersetze durch akuelle Zeilennummer ==> "|0015| In SciTEUser.properties I have added # 34 Zeilenummern ersetzen command.name.34.$(au3)=ZeilenNummer ersetzen command.subsystem.34.$(au3)=3 command.34.$(au3)=InvokeTool TraceLineNumber command.save.before.34.$(au3)=2 command.shortcut.34.$(au3)=Shift+Ctrl+Z Once more: I will bevor my AutoIt were compiled that the lua script "TraceLineNumber.lua" will be execute I have read the documentation. I will not compile a lua script!
  5. here my au3.properties # Commands to compile / run your script command.go.$(au3)="$(SciteDefaultHome)\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "$(FilePath)" /autoit3dir "$(autoit3dir)" /UserParams $(1) $(2) $(3) $(4) ;command.go.$(au3)="$(autoit3dir)\autoit3.exe" /ErrorStdOut "$(FilePath)" $(1) $(2) $(3) $(4) command.go.subsystem.$(au3)=1 command.compile.$(au3)="$(SciteDefaultHome)\AutoIt3Wrapper\AutoIt3Wrapper_Gui.exe" /in "$(FilePath)" command.compile.filter.$(au3)=1 command.build.$(au3)="$(SciteDefaultHome)\AutoIt3Wrapper\AutoIt3Wrapper.exe" /prod /in "$(FilePath)" /autoit3dir "$(autoit3dir)" command.build.filter.$(au3)=1 #~ #command.build.$(au3)="$(autoit3dir)\aut2exe\aut2exe.exe" /in "$(FilePath)" where do I include the lua script bevor AutoIt3Wrapper.exe starts?
  6. I have a lua script that change the string "|12 to "|00xx|" at the aktual LineNumber. I have my lua script in the Scite menu und is have a hotkey. Often I forget in scite to press the hotkey when I compiled my AutoIt script. I will that the lua script started bevor the AutoIt script were compiled. Can you give me a link to read the configuration of scite? thanks paule
  7. Hello, I will start a LUA Script when I pressed F5 or F7 in Scite editor. How can I do that? Regards Paule
  8. I was not sure is it a bug or a feature. sorry this is not correct. All empty line past last line are ignored. Empty lines between full lines are not ignoredI thing this must be notice in the help file
  9. I thing there is a bug in _FileReadToArray in beta 3.2.11.10 If the last line have not cr or lf then _FileReadToArray does not read the line. Version 3.2.10.0 read this kind of line. I must correct my declaration Example test test test 0d0a test test test 0d0a 0d0a Version 3.2.10.0 show array[0]=3 Version 3.2.11.10 show array[0]=1 paule
  10. what a pity thanks for your respond
  11. i will change the color in the title bar. I will not change the color in AutoIt Gui. I will change the title bar e.g. Notepad, Excel ... Paule
  12. Could this script help you ? ftp://ftp.erm.tu-cottbus.de/freeware/ vncspread.cmd or vncspread_1.1.cmd Paule
  13. How can I change the icon in the traybar during if the programm is running? Not at compilation
×
×
  • Create New...