Search found 3324 matches

by mwieder
Fri Feb 03, 2012 6:56 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Sockets! Confused..
Replies: 6
Views: 4514

Re: Sockets! Confused..

What sturgis said. I think the main issue is that you're not queueing up another read after getting the first line's data. But the handler name "gotSocketData" is also maybe a bit confusing. Your processData routine is what gets fired when a line of data has come in - gotSocketData is the callback t...
by mwieder
Fri Feb 03, 2012 6:14 pm
Forum: Android Deployment
Topic: Android 4.x? (And the Novo 7)
Replies: 15
Views: 15954

Re: Android 4.x? (And the Novo 7)

At first glance, my guess is that the MIPS processor thing will kill this. I wouldn't expect binaries to be portable from ARM devices. Just a guess, though, since I don't have my hands on a Novo 7.
by mwieder
Thu Feb 02, 2012 6:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Writing text to an XML file
Replies: 1
Views: 1637

Re: Writing text to an XML file

Writing to a text file is pretty easy. There are (at least) two different ways: ask file -- see where the user wants to store the file if it is not empty then put tText into url ("file:" & tPath) end if ask file -- see where the user wants to store the file if it is not empty then open file tPath wr...
by mwieder
Thu Feb 02, 2012 6:26 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Auto Code Complete
Replies: 6
Views: 4028

Re: Auto Code Complete

rotfl. But let me point out that the open-source glx2 script editor for LiveCode *does* do autocompletion.

http://www.bitbucket.org/mwieder/glx2/downloads
by mwieder
Thu Feb 02, 2012 1:19 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Group bug?
Replies: 7
Views: 4774

Re: Group bug?

In addition, it's bad form to name objects "Field" or "Button" or other reserved words.
by mwieder
Wed Feb 01, 2012 7:14 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Considering LiveCode
Replies: 7
Views: 5104

Re: Considering LiveCode

wunder- If you're looking at the conversion process from VB6 to something else, you might also want to see http://lessons.runrev.com/s/lessons/m/4071/l/7389-visual-basic-to-revtalk-cheat-sheet . The formatting came out a bit weird and I should probably update it some day, but it's a start. The VB6-t...
by mwieder
Tue Jan 31, 2012 11:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Text Entry Field
Replies: 4
Views: 2766

Re: Text Entry Field

Sure. Put a returnInField (and an enterInField for good measure) handler in the script of the text field. Do your processing in there and *don't* pass the returnInField message at the end of the handler.
by mwieder
Thu Jan 26, 2012 6:13 pm
Forum: Talking LiveCode
Topic: Non-UI objects?
Replies: 1
Views: 1357

Re: Non-UI objects?

I wish there were. For the moment behavior script buttons are as close as it comes.
by mwieder
Wed Jan 25, 2012 8:43 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: personal licence
Replies: 14
Views: 6366

Re: personal licence

Here's the issue, though... I don't think the point of a personal license is to get a complete set of deployment options. If you're thinking that far ahead then a personal license isn't what you're interested in. I think of a personal license as more of an option to get started developing. There are...
by mwieder
Wed Jan 25, 2012 7:12 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: personal licence
Replies: 14
Views: 6366

Re: personal licence

Mark-

The basic personal license is $99. That provides for OSX and Windows deployment. Other deployment targets can be added on as desired/needed.
by mwieder
Tue Jan 24, 2012 9:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: chatbot?
Replies: 5
Views: 3509

Re: chatbot?

letter for letter in a slow order. Instead of the line I typed earlier put "Hello, ok what do you know about" && trigger & cr after field "chat" try something like repeat for each char tchar in ("Hello, ok what do you know about" && trigger) put tchar after field "chat" wait random(1000) millisecon...
by mwieder
Tue Jan 24, 2012 9:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: chatbot?
Replies: 5
Views: 3509

Re: chatbot?

Is a real chat system possible with LC? Yes, but it's much more involved. Bjornke has a full client/server chat system up that we use for real-time interactions. But the coding (especially the internet socket handling) is not for the faint of heart. Don't rule it out yet, but think of it as somethi...
by mwieder
Tue Jan 24, 2012 9:26 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: chatbot?
Replies: 5
Views: 3509

Re: chatbot?

Do you need an actual chatbox system (multiuser, server/client, internet-enabled, etc)? or just a self-contained system on a computer where the user types something in and your program generates a reply locally? If it's the latter, then you can check a list of trigger words easily with something lik...
by mwieder
Mon Jan 23, 2012 9:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Old product names...
Replies: 3
Views: 2164

Re: Old product names...

Well, yes, but it's old and buggy. Don't tell anyone, but I don't actually use it myself. I just edit text files locally, ftp them to the server, and hope they work.
by mwieder
Mon Jan 23, 2012 7:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: scaling an image only works when angle is near 0?
Replies: 5
Views: 3595

Re: scaling an image only works when angle is near 0?

P.S. Just for fun, I tried a graphic out there, and changing the angle property has no effect at all. Wasn't the angle property originally /only/ for graphics? And now that's been removed? Ken- One of the weirder parts of the language. Check out the "rotate" command for images instead of setting th...

Go to advanced search