Search found 3 matches
- Wed Aug 19, 2020 11:15 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: I'm Brand New to Livecode and Making a Simple Scipt
- Replies: 7
- Views: 3718
Re: I'm Brand New to Livecode and Making a Simple Scipt
Thank You it worked! My next question is will preopenstack have an effect on the load time of line 4 in fld out. It takes a few seconds to get the MAC address though powershell, so I read about preopenstack. What exactly is preopenstack intended for? on preopenstack put "powershell " & quote & "$(Ge...
- Wed Aug 19, 2020 11:15 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: I'm Brand New to Livecode and Making a Simple Scipt
- Replies: 7
- Views: 3718
Re: I'm Brand New to Livecode and Making a Simple Scipt
Thank You it worked! My next question is will preopenstack have an effect on the load time of line 4 in fld out. It takes a few seconds to get the MAC address though powershell, so I read about preopenstack. What exactly is preopenstack intended for? on preopenstack put "powershell " & quote & "$(Ge...
- Wed Aug 19, 2020 12:56 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: I'm Brand New to Livecode and Making a Simple Scipt
- Replies: 7
- Views: 3718
I'm Brand New to Livecode and Making a Simple Scipt
I am making a simple script to show: Serial Number Hostname Mac Address on mouseUp set the hideConsoleWindows to true put empty into fld "fldOut" put "wmic bios get serialnumber" into tCom1 put "Serial is " & line 3 of shell(tCom1) into line 1 of fld "fldout" put "hostname" into tCom2 put "hostname ...