Antwort auf: mouseword ???

Startseite Foren Deutsches LiveCode-Forum mouseword ??? Antwort auf: mouseword ???

#10043
Klaus Major
Administrator

    Hi thorsten,

    ah, dake für die Info!

    Ein paar Tips:
    Du kannst per Skript so gut wie ALLES machen, und natürlich auch Text in ein gelocktes oder unsichtbares Feld packen. Also „lock“e Dein Feld einmal im Inspector, dann brauchst Du das nicht im Skript zu machen.

    Du kannst immer die Existenz einer Datei prüfen mit:

    on mouseUp
       put the mousetext into Arznei
       put specialFolderPath("resources") & "/data/" into SpecialPfad   
       put SpecialPfad & Arznei & ".htm" into HTM
       if there is a file HTM then
          put url("file:" & HTM) into tHTML
          set the HTMLTEXT of widget "Browser" to HTM
          show widget "Browser"
       end if
    end mouseUp

    Du kannst Deinem Feld einen „on backspacekey“ Handler verpassen und entsprechend skripten.

    Gruß

    Klaus