1. Dashboard
  2. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  3. Forenregeln
  4. Forum
    1. Unerledigte Themen
  • Anmelden oder registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. AutoIt.de - Das deutschsprachige Forum.
  2. Mitglieder
  3. Ashpool

Beiträge von Ashpool

  • GDI+ - Punkte + Hotkeys SciTE

    • Ashpool
    • 6. März 2009 um 21:49
    Zitat von MatthiasG.

    Wo finde ich eine List mit allen Hotkeys in SciTE?

    In der Hilfe zu Scite steht das hier:


    • Customized Syntax highlighting.
    • AutoComplete AutoIt3 commands automatically (suggest the option in a
      dropdownbox while typing), just hit ENTER or TAB to Autocomplete.)
    • AutoComplete anything already in the script, like variable and Func names,
      with Ctrl+Enter.
    • Intellisense (Show a ToolTip with the parameter expected in the selected
      function).
    • Code folding for easy code viewing.
    • Auto indentation while typing.
    • F1 - open Helpfile on the keyword were the cursor
      is located.
    • Alt+F1 - open the Beta Helpfile on the keyword
      were the cursor is located.
    • Shift+F1 will bring up a Popup screen showing all AutoIt3
      functions. Just Double-Click or Enter on the function you need and it will be pasted back
      into your script. It Also has a dynamic Help facility!
    • Ctrl+F1 - open this Helpfile.
    • Ctrl+1 - open SciTEConfig.exe program to change the Font/Color
      setting used by SciTE.
    • F5 - Run Tylo's Au3Check and when no
      errors/warnings found run AutoIt3.exe.
    • Alt+F5 - Run BETA versions of Tylo's Au3Check and
      when no errors/warnings found run AutoIt3.exe.
    • Ctrl+F5 - Run Tylo's SyntaxCheck with the latest
      Production definitions, showing all Syntax errors and possible
      issues with variable declarations. (See details)
    • Ctrl+Alt+F5 - Run Tylo's SyntaxCheck with the latest
      Beta definitions, showing all Syntax errors and possible issues
      with variable declarations. (See
      details
      )
    • Alt+F6 - Run Larry's AU3Recorder to record clicks and keystrokes and write
      this into your AutoIt Script.
    • Ctrl+F6 - Run Larry's AU3_Spy
      program
      to detect the Text and Names of controls on the program windows.
    • F7 - Build: Run Tylo's Au3Check and when no
      errors/warnings found run AU3EXE.
    • Alt+F7 - Build: Run
      BETA version of Tylo's Au3Check and when no errors/warnings found run AU3EXE.
    • Ctrl+F7 - AutoIt3Wrapper: Build (compile) your script with
      Options to change Compiler version, ICON, Passphrase or compression,
      Update Resource info of the target program like Program version etc.
      Optional
      run Tylo's AU3Check before compiling the source and running other programs
      Before or After compilation..
    • Ctrl+T will run Tidy.exe (included in this install) to auto indent and
      Tidy your AutoIt3 source file.
    • Alt+W will run
      CodeWizard.exe
      which assists you in creating MsgBox, InputBox() and more.
    • Alt+M will run Koda formdesigner wrtten by
      Lookfar and Lazycat, another tool to create a GUI.
    • Alt+A - Run VoSs2o0o's
      AutoItMacroGenerator
      ...Another recorder for script.
    • Ctrl+Alt+s will Run the Snippet holder .
    • Several LUA scripts to enhance SciTE editing.

      • Insert a copy of the Bookmarked line(s) - Ctrl+Alt+B
        This functions will insert all Bookmarked
        lines at the beginning for the current line.
        Lines can be Bookmarked by
        pressing Ctrl+F2.
      • Jump to the "Func ???" definition of the functionname under the Cursor -
        Ctrl+J
        It will also Bookmark the original line to
        enable you to jump back to the original line with F2.
      • List dropdownbox Ctrl+L with all available Func's
        in the current script and jumps to selected script. It will also Bookmark the
        original line to enable you to jump back to the original line with F2.
      • Alt+I - Open #include "" file.
      • Ctrl+Shift+D - Add Debug msgbox
        This function
        will add a MSGBOX below the current line that contains the Var the cursor is
        at
        $a = $b + 1 (Put the cursor on $b and press Ctrl+Shift+D the following line will be added)
        MsgBox(4096,'debug:' & $b,$b) ;### Debug MSGBOX
      • Alt+D - Add Debug ConsoleWrite message
        This
        function will add a ConsoleWrite line below the current line that contains the
        Var the cursor is at
        $a = $b + 1 (Put the cursor on $b and press Alt+D the following line will be added)
        ConsoleWrite('Line:~4 debug ==> $b: ' & $b & @lf) ;###
        Debug Console
      • Alt+Shift+D - Comment ALL DEBUG MsgBox and
        ConsoleWrite lines.
      • Ctrl+Alt+D - UnComment ALL Debug MsgBoxes and
        ConsoleWrite lines.
      • Add TRACE ConsoleWrites to all lines to easily trace your program:Available
        under Tools/Debug: Add Trace lines
      • Remove ALL Debug MsgBoxes and ConsoleWrite lines: Available under Tools/Debug: Remove ALL lines
  • Schlafen bis...

    • Ashpool
    • 6. März 2009 um 21:44

    Interessant dürften auch _Date_Time_GetLocalTime und _Now sein.

  • Listview Optik - Seltsames Verhalten

    • Ashpool
    • 6. März 2009 um 21:24

    Entschuldige, ich habe erst jetzt verstanden, was du meinst. :wacko:

    Im Beispiel 1 hat der Button nach einem Klick darauf den Eingabefokus. Im Beispiel 2 hat immer dein Listview den Fokus.
    Du musst also dem Listview irgendwie den Fokus entziehen. :D

  • Listview Optik - Seltsames Verhalten

    • Ashpool
    • 6. März 2009 um 21:03
    Zitat von nuts

    Bei Beispiel 1 ist das nicht so.

    Also bei mir ist das auch im Beispiel 1 so.

  • Pong mit GDI+, wie mach ich den Strich beweglich?

    • Ashpool
    • 6. März 2009 um 19:48
    Zitat von Greek

    Warum geht der Rechte nicht? Wenn ich ganz viele Tasten aufeinmal drück, passiert auch bei dem Rechtem was O.o


    Du fragst in deinen Funktionen _hochR() und _runterR() die selben Tasten ab, wie in _hochL() und _runterL()!

  • Pong mit GDI+, wie mach ich den Strich beweglich?

    • Ashpool
    • 6. März 2009 um 17:58
    Zitat von Greek

    Welche Befehl ist das bei GDI+?

    Hilft die Funktion _GDIPlus_GraphicsClear weiter?
    Aus dem Beispiel in der Hilfe könnten vor allem diese Zeilen interessieren:

    [autoit]


    $hGraphic = _GDIPlus_ImageGetGraphicsContext ($hImage)
    _GDIPlus_GraphicsClear ($hGraphic)

    [/autoit]
  • timerinit und timerdiff beispiel

    • Ashpool
    • 5. März 2009 um 19:57

    Das hört sich schon ganz anders an. :)

    Wenn du jetzt noch sagst, wo genau das Verständnisproblem lag, kann man die Hilfe ja evtl. anpassen.

    Gruß Ashpool

  • timerinit und timerdiff beispiel

    • Ashpool
    • 5. März 2009 um 19:36
    Zitat von bobaslo

    das is dumm erklärt

    Mal 'ne Frage am Rande:
    Warum ist das dumm erklärt? Weil du nicht in der Lage bist, 10 Minuten in Millisekunden umzurechnen? Wenn du geschrieben hättest, das es unverständlich erklärt wird, wäre ja alles in Ordnung, aber dumm sind die Leute, die sich die Mühe machen, eine Dokumentation zu erstellen, mit Sicherheit nicht. Irgendwie fühle ich mich da auch ans Bein gepisst. :cursing:

  • Up-/Down-Control bei Input

    • Ashpool
    • 5. März 2009 um 18:20

    Klasse, Oscar! :thumbup:

    Das ist so gut und einfach nachvollziehbar, das könnte man doch sehr gut als Workaround in die (deutsche) Hilfe einbauen.
    Was meinst du dazu?

    Gruß Ashpool

  • Up-/Down-Control bei Input

    • Ashpool
    • 5. März 2009 um 04:58
    Zitat von Oscar

    Könnt ihr mir wenigstens bestätigen, dass das bei euch auch so ist.


    Ist bei mir genauso, der einstellbare Bereich reicht von -32767 bis +32767 :(

  • Pong mit GDI+, wie mach ich den Strich beweglich?

    • Ashpool
    • 4. März 2009 um 20:51

    Die Grafik ist ja schonmal geil, hat mich sofort an alte Zeiten erinnert! :thumbup:

    Ich würde erstmal Variablen für die Schlägerposition anlegen und die dann in den angedeuteten Funktionen für hoch und runter in- bzw. dekrementieren.
    Das Zeichnen der Schläger würde ich in eine separate Funktion auslagern und dann die Variablenwerte für die DrawLines nehmen. Dann musst du aber den alten Schläger auch jedesmal löschen. Oder du erstellst dir für die Schläger Grafikobjekte, die du dann relativ einfach auf dem Bildschirm verschieben kannst.

    Gruß Ashpool

  • !!! wichtig !!! >>> englische Hilfe in deutsche übersetzen U P D A T E <<< !!! wichtig !!!

    • Ashpool
    • 4. März 2009 um 20:07

    Psst, unter uns: Das habe ich jetzt nicht richtig kapiert... ^^

  • GUICtrlCreateInput - Transparenter Hintergrund / Hintergrundbild

    • Ashpool
    • 3. März 2009 um 21:23
    Zitat von Korby

    Ich glaube Du hast mein Problem nicht richtig verstanden.


    Dann plädiere ich für: Keine Ahnung! ;(

  • Problem mit Aktuellem Script

    • Ashpool
    • 3. März 2009 um 21:13

    Soweit ich das sehe, fehlt das Öffnen der Datei, aus der du mit FileRead lesen willst. Also liest dein FileRead aus der zuletzt geöffneten Datei, und das dürfte dein compiliertes Script sein.
    Schau dir doch nochmal das Beispiel zu FileRead an. Außerdem dürfte FileReadLine für deine Zwecke besser geeignet sein.
    (Bei deinem FileWriteLine hast du vorher übrigens auch noch keine Datei zum Schreiben geöffnet.)

    Gruß Ashpool

  • GUICtrlCreateInput - Transparenter Hintergrund / Hintergrundbild

    • Ashpool
    • 3. März 2009 um 20:27
    Zitat von Korby

    Ich möchte mit GUICtrlCreateInput ein Eingabefeld mit einem transparentem Hintergrund, oder einem Hintergrundbild erstellen.

    Ich schätze mal, GUICtrlSetGraphic oder GUICtrlSetBkColor sind die Funktionen, die du dir näher anschauen solltest.

    Gruß Ashpool

  • mozrepl läuft nicht, wie installieren?

    • Ashpool
    • 3. März 2009 um 05:05
    Zitat von Calimero876

    Okay ich habe ein XP System.


    Also ich hab XP SP3 und diese mozrepl
    Es funktioniert einwandfrei!
    Mein Firefox ist allerdings keine portable Version.

    Gruß Ashpool

  • !!! wichtig !!! >>> englische Hilfe in deutsche übersetzen U P D A T E <<< !!! wichtig !!!

    • Ashpool
    • 3. März 2009 um 05:00
    Zitat von Tweaky

    Vielleicht braucht je keiner die deutsche Hilfe, grübel, grübel :huh:

    Oh doch, jedenfalls lassen einige Beiträge im Forum diesen Verdacht aufkommen. ;)

  • !!! wichtig !!! >>> englische Hilfe in deutsche übersetzen U P D A T E <<< !!! wichtig !!!

    • Ashpool
    • 2. März 2009 um 20:57
    Zitat von Tweaky

    Momentan sind nur Ashpool, BigRox und ich am Werke :S
    ...
    So dauerts wieder ewig, bis alles in Ordnung und fehlerfrei ist :(

    Soll das etwa bedeuten, wir wären zu langsam? :D

    Leute, zeigt uns, dass ihr es besser könnt! 8)

    Ashpool

  • Mausklicke (easy für euch steh aufm schlauch^^)

    • Ashpool
    • 1. März 2009 um 20:28

    Hilfe zu GUICtrlSetOnEvent

    Da steht was zu GUIOnEventMode.
    Das löst allerdings nur einen Teil deines Problems. :D

    Gruß
    Ashpool

  • Koda in AutoIt?

    • Ashpool
    • 28. Februar 2009 um 11:09
    Zitat von MatthiasG.

    Aber ist es möglich auch so ein GUI-Entwerfer Tool zu machen, also man zieht einen Rahmen ins Feld und bekommt dann ein Steuerelement

    Das ist mit Sicherheit möglich, nur ist AutoIt eine Scriptsprache, also wird die Ausführgeschwindigkeit nicht besonders hoch sein.
    Aber da halte ich mich jetzt mal zurück, da frag mal lieber Leute, die sich damit auskennen. :D

    Gruß Ashpool

Spenden

Jeder Euro hilft uns, Euch zu helfen.

Download

AutoIt Tutorial
AutoIt Buch
Onlinehilfe
AutoIt Entwickler
  1. Datenschutzerklärung
  2. Impressum
  3. Shoutbox-Archiv
Community-Software: WoltLab Suite™