Thanks Jean-Marc,
Found the problem.
Search found 7 matches
- Sun Jul 08, 2018 6:40 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Reorder group elements
- Replies: 11
- Views: 12412
- Fri Jul 06, 2018 11:19 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Image as Tooltip?
- Replies: 7
- Views: 7594
Re: Image as Tooltip?
You might want to try using an "on mouseMove" at the card level.
on mouseMove
local tObj
put the short name the mouseControl into tObj
if exists(img tObj of stack "iconStack") then
[show the stack with the correct image]
end if
end mouseMove
Gets a bit more complex if you have grouped ...
on mouseMove
local tObj
put the short name the mouseControl into tObj
if exists(img tObj of stack "iconStack") then
[show the stack with the correct image]
end if
end mouseMove
Gets a bit more complex if you have grouped ...
- Fri Jul 06, 2018 10:49 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Reorder group elements
- Replies: 11
- Views: 12412
Re: Reorder group elements
Here's a demo of drag/drop to reorder a list of grouped items. It uses graphics as the list items for now, but should support any type of list item as well as mixed list items or different sizes.
Any feedback is welcome and if someone has solved this already, I'd love to see the code if available.
Any feedback is welcome and if someone has solved this already, I'd love to see the code if available.
- Fri Jul 06, 2018 10:46 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: OSX-style push reorder of objects
- Replies: 2
- Views: 4607
Re: OSX-style push reorder of objects
Might be too late by now, but here's a demo of the drag/drop list items to reorder. Needs some animation too, but see if this helps.
- Fri Jul 06, 2018 10:43 pm
- Forum: Talking LiveCode
- Topic: Reordering the rows or lines in a list field
- Replies: 9
- Views: 8774
Re: Reordering the rows or lines in a list field
Nice work Simon.
I like the idea of using a single field for some complex tasks.
Here is an example of a group list (using graphics as the list items for demo) where the drag and drop to reorder the list is implemented. Probably needs more comments, but maybe you will find it useful ...
I like the idea of using a single field for some complex tasks.
Here is an example of a group list (using graphics as the list items for demo) where the drag and drop to reorder the list is implemented. Probably needs more comments, but maybe you will find it useful ...
- Wed Jul 04, 2018 3:01 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Reorder group elements
- Replies: 11
- Views: 12412
Re: Reorder group elements
Thanks Jacque,
That’s great advice. I do use that command to reorder the list once an item is dropped into its new place. Of course this assumes the layers are supposed to be from top to bottom on the y-axis. Can’t think of a reason not to have it like that.
Anyway, the behavior is done and I’ll ...
That’s great advice. I do use that command to reorder the list once an item is dropped into its new place. Of course this assumes the layers are supposed to be from top to bottom on the y-axis. Can’t think of a reason not to have it like that.
Anyway, the behavior is done and I’ll ...
- Mon Jul 02, 2018 4:22 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Reorder group elements
- Replies: 11
- Views: 12412
Re: Reorder group elements
I'm sure after three years Kevin, this has been solved. Any luck on a comprehensive solution? I'm working on this now for fun and just need to solve the scrolling issue.
Thanks,
E
Thanks,
E