Search found 26 matches

by nlexa
Thu Dec 15, 2011 12:11 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Drag and drop Tiles
Replies: 0
Views: 1227

Drag and drop Tiles

DragNDrop.zip I've made this wee program. You can double click on each tile and type some text, hit enter/return to exit typing. You can click and drag the tiles over the other tiles and they will shuffle. Under normal conditions it works fairly well BUT: If you grab a tile and start dragging it ar...
by nlexa
Thu Dec 01, 2011 3:15 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Group Headings Datagrid Form
Replies: 0
Views: 1332

Group Headings Datagrid Form

Say I had the following comma delimited list of information: Residential,Ashburton,1,2,0,1 Residential,Brighton,2,0,0,0 Residential,Cashmere,3,1,2,1 Residential,Dallington,5,0,0,1 Rural,Clyde,1,0,0,0 Rural,Rangiora,5,2,0,0 Rural,Sefton,4,3,2,1 Industrial,Opawa,2,0,0,0 Industrial,Sydenham,0,1,0,0 I w...
by nlexa
Wed Nov 30, 2011 5:05 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Datagrid behaviour script
Replies: 2
Views: 2135

Re: Datagrid behaviour script

Any way I can name the script that governs row behaviour to something different ? When you have a lot of those behaviour scripts up and they are all named the same thing, "Behavior Script" it does get confusing. All you have to do is change the name of the button the script is on from "Behaviour Sc...
by nlexa
Thu Oct 06, 2011 12:04 am
Forum: Android Deployment
Topic: Resize Stack -- SOLVED
Replies: 6
Views: 5683

Re: Resize Stack

thanks jacque :mrgreen:
by nlexa
Wed Oct 05, 2011 4:11 am
Forum: Android Deployment
Topic: Resize Stack -- SOLVED
Replies: 6
Views: 5683

Re: Resize Stack

I worked it out! But maybe you can explain to me why it works: I had to "Lock size and position" for all the images. I remember something mentioned about that in the 2011 runrev developers conference when they were doing the tutorial and the speaker was demonstrating how to resize and import images....
by nlexa
Tue Oct 04, 2011 3:05 am
Forum: Android Deployment
Topic: Resize Stack -- SOLVED
Replies: 6
Views: 5683

Resize Stack -- SOLVED

I was making an application for mobile devices and wrote some custom resizing functions and commands loosely based on TickedOff-stage9. When I tested it in the android sdk emulator, it didn't look so good. So I tried the TickedOff-stage9.livecode file to see how that coped on the emulator; It didn't...
by nlexa
Fri Aug 19, 2011 3:22 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Minimise with windowshape -- SOLUTION
Replies: 4
Views: 3744

Re: Minimise with windowshape -- SOLUTION

I've tried all the various approaches above and have found my own solution - shorter and perhaps more elegant. on preOpenStack set the windowShape of this stack to 1195 --must be first or the minimise wont work set the decorations of this stack to "title" end preOpenStack if you add show this stack ...
by nlexa
Tue Aug 09, 2011 1:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: The send command vs the call command
Replies: 8
Views: 5151

Re: The send command vs the call command

Thanks Klaus! I thought that might be the case because I tried using: on mouseUp go to card 1 send thisCommand to field "theField" of card 1 end mouseUp this works because it goes to the card before it sends the message to it. In any case I had to hear it from someone else to be sure that: The "worl...
by nlexa
Mon Aug 08, 2011 5:22 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: The send command vs the call command
Replies: 8
Views: 5151

Re: The send command vs the call command

Sendcommandproblem.zip
(903 Bytes) Downloaded 234 times
thanks guys. I will be interested to see what I did wrong.
by nlexa
Mon Aug 08, 2011 12:25 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: The send command vs the call command
Replies: 8
Views: 5151

Re: The send command vs the call command

I would love to upload the .livecode file but the file extension is not allowed. neither is .txt and I can't trick it with .jpg The difference between send and call is how they handle object references in the handler that is triggered by the sent message. If the message is sent by the send command, ...
by nlexa
Fri Aug 05, 2011 2:57 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: The send command vs the call command
Replies: 8
Views: 5151

The send command vs the call command

Make a new stack Make 2 cards On card 1 create a text field and name it "theField" In field "theField" script write the custom command: on thisCommand put "Blue" into field "theField" end thisCommand On card 2 create a button on mouseUp send "thisCommand" to field "theField" of card 1 end mouseUp Pr...

Go to advanced search