Search found 103 matches

by genie
Sun Oct 26, 2014 3:46 pm
Forum: Games
Topic: How do I know if one object is within another object?
Replies: 5
Views: 6675

Re: How do I know if one object is within another object?

jmburnod wrote: You can use within for each point of your object. Points if this is an irregular polygon or topleft,topright... if this is an other object
Ohh, i see. Sound tedious...but thank you so much for your help jm. :) Now I know what to do!

Regards,
Genie
by genie
Fri Oct 24, 2014 5:33 am
Forum: Games
Topic: How do I know if one object is within another object?
Replies: 5
Views: 6675

How do I know if one object is within another object?

Good day y'all! I have a question... How do I know if one object is within another object? (that they fully overlap) I know "intersect", but it only tells when 2 objects collide, right? Also, "within" only tells if a point is within an object, not object within the object. Can't seem to find what to...
by genie
Wed Sep 24, 2014 2:41 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: markers in google maps?
Replies: 10
Views: 18540

Re: markers in google maps?

Hello Bangkok,

Thank you for the stack. One question... how to I handle when a marker in the HTML is clicked? Is it possible that the stack goes to another card when a particular marker is clicked?


Thanks,
Genie
by genie
Tue Sep 16, 2014 7:45 am
Forum: iOS Deployment
Topic: non-public symbols automatic rejection?
Replies: 13
Views: 11474

Re: non-public symbols automatic rejection?

Error did not appear when I built my app thru 6.6.3. I was able to successfully upload the app to iTunes.

Thanks Klaus!
by genie
Tue Sep 16, 2014 4:09 am
Forum: iOS Deployment
Topic: non-public symbols automatic rejection?
Replies: 13
Views: 11474

Re: non-public symbols automatic rejection?

I will give 6.6.3 a try.
by genie
Mon Sep 08, 2014 11:37 am
Forum: iOS Deployment
Topic: non-public symbols automatic rejection?
Replies: 13
Views: 11474

Re: non-public symbols automatic rejection?

I am also getting the same thing.

Like Kelly, I am using libAltMobileResizer.

Regards,
Genie
by genie
Thu Aug 28, 2014 2:21 am
Forum: Android Deployment
Topic: Push notification error: SERVICE_NOT_AVAILABLE
Replies: 2
Views: 4263

Re: Push notification error: SERVICE_NOT_AVAILABLE

Hi Splash!

Sorry, t'was only today that I saw this. Yes, it was time indeed. Thanks!


Regards,
Genie
by genie
Thu Aug 21, 2014 1:26 am
Forum: Android Deployment
Topic: Push notification error: SERVICE_NOT_AVAILABLE
Replies: 2
Views: 4263

Push notification error: SERVICE_NOT_AVAILABLE

Hello! on pushNotificationRegistrationError tMessage answer "Failed to Register for Push Notification:" && quote & tMessage & quote with "Okay" end pushNotificationRegistrationError The handler above gives me SERVICE_NOT_AVAILABLE on an Android tablet. But but but, I am only getting this error on th...
by genie
Sat Jun 21, 2014 1:21 pm
Forum: Internet
Topic: Native Browser displays nothing due to SSL error
Replies: 1
Views: 3492

Native Browser displays nothing due to SSL error

Hello! I am trying to load a page on a native browser control, problem is, data does not get loaded due to the website's SSL certificate error. Browser displays nothing. Just blank page. I have came across... libUrlSetSSLVerification false I placed it before... mobileControlSet sBrowserId, "url", ge...
by genie
Wed Jun 04, 2014 2:39 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Can LC read email address?
Replies: 1
Views: 2410

Can LC read email address?

Hi All!

Is there a way we can read the email address logged in on the standard-mail-account?

I hope to use it as username in my app when available.


Thanks,
Genie
by genie
Mon May 19, 2014 1:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving Captured Photo (templateImage) to Camera Roll
Replies: 8
Views: 5747

Re: Saving Captured Photo (templateImage) to Camera Roll

One more thing, is there a way to do the same thing for video (instead of photo)? i.e., capture video, save video, mail video. There's revRecordVideo but does not work for mobile (only desktop). I saw that Monte has mergAV, so I guess I can conclude that it is not doable by Livecode alone because an...
by genie
Mon May 19, 2014 11:46 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving Captured Photo (templateImage) to Camera Roll
Replies: 8
Views: 5747

Re: Saving Captured Photo (templateImage) to Camera Roll

Hi Simon! This worked well. on mouseUp set the vis of the templateImage to false mobilePickPhoto "camera" put the last image into tAttachment["data"] put "image/jpeg" into tAttachment["type"] put "cam picture" into tAttachment["name"] mobileComposeMail "Camera Example", getRecipient(),,,, tAttachmen...
by genie
Mon May 19, 2014 7:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving Captured Photo (templateImage) to Camera Roll
Replies: 8
Views: 5747

Re: Saving Captured Photo (templateImage) to Camera Roll

Thanks so much, Simon. I will try this out...

Regards,
Genie
by genie
Mon May 19, 2014 5:47 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving Captured Photo (templateImage) to Camera Roll
Replies: 8
Views: 5747

Saving Captured Photo (templateImage) to Camera Roll

Hello! Good day! I simply want to capture an image using device's camera and save the photo or email the photo, but I cannot seem to get to control templateImage. I probably just don't know how to address to it? I tried random things, but somehow stuck. on mouseUp set the lockloc of the templateimag...
by genie
Mon Apr 14, 2014 11:36 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Accessing Web Content
Replies: 0
Views: 1448

Accessing Web Content

Hello! I am try to get an content of a URL by... put URL *some url* into tPrefData put the result into tResult Thing is, on iOS, tResult is empty as it should, but on Android, it gives me unexpected string. I do not understand why I am getting different results on iOS and Android. Hoping that maybe ...