Search found 1319 matches

by Dixie
Tue Apr 05, 2016 9:53 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Detect app activation (focus) [SOLVED]
Replies: 9
Views: 5963

Re: Detect app activation (focus)

read up on 'iconify'stack in the dictionary...
by Dixie
Mon Apr 04, 2016 8:05 pm
Forum: iOS Deployment
Topic: Go back to current cd after double-click on home btn
Replies: 4
Views: 3221

Re: Go back to current cd after double-click on home btn

This should always take you back to the last card you visited in the stack... on preOpenStack if environment() = "mobile" then put specialfolderpath("documents") & "/lastplace" into thefile if there is not a file thefile then put empty into URL ("file:" & thefile) else put URL ("file:" & thefile) in...
by Dixie
Thu Mar 31, 2016 2:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Remove Carriage Returns
Replies: 51
Views: 25753

Re: Remove Carriage Returns

Oh, so you are using a datagrid are you !?... You didn't make that clear... look up 'replace' in the dictionary'
by Dixie
Thu Mar 31, 2016 10:44 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Remove Carriage Returns
Replies: 51
Views: 25753

Re: Remove Carriage Returns

try something like...

Code: Select all

replace return with empty in fld "xyz"
by Dixie
Wed Mar 30, 2016 11:27 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Still looking for an image-slider
Replies: 3
Views: 3188

Re: Still looking for an image-slider

Use a 'native' scroller and scroll along the horizontal...
by Dixie
Tue Mar 29, 2016 6:01 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: how to know the app is idling in the background?
Replies: 4
Views: 2719

Re: how to know the app is idling in the background?

Then you should load the question into the 'iOS Deployment' section... !?
by Dixie
Thu Mar 24, 2016 12:19 am
Forum: iOS Deployment
Topic: mobileComposeMail broken on iPhone 6s [Solved]
Replies: 9
Views: 5631

Re: mobileComposeMail broken on iPhone 6s

Make a stack... put the following in a button.. on mouseUp --put "temp.png" into tAttached["file"] --put "image/png" into tAttached["type"] --put "temp.png" into tAttached["name"] put "Testing Mail" into tSubject put empty into tRecipient put "Write your stuff here" into tBody iphoneComposeMail tSub...
by Dixie
Wed Mar 23, 2016 11:17 pm
Forum: iOS Deployment
Topic: mobileComposeMail broken on iPhone 6s [Solved]
Replies: 9
Views: 5631

Re: mobileComposeMail broken on iPhone 6s

Would you like to post your script ?
by Dixie
Mon Mar 21, 2016 12:11 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Standalone Settings problem...
Replies: 2
Views: 2665

Standalone Settings problem...

Make a stack with LC 7.1.3... save it... choose iOS in standalone settings... no problem
Make a stack with LC 8.0.0 (DP 16)... save it... all the deployment options are greyed out, so am unable to choose one...:-(

Do the same however with DP15 and there is no problem.. Anyone else seen this ?
by Dixie
Sat Mar 12, 2016 1:16 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: HOW USE SCROLLING LIST FIELD
Replies: 3
Views: 5942

Re: HOW USE SCROLLING LIST FIELD

put the following into the script of the scrolling list field...

Code: Select all

on mouseDown
   put line (word 2 of the clickline) of me
end mouseDown
it will place your choice in the msg box...
by Dixie
Wed Mar 09, 2016 5:21 am
Forum: iOS Deployment
Topic: mobileComposeMail broken on iPhone 6s [Solved]
Replies: 9
Views: 5631

Re: mobileComposeMail broken on iPhone 6s

Can't say about the 6s... Works on a 5s !
by Dixie
Mon Feb 22, 2016 10:33 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Progress Bar
Replies: 3
Views: 2402

Re: Progress Bar

Jamie..

Have a look at the attached... it might help...:-)
by Dixie
Fri Feb 19, 2016 4:29 pm
Forum: Talking LiveCode
Topic: Rotating an image changes its dimensions?
Replies: 28
Views: 11889

Re: Rotating an image changes its dimensions?

Does it help if you... Set the margins of the image to 0 lock the size & position Group the image Set the margins of the group to 0 lock the size & position I have just taken an image 182 x 182 pixels and done the above... then duplicated it 5 times... When rotating them or setting the angle I do se...
by Dixie
Sun Feb 14, 2016 1:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: figuring out this language
Replies: 26
Views: 14754

Re: figuring out this language

Code: Select all

on mouseUp
   put random(100) into theNumber
   
   put random(100) into theNumber2
   if theNumber = theNumber2 then 
      answer "Matched"
   end if
   if theNumber < theNumber2 then
      answer "Too Low"
   end if
   if theNumber > theNumber2 then
      answer "Too High"
   end if
end mouseUp

Go to advanced search