Bug in the inspector palette

2017-04-17 Thread Tore Nilsen via use-livecode
I have come across what must be a bug in the IDE, in the inspector palette to be precise. I have a script where I set some text properties of the templateField on the fly, like font, size and color. These settings also affect the objects of the “Basic" pane in the inspector, changing the

Re: [OT] Phishing prevention

2017-04-17 Thread Bob Sneidar via use-livecode
Thanks Jacque. This is why it is never one time too many to say: DON'T CLICK THE LINK IN THE EMAIL! Of course I clicked the link to get to your article, sooo... yeah. Bob S > On Apr 14, 2017, at 21:04 , J. Landman Gay via use-livecode > wrote: > > This

Checkbox Display Bug

2017-04-17 Thread Bob Sneidar via use-livecode
Hi all. I added to the bug 18298 but this may be a new bug. Once a checkbox has been interacted with in the Windows environment, the showBorder is ALWAYS on even if the property is turned off in the object inspector. It also shows up with a border in OS X dev environment which normally will

Re: Downloads - Immodest Proposal

2017-04-17 Thread Bob Sneidar via use-livecode
Last I checked you have to pay a licensing fee for every copy of an app you distribute, even if it is internal. At least for Filemaker itself. Not sure about filemaker for livecode, whatever that is. Bob S > On Apr 15, 2017, at 16:48 , Mark Wieder via use-livecode >

Re: Bug in the inspector palette

2017-04-17 Thread Paul Hibbert via use-livecode
I can confirm your findings, also affects LC8.1.4 (rc 1). Paul MacOS Sierra 10.12.4 > On 17 Apr 2017, at 02:08, Tore Nilsen via use-livecode > wrote: > > I have come across what must be a bug in the IDE, in the inspector palette to > be precise. I have a

Re: [OT] Phishing prevention

2017-04-17 Thread J. Landman Gay via use-livecode
I use different browsers for different things. I opened the link with a browser that has everything turned off. No javascript, no cookies, no images. Plus the link was posted to a trustworthy site in the first place so I felt fairly safe. It didn't arrive in email. On April 17, 2017

Re: Initializing the segmented control

2017-04-17 Thread William Prothero via use-livecode
Ok, got it! set the hilitedItemNames of widget "timerNav" to "timer" “timer” is one of the itemNames. I guess it just needed for me to take a dinner break. Best, Bill > On Apr 17, 2017, at 7:45 PM, William Prothero via use-livecode > wrote: > > Mike: > thanks.

The selectedObjects - is it a container or not?

2017-04-17 Thread Graham Samuel via use-livecode
I have a stack where the user is allowed to select vector objects. For this example, let’s assume some objects are already selected. I am using LC 8.1.4 rc1 on a Mac running Sierra, and I have a bit of code that says in part: if the selectedObjects is not empty then repeat with i =

Re: [OT] Phishing prevention

2017-04-17 Thread Dr. Hawkins via use-livecode
On Mon, Apr 17, 2017 at 9:26 AM, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > I use different browsers for different things. I opened the link with a > browser that has everything turned off. No javascript, no cookies, no > images. I got tipped off to slimjet, a

Re: Initializing the segmented control

2017-04-17 Thread William Prothero via use-livecode
Mike: thanks. I’ve been trying to avoid getting into the widget modification part of livecode. I just figured there must be an easy way to initialize the widget’s selection. I did look at the dictionary API entry and it doesn’t tell me anything about how I would code an initialization to a

cannot correctly check keys of array stored as a custom prooperty

2017-04-17 Thread Dr. Hawkins via use-livecode
I have an elaborate routine that sorts through my stacks to find the needed variables, and it saves the array, with the name as a key and the variable type as a property, in my master stack. ("set the swizzle of stack whosit to myArray") This gets used as an integrity check when opening data

Re: cannot correctly check keys of array stored as a custom prooperty

2017-04-17 Thread Dr. Hawkins via use-livecode
On Mon, Apr 17, 2017 at 3:54 PM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Doesn't the script editor's variable viewer now display the elements of an > array? Can you check it there? Yep. And the element shows there, and also in the property inspector for the

Re: Initializing the segmented control

2017-04-17 Thread Mike Kerner via use-livecode
Go into the API, then in the picker on the top left, pick "Segmented Control". There is one message and a bunch of properties. Also, if you get stuck, some time, all the widgets have their source available, and since they're written with LCB, it's pretty easy to read (the documentation for each

Re: The selectedObjects - is it a container or not?

2017-04-17 Thread dunbarx via use-livecode
Hi. If I have three buttons on a card, named "b1", "b2" and "b3", and in the script of "b3" I have: on mouseUp select btn "b1" and btn "b2" answer the selectedObjects end mouseUp I get both selected buttons without issue.. Note this is in v. 6.7.9. But the "selectedObjects" does not seem

Re: cannot correctly check keys of array stored as a custom prooperty

2017-04-17 Thread Bob Sneidar via use-livecode
Doesn't the script editor's variable viewer now display the elements of an array? Can you check it there? Bob S On Apr 17, 2017, at 15:11 , Dr. Hawkins via use-livecode > wrote: I have an elaborate routine that sorts through

Initializing the segmented control

2017-04-17 Thread William Prothero via use-livecode
Folks: I’ve tried the obvious, but:: How do I initialize the segmented control? I’ve tried: there are 3 items named analysis,valveSel,timer set the hilited of control "timerNav" of this cd to “ timer” set the hilitedItems of widget "timerNav" to "timer" set the hilited of widget "timerNav" to

iPhoneComposeMail

2017-04-17 Thread John Dixon via use-livecode
Is this broken ? Used to use it no problem... now the stack is crashing LC 8.1.0 dixie ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: The selectedObjects - is it a container or not?

2017-04-17 Thread J. Landman Gay via use-livecode
I have a bit of code that says in part: if the selectedObjects is not empty then repeat with i = 1 to the number of lines of the selectedObjects … This results in an error “source is not a container”. OTOH, if I change the second line to repeat with i = 1 to the number

Re: cannot correctly check keys of array stored as a custom prooperty

2017-04-17 Thread Bob Sneidar via use-livecode
Also, (and I know you will not refactor now) but sqlYoga has these checks built in. It also has commands to get the schema of the database, as well as the schema of a table, which will return as an element of that array, an array with each field and it's type, length, etc. Bob S > On Apr