Search found 148 matches

by Randy Hengst
Sat Apr 27, 2013 11:24 pm
Forum: Off-Topic
Topic: Need some help from OS X users
Replies: 6
Views: 7181

Re: Need some help from OS X users

OK, OSX7.4

The app "snapped" but I have no idea where the picture went on my hard drive.
by Randy Hengst
Wed Apr 24, 2013 3:17 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: What am I doing wrong here?
Replies: 6
Views: 4127

Re: What am I doing wrong here?

I'd be happy to take a look, too. But the link to your stack didn't work.

be well,
randy
by Randy Hengst
Sat Apr 13, 2013 1:00 am
Forum: Windows
Topic: Prevent Arrow Keys Changing Cards
Replies: 5
Views: 5877

Re: Prevent Arrow Keys Changing Cards

I've used the following in the IDE when I made stacks with cards larger than my screen. hth, randy hengst on arrowKey theKey switch theKey case "down" if the optionKey is "down" and the shiftKey is "down" then move this stack relative 0,10 end if break case "up" if the optionKey is "down" and the sh...
by Randy Hengst
Mon Mar 25, 2013 1:49 pm
Forum: Talking LiveCode
Topic: Standard practice - desktop applications
Replies: 5
Views: 3569

Re: Standard practice - desktop applications

I just use separate groups... optionsGroup, instructionsGroup, etc... and show an hide them on the card. As part of the call I set the level to top.

be well,
randy
by Randy Hengst
Wed Mar 20, 2013 12:03 am
Forum: iOS Deployment
Topic: Standalone Application Testing
Replies: 14
Views: 10222

Re: Standalone Application Testing

I use AirLaunch and find it very user friendly.

http://www.hyperactivesw.com/airlaunch/index.html

be well,
randy
by Randy Hengst
Sat Feb 23, 2013 12:14 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Using a number as a string vs numeral
Replies: 14
Views: 8098

Re: Using a number as a string vs numeral

I'd do this by naming the graphics with a word appended to the number... 1matrix, 2matrix, etc. Then in your code on mouseUp set the backgroundColor of graphic ("23" & "Matrix") to "red" end mouseUp OR on mouseUp repeat with x = 1 to 100 set the backgroundColor of graphic (x & "Matrix") to "100,100,...
by Randy Hengst
Mon Feb 18, 2013 3:12 pm
Forum: iOS Deployment
Topic: Lc 5.5.4 Xcode 6 all good but ios browser bug?
Replies: 8
Views: 5822

Re: Lc 5.5.4 Xcode 6 all good but ios browser bug?

Just a quick thought... I've had that crash happen during development when I left the old version of the app on the iPad and let the install process replace it. So, now I manually delete a version of the app before I put the new one on the iPad.
by Randy Hengst
Wed Feb 13, 2013 10:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Director to Livecode...
Replies: 7
Views: 4807

Re: Director to Livecode...

You should also take a quick look at:

http://www.runrev.com/developers/docume ... rs-course/

be well,
randy
by Randy Hengst
Wed Jan 02, 2013 10:56 pm
Forum: iOS Deployment
Topic: Distributing an app
Replies: 12
Views: 7086

Re: Distributing an app

I use AirLaunch by HyperActive Software...

http://www.hyperactivesw.com/airlaunch/index.html

be well,
randy
by Randy Hengst
Sun Dec 30, 2012 4:50 pm
Forum: iOS Deployment
Topic: drag a line of text
Replies: 3
Views: 2711

Re: drag a line of text

Itay and Richard... I didn't know that the ability to drag a line of text within a field object was default behavior. I can't see that property setting anywhere. Is that something available in iOS that I've never seen? If so, that would be cool. In projects not developed for iOS, I've made use of Sc...
by Randy Hengst
Fri Nov 16, 2012 3:41 am
Forum: Talking LiveCode
Topic: Unable to send mouseup message from openStack handler
Replies: 11
Views: 7483

Re: Unable to send mouseup message from openStack handler

I've been able to duplicate the problem that jbinder described. I made a new stack and put this script in the stack script on openStack answer "Open Stack" send "mouseUp" to button "Load" of card 1 of this stack end openStack I made one button called "Load" and placed this script in the button scrip...
by Randy Hengst
Thu Nov 08, 2012 10:15 pm
Forum: iOS Deployment
Topic: iOS6 / iPhone5 app crashes
Replies: 24
Views: 16345

Re: iOS6 / iPhone5 app crashes

Dave, I just heard my first concern today about the iPad 4... I have tested on the new big screen iPod and the apps work there... but, I don't own an iPad4 to test with. I also posted a question to the use list where the question also came up. I've built with LC 5.5.1 and Xcode 4.4.1 ... all my apps...
by Randy Hengst
Sun Oct 28, 2012 5:23 pm
Forum: Talking LiveCode
Topic: Sorting Arrays numericly
Replies: 6
Views: 5785

Re: Sorting Arrays numericly

How about this... similar to what Klauss suggested on generateLotteryNumbers firstNumber,lastNumber local tTheNumbers put empty into tTheNumbers repeat with theNumber = firstNumber to lastNumber -- create the list of lottery numbers -- this way there will be no repeated numbers put theNumber & "," a...
by Randy Hengst
Mon Oct 15, 2012 12:54 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to make a field Caps-Only
Replies: 7
Views: 5914

Re: How to make a field Caps-Only

I'd put this script in the field where the user is entering text....

on keyDown theKey
put toUpper(theKey) into selection
end keyDown

Go to advanced search