Search found 1319 matches

by Dixie
Sat May 07, 2016 12:30 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to limit data entry to only lowercase letters?
Replies: 13
Views: 7898

Re: How to limit data entry to only lowercase letters?

Bernd...:-) You are splitting hairs.
'paul_gr's' script did just what the OP asked for when he replied... the OP did not ask for other things to be taken into consideration until later on in the post.
by Dixie
Sat May 07, 2016 12:25 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to limit data entry to only lowercase letters?
Replies: 13
Views: 7898

Re: How to limit data entry to only lowercase letters?

Hi Bernd...

Paul_gr's script does give lowercase and not uppercase !...:-)
His script is correct as it stands
by Dixie
Sat May 07, 2016 11:00 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to limit data entry to only lowercase letters?
Replies: 13
Views: 7898

Re: How to limit data entry to only lowercase letters?

cooper_tim13...

The script posted by 'paul_gr' does work, and is a very nice solution to the problem you wanted solving. I would suggest that you look in the dictionary and read the entry for 'matchText'...
by Dixie
Fri May 06, 2016 5:20 am
Forum: HTML5
Topic: Successful test
Replies: 78
Views: 105145

Re: Successful test

Herman... that is excellent !...:-)
by Dixie
Wed Apr 27, 2016 6:58 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to get the file name path in an variable
Replies: 2
Views: 1901

Re: How to get the file name path in an variable

The following would put the full path of the file that you choose into the messagebox... Is this what you want to do ?

Code: Select all

on mouseUp
   answer file "Select the file" with type "*"
   put it
end mouseUp
by Dixie
Mon Apr 25, 2016 7:19 am
Forum: iOS Deployment
Topic: iOS Imported Photos
Replies: 3
Views: 3038

Re: iOS Imported Photos

Yes, No, Yes...:-)
by Dixie
Sun Apr 24, 2016 10:00 am
Forum: Multimedia
Topic: Many ways to animate
Replies: 19
Views: 13687

Re: Many ways to animate

There are indeed many ways to animate... this example was written by John Craig, a couple of years ago... it is liveCode and does not use Malte's animation engine

https://www.youtube.com/watch?v=a_716ei8WOo
by Dixie
Mon Apr 18, 2016 10:44 am
Forum: Databases
Topic: Building app for both standalone & client/server - which Db?
Replies: 2
Views: 3148

Re: Building app for both standalone & client/server - which

I guess it is a personal choice... mine is sqlIte and mySql... both work well with liveCode and if there are little bits that you are getting confused about with your sql syntax then the w3s sql school tutorial is a great help...:-)
by Dixie
Tue Apr 12, 2016 8:19 pm
Forum: iOS Deployment
Topic: Licence Problems !
Replies: 0
Views: 2049

Licence Problems !

Screen Shot 2016-04-12 at 20.17.41.png There are the bugs in LC 8.0 to get it to get it to even build a standalone... LC 8.0.0 (RC1) has been released without fixing those bugs, just a couple of workarounds published in the quality control centre... And now with a 'new' indy licence, so that I can ...
by Dixie
Tue Apr 12, 2016 2:05 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Make Hyperlinks active
Replies: 31
Views: 14885

Re: Make Hyperlinks active

Never heard of em.
they make you itch...:-)
by Dixie
Mon Apr 11, 2016 3:27 pm
Forum: iOS Deployment
Topic: codesigning problem after update to OS X 10.11
Replies: 36
Views: 25533

Re: codesigning problem after update to OS X 10.11

Screen Shot 2016-04-11 at 15.19.02.png
I guess then the question is.. "When will dp17 appear ?"
by Dixie
Sun Apr 10, 2016 10:16 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Make Hyperlinks active
Replies: 31
Views: 14885

Re: Make Hyperlinks active

As Klaus said... 'Post your scripts"
by Dixie
Sun Apr 10, 2016 10:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Make Hyperlinks active
Replies: 31
Views: 14885

Re: Make Hyperlinks active

bbhank...

try this stack
by Dixie
Sun Apr 10, 2016 11:13 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Make Hyperlinks active
Replies: 31
Views: 14885

Re: Make Hyperlinks active

look at linkclicked in the dictionary.. for example, the handler below was placed in the stack script... In the text of a fld , i put "http://www.bbc.co.uk" and made the address a link... lock the text of the field... on linkClicked pLink -- open the URL stored with the clicked text launch url pLink...
by Dixie
Tue Apr 05, 2016 10:09 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Detect app activation (focus) [SOLVED]
Replies: 9
Views: 5889

Re: Detect app activation (focus)

The handler is in the stack script... this works for me on MacOSX El Capitain.. LC 7.1.3

Code: Select all

on uniconifyStack
   beep
end uniconifyStack

Go to advanced search