Antwort auf: ScriptEditor-Fenster staffeln

Startseite Foren Deutsches LiveCode-Forum ScriptEditor-Fenster staffeln Antwort auf: ScriptEditor-Fenster staffeln

#5145
Klaus Major
Administrator

    Bin ein wenig spät für die PArty, aber Georg hat unbedingt recht!
    NIEMALS IT mehr als nötig verwenden, IT wird sich ändern, wenn Du es am wenigsten erwartest!
    Und ein paar Klammern bei den zusammengesetzen Parametern sind sicher auch nicht verkehrt.

    Versuche es mal so:

    ...
      put the openstacks into WindowList
      filter WindowList with "revNewScriptEditor*"
      repeat with ii = 1 to the num of lines of WindowList
        put line ii of WindowList into tStack
        set the Rect of stack tStack to "100,100,1000,600"
        put Patt into fld "Find" of stack tStack
        set the TopLeft of stack tStack to (50 + (ii - 1) * 10),(50 + (ii -1) * 10)
      end repeat
    ...