Search found 361 matches

by splash21
Mon Feb 24, 2014 9:30 pm
Forum: MobGUI
Topic: Multiline problems
Replies: 14
Views: 10125

Re: Multiline problems

Gerry's got it :)

I just reconstructed a stack with your data and everything works OK - let us know if it doesn't - in case there's something else going on!
by splash21
Mon Feb 24, 2014 6:46 pm
Forum: Talking LiveCode
Topic: 'Send in x millisecs' performance hit with user interaction?
Replies: 12
Views: 7326

Re: 'Send in x millisecs' performance hit with user interact

Adding a bunch of empty handlers to the card or stack script to prevent certain messages getting to the engine avoids some slow downs; on mouseDown end mouseDown on mouseDoubleDown end mouseDoubleDown on mouseUp end mouseUp on mouseDoubleUp end mouseDoubleUp on mouseRelease end mouseRelease on keyDo...
by splash21
Mon Feb 24, 2014 6:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Uploading photo from library and storing in the iPhone app.
Replies: 13
Views: 6475

Re: Uploading photo from library and storing in the iPhone a

Hi, Chris. What I am trying to do is upload an image to an app as a thumbnail size Are you uploading the image to a server to download on other devices? Or just selecting an image from the gallery? If you need the large image, then just uploading the large image and creating the thumbnail from that ...
by splash21
Mon Feb 24, 2014 6:15 pm
Forum: Windows
Topic: how can I loop the data from my query.. Help.!
Replies: 4
Views: 4199

Re: how can I loop the data from my query.. Help.!

snop21 wrote:repeat ----
answer " " -----> data from my query
end repeat
You've already got it! :P

Code: Select all

repeat for each line tRow in tDisplay
  answer tRow
end repeat
by splash21
Mon Feb 24, 2014 6:05 pm
Forum: iOS Deployment
Topic: Struggling with in-app purchase
Replies: 14
Views: 8952

Re: Struggling with in-app purchase

LOL - it's always a bummer when you never get to the bottom of what the problem was - BUT - great that it's all working! 8)
by splash21
Mon Feb 24, 2014 5:27 pm
Forum: MobGUI
Topic: Multiline problems
Replies: 14
Views: 10125

Re: Multiline problems

Hi, Rob. Two recent examples spring to mind. The first was strange : the control's text wouldn't set unless an empty string was prepended to it; ( http://forums.runrev.com/viewtopic.php?f=54&t=18887 ) The normal command wouldn't work, but the following would; mobileControlSet "Instruct", "text", "" ...
by splash21
Mon Feb 24, 2014 5:15 pm
Forum: MobGUI
Topic: Create your own fonts!
Replies: 5
Views: 5089

Re: Create your own fonts!

Hi, Sandy & William - thanks for the feedback. What size did you use for your icons? I was originally designing at 30x30 pixels using inkscape ( http://www.inkscape.org/ ). I'm no font expert and the icons seemed to overlap each other - I still don't know why! After some experimentation, I noticed t...
by splash21
Thu Feb 20, 2014 10:57 am
Forum: Windows
Topic: how can I loop the data from my query.. Help.!
Replies: 4
Views: 4199

Re: how can I loop the data from my query.. Help.!

Hi, snop21. Just change;

Code: Select all

set the dgText of group "Datagrid 1" to tdisplay
to

Code: Select all

put tdisplay into msg
and the results will show in the message box
by splash21
Wed Feb 19, 2014 10:58 pm
Forum: MobGUI
Topic: Feature request: The old feature for setup per device
Replies: 3
Views: 9737

Re: Feature request: The old feature for setup per device

This feature is actually already on my list - I've just not had time yet ;)
by splash21
Wed Feb 19, 2014 10:39 pm
Forum: MobGUI
Topic: Feature request: Proportionally objects
Replies: 5
Views: 11482

Re: Feature request: Proportionally objects

Hi, DevBoyLars. If you mean for full screen modes that stretch the display to fit a different aspect ratio, that's what those modes are designed to do. It's like painting a picture then stretching it more in one direction than the other - everything will be affected - fonts, images, text, etc... It ...
by splash21
Wed Feb 19, 2014 12:03 am
Forum: Announcements
Topic: What if there's no way to upload a file to a server?
Replies: 6
Views: 5647

Re: What if there's no way to upload a file to a server?

It is possible - check out http://forums.runrev.com/viewtopic.php?f=8&t=19144

I've been using it on an android tablet for large uploads.
by splash21
Wed Feb 19, 2014 12:01 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Mobile file upload a solution CGI
Replies: 16
Views: 24493

Re: Mobile file upload a solution CGI

In button S21-Uploader, change..

Code: Select all

put "&F=" & sUploadA[pFile]["RemoteFile"] & \
to

Code: Select all

put "&F=" & urlEncode(sUploadA[pFile]["RemoteFile"]) & \
and it should be good!
by splash21
Tue Feb 18, 2014 11:59 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Mobile file upload a solution CGI
Replies: 16
Views: 24493

Re: Mobile file upload a solution CGI

Well then - don't put spaces in filenames! :D Or modify it so that it does like spaces...
by splash21
Tue Feb 18, 2014 11:57 pm
Forum: Announcements
Topic: What if there's no way to upload a file to a server?
Replies: 6
Views: 5647

Re: What if there's no way to upload a file to a server?

Hi, Mark - you should use POST instead of GET - you can send far more data that way and avoid the overhead of all those small connections ;)
by splash21
Tue Feb 18, 2014 11:52 pm
Forum: iOS Deployment
Topic: Struggling with in-app purchase
Replies: 14
Views: 8952

Re: Struggling with in-app purchase

Hi, Joel. I've not done anything with in app purchases for some time, but this code is straight out of a test app that uses them successfully. I don't see anything obvious in your code that would cause a problem, but it's clocking off time over here, so I'll post the handlers and hopefully it's usef...

Go to advanced search