Search found 5 matches

by KurtR
Mon Jul 10, 2017 9:12 pm
Forum: Talking LiveCode
Topic: Auto Scrolling Field
Replies: 11
Views: 9978

Re: Auto Scrolling Field

Newbie here... This thread helped me solve a scrolling problem, but I found a tweak that makes this a little simpler. You can use the textHeightSum property of a field to determine its height/size, then just subtract from that to set the scroll position where you want. So no tracking or calculation ...
by KurtR
Wed Dec 21, 2011 12:30 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: how to show a Terminal from LC under OSX?
Replies: 9
Views: 7989

Re: how to show a Terminal from LC under OSX?

Bernd,
Vielen Dank! That works, however, this terminates too soon. I also need to find a way to run a slow process in the shell, and show the ongoing updates over time. Is there a way to pipe the output of a shell into a LC field, showing updates as they happen?
by KurtR
Wed Dec 14, 2011 5:59 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: how to show a Terminal from LC under OSX?
Replies: 9
Views: 7989

Re: how to show a Terminal from LC under OSX?

addendum: I just discovered that you can open a terminal with: launch "/Applications/Utilities/Terminal.app" However, the launch command does not allow an argument, for Terminal to run. Launch only allows the name of a doc to open, but that does not work as I want to pass in a command to run IN the ...
by KurtR
Wed Dec 14, 2011 3:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: how to show a Terminal from LC under OSX?
Replies: 9
Views: 7989

how to show a Terminal from LC under OSX?

Hi, total LiveCode beginner here, trying to figure out how to show a Terminal, called from LC. I'm on a mac. The application I am writing must call an external application that shows the status of a connected device (MIDI). The problem is that when I run the LC shell command, I can only get the imme...
by KurtR
Mon Dec 05, 2011 9:37 pm
Forum: iOS Deployment
Topic: Audio Units, CoreMidi and Popovers
Replies: 4
Views: 3859

Re: Audio Units, CoreMidi and Popovers

Good timing, I'm on a similar quest. Have been muscling through use of midi in a Python app I'm writing for OSX, and since I'm also learning LiveCode, decided to search for a midi capability, sice LiveCode development is faster than Python. It appears you have to link in an extension to get midi, bu...