Re: Android, acceleratedRendering and visual effect

2018-07-19 Thread Monte Goulding via use-livecode
Hi Dan A little update. The bug report is here: https://quality.livecode.com/show_bug.cgi?id=21434 The PR for the fix is here: https://github.com/livecode/livecode/pull/6610 Cheers Monte

Re: Android, acceleratedRendering and visual effect

2018-07-19 Thread Monte Goulding via use-livecode
Hi Dan This looks like a regression from the large number of acceleratedRendering related patches that went into 9.0.1 rc 1. I am looking into it as it will be a blocker for 9.0.1-rc-2. Cheers Monte > On 20 Jul 2018, at 4:13 am, Dan Friedman via use-livecode > wrote: > > Hello! > > Using

Re: Property Inspector, Text Formatting, Text style ->Plain Button?

2018-07-19 Thread Bob Sneidar via use-livecode
I mentioned a day or two ago that the bit of the property inspector that does all the actual dirty work is a tree widget! I think when RunRev switched over to using a tree widget, they lost other functionality in the bargain. Not that the functionality HAD to be lost, but I think they just rewr

Re: drawing a Barcode without a Barcode font

2018-07-19 Thread Mike Bonner via use-livecode
Not sure if it will work for your purpose, but as a test I created for graphic lines, 1 narrow black, 1 wider black, duplicated them and set the blendlevel of the copies so that they're transparent. Grcs are named narrowB, wideB, narrowC and wideC (b for black, c for clear) Then used the followin

Property Inspector, Text Formatting, Text style ->Plain Button?

2018-07-19 Thread Matthias Rebbe via use-livecode
Hi, just noticed again that in the property inspector under text formating there is not the “plain” button/icon anymore to set the text to plain. In LC 6 this button is still there. Is this a bug or are there reasons why this button is not there anymore? What do you think? Regards, Matthias

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
Just one more note: I think this syntax would have been preferrable: insert the script of button "myButton" {in front of | before} group "myDatagrid". The parser would have to determine what the object was that was already in front of the datagrid, if there was any, and "plug in" the new bahav

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
I have been thinking about it, and if you accept that when you set a behavior it's like inserting the script of the behavior object in front of the target (or by your diagram on TOP of the target). So syntactically, it's the complete opposite of what *actually* happens, but in terms of the messa

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > What I did (which actually makes a LOT more sense) is I set the > behavior of the button to the behavior of the datagrid, then I set the > behavior of the datagrid to the long id of the button. That broke it. Your way sounds better to me. If I understand correctly, what you'

Re: drawing a Barcode without a Barcode font

2018-07-19 Thread Bob Sneidar via use-livecode
I think the trick will be drawing large graphics one at a time and properly spaced at several times their finished size, perhaps off screen, then getting a snapshot of the result and scaling it down. Not sure how picky the readers will be. Bob S > On Jul 19, 2018, at 15:06 , Matthias Rebbe v

Re: drawing a Barcode without a Barcode font

2018-07-19 Thread Matthias Rebbe via use-livecode
Currently i am using a special 2of5i barcode font. The font .has only four characters (bars) in its set. The code displays a narrow space (blank) bar when the character is n narrow black bar when N wide space when w wide black bar when W The code can only display a pair number of digits. You c

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
Come to think of it, this IS backwards, but it works. The behavior of group datagrid 1 is by default button id 1005 of stack "revDataGridLibrary" the behavior of button id 1005 of stack "revDataGridLibrary" is stack "RevDataGridLibraryBehaviorsDataGridButtonBehavior" so what your statement *sh

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
Bernd, you are a genius. I apparently have the heirarchy of behaviors backwards. I would have thought that this would set the behavior of ALL datagrids to include the button script. That of course would be disasterous. Bob S > On Jul 19, 2018, at 10:35 , Niggemann, Bernd via use-livecode >

Re: drawing a Barcode without a Barcode font

2018-07-19 Thread dunbarxx via use-livecode
Hi. Curious. So you are creating your own barcode, er, code? That is, you are, say, making three thin lines with thin spaces, and then three thick lines with thick spaces, and storing that pattern somewhere? And then you read that pattern and look up what it refers to? Craig -- Sent from: h

Android, acceleratedRendering and visual effect

2018-07-19 Thread Dan Friedman via use-livecode
Hello! Using LC 9.0.1 (rc1), on android only, if I have acceleratedRendering on, the effect is not applied when doing this: lock screen for visual effect //do something unlock screen with visual effect wipe left //any effect fails However, if acceleratedRendering is off, the visual effect is a

drawing a Barcode without a Barcode font

2018-07-19 Thread Matthias Rebbe via use-livecode
Hi, at the moment i am using a special barcode font “2of5interleaved” to draw/create a Code25/2of5interleaved barcode. The code itself is calcualted by script and then displayed using that barcode font The font only has 4 characters 2 black bars (1one them is twice the width of the other) a

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Niggemann, Bernd via use-livecode
Bob, if you want to use a a behavior for the datagrids make a button with on mouseDoubleUp put the long name of the target end mouseDoubleUp and then set the behavior of your datagrids like this set the behavior of the behavior of the behavior of group "datagrid 1" to the long id of button

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Tom Glod via use-livecode
One of the many reasons I love livecode...control references and message path work so well together ... giving us endless variety of approaches to any task. nice job. see ya bob On Thu, Jul 19, 2018 at 11:09 AM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Correction th

line 1 of the volumes

2018-07-19 Thread Klaus major-k via use-livecode
Hi friends, this came up in the forum: Can we rely on the fact that -> line 1 of the volumes is always the BOOT volume? Thanks in advance! Best Klaus -- Klaus Major http://www.major-k.de kl...@major-k.de ___ use-livecode mailing list use-livecode@

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
Correction the target is still the datagrid. I thought for some reason the target would be the sender. Bob S > On Jul 19, 2018, at 08:00 , Bob Sneidar via use-livecode > wrote: > > The only bugaboo will be when I send selectionChanged. The target will not be > a control of the datagrid, bu

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
Actually Tom, I think I figured out a way around this. I've already put my stack scripts for the subModules into behaviors. By adding a selectionChanged handler in that behavior and checking to see if the dgControl of the target is empty, I can pass selectionChanged for fields and handle it for

Re: TextAlign not working in fields

2018-07-19 Thread Paul Dupuis via use-livecode
Bernd, Thank you. For others following this thread, this fix works! On 7/18/2018 6:49 PM, Niggemann, Bernd via use-livecode wrote: > Hi Paul, > > I hope that Edinburgh will fix the problem. > > In the meantime you could try this workaround for your sample stack from QCC. > > make a button with

Re: android heads up

2018-07-19 Thread Bob Sneidar via use-livecode
What, the one we were beta testing? Bob S > On Jul 18, 2018, at 22:28 , Richard Gaskin via use-livecode > wrote: > > Mark Wieder wrote: > > > I just got notice in another usegroup that Google has restricted the > > use of "android" as part of the package name. If you are using the > > "a

Re: Datagrids and Nested Behaviors

2018-07-19 Thread Bob Sneidar via use-livecode
Hi Tom. I usually find a way around things myself, but in this case, not. I have a main form, where all the datagrids behave the same way on doubleMouseUp, selectionChanged etc. I then have what I call subForms (substacks that detail a given table and it's dependent tables like devices and acc

Re: LiveCode server IDE - the current state of the art?

2018-07-19 Thread Alex Tweedly via use-livecode
I have no idea if this is state of the art or not :-) - but here's what I do ... Short answer : the Livecode IDE plus an FTP client (Filezilla). Longer answer : 99% of what I write for the LC server is standard LC - scriptonly stacks, used as library stacks. I have about 20 lines of LCS -

Re: iOS 12 compatibility (panagiotis merakos)

2018-07-19 Thread panagiotis merakos via use-livecode
Thanks Andrew. I just upgraded the test device to iOS 12 beta 4 and I confirm apps still crash on startup. Sigh :( Best, Panos -- On Wed, Jul 18, 2018 at 6:28 PM, Andrew Bell via use-livecode < use-livecode@lists.runrev.com> wrote: > Based on the fact that my apps are still crashing on load in i

LiveCode server IDE - the current state of the art?

2018-07-19 Thread Keith Clarke via use-livecode
Hi folks, I’m attempting to engage with LiveCode Server after a couple of years since I last played - when the approach was to roll your own IDE (i.e. pick a text editor) and optionally use the RevIgnitor framework. I’d be obliged if anyone could please update me on the current state of the art