Re: Subscript and Superscript

2017-09-10 Thread Roger Guay via use-livecode
Thanks for your help, Terry and Brian. Cheers, Roger > On Sep 10, 2017, at 8:07 PM, Roger Guay via use-livecode > wrote: > > Since one can set the subscript or superscript of a character from the Text > menu, presumably there are commands to do so as well? I

Re: Subscript and Superscript

2017-09-10 Thread Brian Milby via use-livecode
Or, the way the engine does it is to use "the textshift"... set the textShift of char 2 of field "textField" to -4 --superscript set the textShift of char 5 of field "textField" to 4 --subscript The IDE uses a handler called "ideStyleText" located in stack "revidelibrary" if you want to take a

Re: Subscript and Superscript

2017-09-10 Thread Terry Judd via use-livecode
Hi Roger – you can set subscripts and superscripts by settings the htmlText. So, something like: set the htmlText of word 5 of fld “x” to “m2” Terry... On 11/09/2017 1:07 pm, "use-livecode on behalf of Roger Guay via use-livecode"

Subscript and Superscript

2017-09-10 Thread Roger Guay via use-livecode
Since one can set the subscript or superscript of a character from the Text menu, presumably there are commands to do so as well? I can’t find such a thing! Help please. Thanks, Roger ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Export vector graphics v05

2017-09-10 Thread Alejandro Tejada via use-livecode
Hi All, This download is an update to a stack posted 10 years ago in the mail list. This stack exports all vector graphics pasted in the first card as PDF, Adobe Ilustrator (v7) or SVG. Please test first if you could open every type of file produced by this stack. Before pasting your graphics,

Re: Getting saucy

2017-09-10 Thread Brian Milby via use-livecode
I'll add that it did not take that much to get it up and running on Linux. I had an Ubuntu 16.04 ISO already so I built a VM and updated everything. I used the commands on the build-linux.md file to get all of the dev software installed. The only package missing was java... (sudo apt-get install

Android Audio Playback & Recording

2017-09-10 Thread Peter Reid via use-livecode
Hi, I'm making an app for Android in the form of an Amazon Fire 7 tablet (2017 version). I'm doing the development with LC 9-dp8 and a Mac running macOS 10.12.6. A key part of this app requires the user to say a word or two, which will be recorded by the tablet and saved for subsequent

Re: What Android device detail do you find useful and why?

2017-09-10 Thread J. Landman Gay via use-livecode
On 9/8/17 8:46 PM, Sannyasin Brahmanathaswami via use-livecode wrote: MobileBuildInfo for Android (see below) Is anyone tracking this stuff? If so, what, from your analytics experience is most useful? And why? The most useful for me would be to get the hardware serial number for tracking

Re: Getting saucy

2017-09-10 Thread Monte Goulding via use-livecode
> On 11 Sep 2017, at 12:54 am, Richmond Mathewson via use-livecode > wrote: > > I did that sort of thing about 3-4 years ago in a rather feeble attempt to > build a Livecode > version to run on Linux PPC . . . > > Most open source efforts supply a folder with

Re: Getting saucy

2017-09-10 Thread Brian Milby via use-livecode
Someone more knowledgeable would need to comment as to why, but I can verify that it won't build from downloaded zips of the repository. When attempting to `make config-mac` it will complain that it isn't a git repository. Having said all that, it wasn't that bad to get the environment set up on

Re: Getting saucy

2017-09-10 Thread Mark Wieder via use-livecode
On 09/10/2017 07:54 AM, Richmond Mathewson via use-livecode wrote: I did that sort of thing about 3-4 years ago in a rather feeble attempt to build a Livecode version to run on Linux PPC . . . Most open source efforts supply a folder with the build files inside it rather than forcing people

Re: Getting saucy

2017-09-10 Thread Richmond Mathewson via use-livecode
I did that sort of thing about 3-4 years ago in a rather feeble attempt to build a Livecode version to run on Linux PPC . . . Most open source efforts supply a folder with the build files inside it rather than forcing people down the slightly recherché route of git-hub. Richmond. On 9/10/17

Re: Getting saucy

2017-09-10 Thread Brian Milby via use-livecode
A little more involved. I've only done it on Mac, but start here: See https://github.com/livecode/livecode/blob/develop/README.md You need to clone the git repository to your machine and have the build tools setup for your platform. I'm not sure about the "install" part though... I've just been

Getting saucy

2017-09-10 Thread Richmond Mathewson via use-livecode
Sometimes I download a folder containing the source code for an application and cd into it from the Terminal and do a ./compile make make install series of actions and the code is compiled and installed in my operating system. How does one download such a folder of an Open Source version of