Search found 95 matches
- Sat Sep 19, 2015 9:28 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Livecode 8 DP4 doesn't load stack script [solved]
- Replies: 2
- Views: 1433
Livecode 8 DP4 doesn't load stack script [solved]
Livecode 8 is supposed to be the same as 7 with the extra widget stuff. I just downloaded 8DP4 and tried to load a stack I wrote in 7. It looks like the interface is there but the stack script isn't loaded into memory or something. The stack script is there if I open it, but none of the handlers sho...
- Mon Aug 17, 2015 3:02 pm
- Forum: Off-Topic
- Topic: LiveCode 2-year Indy offer - mistimed?
- Replies: 3
- Views: 2493
Re: LiveCode 2-year Indy offer - mistimed?
It worked for me. I'm in that transition zone between beginner and semi-pro so I went ahead and made the investment. I probably would have waited longer otherwise.
- Mon Aug 17, 2015 12:25 am
- Forum: Community Projects
- Topic: Platyvue Project
- Replies: 8
- Views: 7638
Re: Platyvue Project
Hi Matt, Thanks for the presentation at the Users group meeting. It's very cool! I hope you do end up adding some screenshots to this post, because I think it will help people to understand your project better. Happy to see the evolution. Best of luck! Howdy, thanks I really appreciate that. Here a...
- Mon Aug 17, 2015 12:16 am
- Forum: Community Projects
- Topic: Platyvue Project
- Replies: 8
- Views: 7638
Re: Platyvue Project
It looks like it could evolve into an app for tracing the evolution of any kind of sequential process – for example, creating an eLearning course or planning an intentional community. An interesting interactive text<->diagram tool called Proquis AllClear Flowcharter offers a highly intuitive system...
- Fri Aug 14, 2015 9:10 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: variable content is wrong [SOLVED, feature request?]
- Replies: 3
- Views: 1393
Re: variable content is wrong
Figured it out. When I answered all three variables in one string I could see that pSeed had a trailing return. Apparently that didn't bother Livecode when I asked if pSeed was 6 or "6" but it did silently break when I tried to use pSeed to lookup an array. This is not the first time I've spent more...
- Fri Aug 14, 2015 8:48 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: variable content is wrong [SOLVED, feature request?]
- Replies: 3
- Views: 1393
Re: variable content is wrong
This works too. I get the keys I'd expect.
Code: Select all
repeat with tCount = 1 to 100 step 1
put the keys of sMainShort[pDoc][tCount] into tTesting[tCount]
end repeat
- Fri Aug 14, 2015 8:34 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: variable content is wrong [SOLVED, feature request?]
- Replies: 3
- Views: 1393
variable content is wrong [SOLVED, feature request?]
So I've got a function where I passed in some parameters. I'm trying to put the contents of an array into a temp variable using three of the parameters to specify the array position. It seems like two of the three variables work, but one of them doesn't. function resourceRollup pDoc,pSeed,pDirection...
- Tue Jul 21, 2015 2:42 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: mouseMove before mouseDown [FIXED, hilite and/or drag object
- Replies: 6
- Views: 3051
Re: mouseMove before mouseDown [FIXED, hilite and/or drag ob
sturgis, thanks so much! I'm not sure how long it would have taken me to think of combining a wait and grab, but that set me on the right path and now it works correctly :) This is the final script. It hilites/unhilites and drags properly! on mousedown if the cHilited of me is empty then set the cHi...
- Sun Jul 19, 2015 5:51 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: mouseMove before mouseDown [FIXED, hilite and/or drag object
- Replies: 6
- Views: 3051
mouseMove before mouseDown
I posted this in the open forum but didn't get any traction. I've got a text field that represents an object. I want to either click on it, hiliting it, or drag it, repositioning it. However, I keep getting mouseMove messages before mouseDown, regardless of the fact that the mouse isn't moving. This...
- Fri Jul 17, 2015 3:00 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: mouseMove before mouseDown [FIXED, hilite and/or drag object
- Replies: 6
- Views: 3051
mouseMove before mouseDown [FIXED, hilite and/or drag object
I've got a text field that represents an object. I want to either click on it, hiliting it, or drag it, repositioning it. However, I keep getting mouseMove messages before mouseDown, regardless of the fact that the mouse isn't moving. This is a script that sort of works. It's got a couple problems. ...
- Tue Apr 14, 2015 5:23 am
- Forum: User Groups and Events
- Topic: Virginia/DC area LiveCoders?
- Replies: 10
- Views: 10774
Re: Virginia/DC area LiveCoders?
Anybody still in the Virginia/DC area?
- Mon Mar 30, 2015 2:40 am
- Forum: Community Projects
- Topic: Platyvue Project
- Replies: 8
- Views: 7638
Re: where to propose collaboration on an open source project
Oh, yeah right. Here is the thing https://github.com/matthewmaier/platyvue
- Sun Mar 29, 2015 7:01 pm
- Forum: Community Projects
- Topic: Platyvue Project
- Replies: 8
- Views: 7638
Platyvue Project
I started learning livecode so that I could build a prototype of an idea I have for documenting open source hardware projects. It's complicated enough that it requires a dedicated application. I've shown the idea to other people and they've liked it, but they don't work in livecode. So I'd like to s...
- Sun Mar 22, 2015 11:46 pm
- Forum: rTree
- Topic: rTree documentation
- Replies: 0
- Views: 2615
rTree documentation
rTree is poorly documented so I'm going to start collecting information that I need to understand and work with rTree that I had to search for. I want to send a message to my main application's engine when the user expands a node, so I used the nodeExpanded handler in the rTree object's script. But ...
- Sun Mar 22, 2015 11:29 pm
- Forum: rTree
- Topic: getting started with rTree
- Replies: 1
- Views: 4257
Re: getting started with rTree
This fixed the problem for me. Open the mainstack that you want to use rTree in, then also open the rTree engine file. Drag the rTree object onto a card, which makes a copy of it. Then open the property inspector for the rTree engine and under "basic properties" use the pulldown to select your mains...