Search found 339 matches

by cusingerBUSCw5N
Wed Oct 24, 2012 1:47 am
Forum: Android Deployment
Topic: installation question
Replies: 13
Views: 9975

Re: installation question

There is some information on various forums that says that anything in the PlayStore has to use Google's key. I can find the code, but have no idea what to do with it because LIvecode wants you to upload a .keystore file, which I generated on my computer. So...do you have to use Google's key for the...
by cusingerBUSCw5N
Wed Oct 24, 2012 1:16 am
Forum: Android Deployment
Topic: alternative to answer file for mobile device
Replies: 7
Views: 5769

Re: alternative to answer file for mobile device

OK... your posts are beyond my comprehension...but this is what worked for me. There is something called fillfilesfolders that works on my android First, create two scrolling fields, field1 and field2 In the card level put: command fillfilesfolders put the folders into field "field1" put the files i...
by cusingerBUSCw5N
Wed Oct 24, 2012 12:41 am
Forum: Android Deployment
Topic: installation question
Replies: 13
Views: 9975

Re: installation question

OK. My problem got worse. I installed my app on Google Play. You can actually find it and get it. It downloads fine but at the beginning of the installation there is an error "Package file was not signed correctly." I used my personal key and so I don't know what it wants that I haven't given it. So...
by cusingerBUSCw5N
Tue Oct 23, 2012 3:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Formatting DataGrid form
Replies: 0
Views: 1148

Formatting DataGrid form

My datagrid form works by coincidence - not because I know what I am doing. However, the label field (when the text is too long) is bleeding into the other fields. I tried adjusting the width, but either it had no effect, or it messed up all the formatting for the form. I think it is because I am us...
by cusingerBUSCw5N
Fri Oct 19, 2012 2:12 pm
Forum: Android Deployment
Topic: installation question
Replies: 13
Views: 9975

installation question

My app is finally done! :D For the big picture - I am hoping to have a free version available to members that can be downloaded off a secure website, with a paid version available through GooglePlay. So, I am experimenting with how to download an app from a website and install it. Here are the nitty...
by cusingerBUSCw5N
Tue Oct 16, 2012 4:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: resizing image from mobilepicklibrary
Replies: 7
Views: 4204

Re: resizing image from mobilepicklibrary

oh yes.... it works great!

Thank you :D
by cusingerBUSCw5N
Tue Oct 16, 2012 3:30 pm
Forum: Android Deployment
Topic: mobilepickphoto file type and ftp
Replies: 11
Views: 9018

Re: mobilepickphoto file type and ftp

OK. so the solution, provided through another post is to use binfile. Works like a charm. It is still a bit slow - initially shows up as 0 size, but if you wait a minute or so, it comes through. put url("binfile:"&myGalleryFile) into url ("ftp://" & FTPUSER & ":" & FTPPASS & "@" & FTPHOST&"/path_to_...
by cusingerBUSCw5N
Tue Oct 16, 2012 3:25 pm
Forum: Android Deployment
Topic: Accessing files included in standalone settings
Replies: 4
Views: 3731

Re: Accessing files included in standalone settings

thank you. Yes, I have so many prior versions...
by cusingerBUSCw5N
Tue Oct 16, 2012 3:22 pm
Forum: Android Deployment
Topic: Rotate photo in Android
Replies: 7
Views: 4315

Re: Rotate photo in Android

mobile didn't work.

Thank you Klaus - as usual, you are right on...
except, it needs to be -90

set the angle of image "libImage" to -90

does the trick
by cusingerBUSCw5N
Tue Oct 16, 2012 3:09 pm
Forum: Android Deployment
Topic: Rotate photo in Android
Replies: 7
Views: 4315

Re: Rotate photo in Android

sorry - I didn't realize that the simple command rotate worked in android. As usual, I was looking for a more complex solution.
by cusingerBUSCw5N
Tue Oct 16, 2012 3:00 pm
Forum: Android Deployment
Topic: Rotate photo in Android
Replies: 7
Views: 4315

Rotate photo in Android

Hi. I have learned that Androids take pictures using landscape. My app uses portrait layout. I can deal with taking a picture using landscape, but when I bring it into the app, it displays sideways. I want to rotate it so it looks OK on the app. I tried looking at revRotatePoly - but it it not for m...
by cusingerBUSCw5N
Tue Oct 16, 2012 2:49 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: resizing image from mobilepicklibrary
Replies: 7
Views: 4204

resizing image from mobilepicklibrary

I am great at ftp'ing distorted pictures of flowers from my Android to an outside server. In my app, the user chooses an image from their mobile device (android in this case) - so I am using mobilepicklibrary. I think you have to set the templateimage size before the person picks the image. But then...
by cusingerBUSCw5N
Thu Oct 11, 2012 1:15 am
Forum: Android Deployment
Topic: Accessing files included in standalone settings
Replies: 4
Views: 3731

Re: Accessing files included in standalone settings

ok... I was stupid.

You access it this way:

put url ("file:" & specialFolderPath("documents") & slash & "app_test.txt") into tFileContents
answer tFileContents
by cusingerBUSCw5N
Thu Oct 11, 2012 12:48 am
Forum: Android Deployment
Topic: Accessing files included in standalone settings
Replies: 4
Views: 3731

Accessing files included in standalone settings

OK...I'm being dumb again. :? I want to include a file in my app app_test.txt standalone. When I try to access it on an android: put url ("file:" & specialFolderPath("engine") & slash & "app_test.txt") into tFileContents answer tFileContents It gives me "no files" So...where is it storing app_test.t...
by cusingerBUSCw5N
Tue Oct 09, 2012 7:36 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Send image from android to server?
Replies: 3
Views: 3290

Re: Send image from android to server?

oh my gosh! It actually worked! There is a delay - so when you first look at it, it looks like an empty file, but after a minute or so, it comes through.

:D Thank you

put url("binfile:"&myGalleryFile) into url ("ftp://" & FTPUSER & ":" & FTPPASS & "@" & FTPHOST/path_to_my_files/mytest2.png" )

Go to advanced search