AW: How to assign Hi-DPI images as button icons?

2016-10-28 Thread Tiemo Hollmann TB
-DPI images as button icons? On 28/10/2016 10:29, Tiemo Hollmann TB wrote: > Hello, > > I made my first tests on windows with 2 sets of images, standard and > @extra-high, which works fine. > > What I don't see is, how to assign two sets of images as button icons > for e

Re: How to assign Hi-DPI images as button icons?

2016-10-28 Thread Peter TB Brett
On 28/10/2016 10:29, Tiemo Hollmann TB wrote: Hello, I made my first tests on windows with 2 sets of images, standard and @extra-high, which works fine. What I don't see is, how to assign two sets of images as button icons for each state of the button. I can't refer button icons to a

How to assign Hi-DPI images as button icons?

2016-10-28 Thread Tiemo Hollmann TB
Hello, I made my first tests on windows with 2 sets of images, standard and @extra-high, which works fine. What I don't see is, how to assign two sets of images as button icons for each state of the button. I can't refer button icons to an external filename, only to images, which ar

Re: Custom radio button icons

2015-10-13 Thread J. Landman Gay
Thanks for all the replies, guys, I've tinkered with them all. I'd considered a script similar to Bernd's, but putting spaces before the label text works too and is a little easier. I had no idea you could use tabs in a button label, and it worked great with one button but had an entirely diffe

Re: Custom radio button icons

2015-10-13 Thread BNig
Kind regards Bernd -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Custom-radio-button-icons-tp4697400p4697413.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Re: Custom radio button icons

2015-10-13 Thread Paul Hibbert
Sorry, that should have been Label, not name. Paul > On 13 Oct 2015, at 14:02, Paul Hibbert wrote: > > Instead of spaces you can also use 'tabs'… > > set the name of bin “myRadioButton" to tab & “myButton” > > I don’t know if there’s a way to adjust the tab though! > > Paul > >> On 13 Oct 2

Re: Custom radio button icons

2015-10-13 Thread Paul Hibbert
Instead of spaces you can also use 'tabs'… set the name of bin “myRadioButton" to tab & “myButton” I don’t know if there’s a way to adjust the tab though! Paul > On 13 Oct 2015, at 13:51, Scott Rossi wrote: > > The only way I could figure out how to do this is to set the textAlign to > left,

Re: Custom radio button icons

2015-10-13 Thread Scott Rossi
The only way I could figure out how to do this is to set the textAlign to left, the iconGravity to left, and insert a fixed amount of space characters before the button's text label. There really should be easier way to do this, like having a separate iconMargin property to position the icon indep

Re: Custom radio button icons

2015-10-13 Thread Devin Asay
> On Oct 13, 2015, at 2:07 PM, J. Landman Gay wrote: > > I need to assign a custom icon for a whole lot of radio buttons. I want them > to use the same spacing as the default radio button: icon at the left, a > small margin, then the button text. > > Assigning a custom icon draws it at the ri

Custom radio button icons

2015-10-13 Thread J. Landman Gay
I need to assign a custom icon for a whole lot of radio buttons. I want them to use the same spacing as the default radio button: icon at the left, a small margin, then the button text. Assigning a custom icon draws it at the right. Setting the textalign to "right" moves the icon to the correc

Re: Button icons

2015-05-30 Thread Richmond
. :-) Exactly! Sorry couldn't resist. Martin -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Button-icons-tp4692680p4692730.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-l

Re: Button icons

2015-05-30 Thread Dr. Hawkins
On Sat, May 30, 2015 at 6:13 AM, Martin Koob wrote: > And none of his buttons had icons which didn't help. :-) > Not needed; he's an iconic figure in his own right. :) -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___ use-livecode mailing list use

Re: Button icons

2015-05-30 Thread Martin Koob
Sorry couldn't resist. Martin -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Button-icons-tp4692680p4692730.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-liv

Re: Button icons

2015-05-30 Thread Richmond
On 30/05/15 00:10, Klaus major-k wrote: Hi Richmond, Am 29.05.2015 um 22:09 schrieb Richmond : On 29/05/15 17:33, Klaus major-k wrote: Hi RIchmond, Am 29.05.2015 um 16:28 schrieb Richmond : So, I have a stack with one button and an image "Blob.png", But none of these scripts inside the bu

Re: Button icons

2015-05-29 Thread Klaus major-k
Hi Richmond, > Am 29.05.2015 um 22:09 schrieb Richmond : > > On 29/05/15 17:33, Klaus major-k wrote: >> Hi RIchmond, >> >>> Am 29.05.2015 um 16:28 schrieb Richmond : >>> >>> So, I have a stack with one button and an image "Blob.png", >>> >>> But none of these scripts inside the button work: >>

Re: Button icons

2015-05-29 Thread Richmond
On 29/05/15 17:33, Klaus major-k wrote: Hi RIchmond, Am 29.05.2015 um 16:28 schrieb Richmond : So, I have a stack with one button and an image "Blob.png", But none of these scripts inside the button work: on mouseUp set the icon of me to img 1003 end mouseUp on mouseUp set the icon of m

Re: Button icons

2015-05-29 Thread Bob Sneidar
I go one better. I set the source of the button to a graphic file on the disk, so that I can change the icon simply by dropping another of the same size and name in the Images folder for that project. This way if someone does not like my interface, I can have someone design better looking elemen

Re: Button icons

2015-05-29 Thread Randy Hengst
Also…set the icon of me to the ID of image “myIconImage" be well, randy Randy Hengst www.classroomFocusedSoftware.com > On May 29, 2015, at 9:33 AM, Klaus major-k wrote: > > Hi RIchmond, > >> Am 29.05.2015 um 16:28 schrieb Richmond : >> >> So, I have a stack with one button and an ima

Re: Button icons

2015-05-29 Thread Klaus major-k
Hi RIchmond, > Am 29.05.2015 um 16:28 schrieb Richmond : > > So, I have a stack with one button and an image "Blob.png", > > But none of these scripts inside the button work: > > on mouseUp > set the icon of me to img 1003 > end mouseUp > > on mouseUp > set the icon of me to img ID 1003 > en

Button icons

2015-05-29 Thread Richmond
So, I have a stack with one button and an image "Blob.png", But none of these scripts inside the button work: on mouseUp set the icon of me to img 1003 end mouseUp on mouseUp set the icon of me to img ID 1003 end mouseUp on mouseUp set the icon of me to img "Blob.png" end mouseUp LiveCo

Re: Radio button icons

2013-05-16 Thread Peter Haworth
;false") > > > Does the "hoverIcon" or "armedIcon" work OK? > > > Craig Newman > > > > -----Original Message- > From: Peter Haworth > To: How to use LiveCode > Sent: Wed, May 15, 2013 10:06 pm > Subject: Radio button icons > &g

Re: Radio button icons

2013-05-15 Thread dunbarx
l Message- From: Peter Haworth To: How to use LiveCode Sent: Wed, May 15, 2013 10:06 pm Subject: Radio button icons I'm using my own icons for a grouped set of radio buttons for the first time. I assumed that if I specified a hilitedicon for each of them that when I clicked on one to sele

Radio button icons

2013-05-15 Thread Peter Haworth
I'm using my own icons for a grouped set of radio buttons for the first time. I assumed that if I specified a hilitedicon for each of them that when I clicked on one to select it, it would show the hilitedicon then go back to to the standard icon when clicked again, but that doesn't happen - I jus