Search found 13 matches
- Tue Nov 24, 2015 8:42 am
- Forum: Android Deployment
- Topic: mobilePickPhoto and cancel by user crashes Android app
- Replies: 1
- Views: 2473
Re: mobilePickPhoto and cancel by user crashes Android app
After further investigations I have found that there is a bug report about Android's strange behaviour when it comes to and camera usage. So I added my observations there: http://quality.livecode.com/show_bug.cgi?id=11118 Whoever wants to replicate the strange behavior can use the attached stack in ...
- Sun Nov 22, 2015 5:17 pm
- Forum: iOS Deployment
- Topic: Import multiple images from iPhone Camera Roll
- Replies: 5
- Views: 5157
Re: Import multiple images from iPhone Camera Roll
This is an older post but maybe something has changed meanwhile. Does anybody know whether there is a solution now (or on the way) for a multiple photo pick? Regards David Just found some information about the topic. There is a pending feature request: http://quality.livecode.com/show_bug.cgi?id=14...
- Sun Nov 22, 2015 2:57 pm
- Forum: Android Deployment
- Topic: mobilePickPhoto and cancel by user crashes Android app
- Replies: 1
- Views: 2473
mobilePickPhoto and cancel by user crashes Android app
Hi I have an App that lets the user shoot a pict. Shooting the pict works well but if the user chooses to go back to the app without taking a picture (cancel) then the app behaves strange. I can go back to the app once maybe twice but then the app crashes (Error Msg: MyApp is not responding. Do you ...
- Sun Nov 22, 2015 10:11 am
- Forum: iOS Deployment
- Topic: Import multiple images from iPhone Camera Roll
- Replies: 5
- Views: 5157
Re: Import multiple images from iPhone Camera Roll
This is an older post but maybe something has changed meanwhile. Does anybody know whether there is a solution now (or on the way) for a multiple photo pick?
Regards David
Regards David
- Wed Nov 11, 2015 5:06 pm
- Forum: Android Deployment
- Topic: Handling the pop-up keyboard...
- Replies: 18
- Views: 15091
Re: Handling the pop-up keyboard...
Hi Paul, I know that this was posted ~10 months ago, but the keyboard pushes the screen up on Android devices if the "acceleratedRendering" property of the stack is set to true. If you do not set this property (or set it to false) then the keyboard won't move the screen when it pops up. Hope that h...
- Sun Aug 16, 2015 7:53 am
- Forum: iOS Deployment
- Topic: Native Scroller for images - no horizontal scrolling
- Replies: 3
- Views: 3874
Re: Native Scroller for images - no horizontal scrolling
Hi Simon I just didn't see the wood for the trees. I was so sure I made an error with the ContentRect that I oversaw the missing line for "hScroll" in the "scrollerDidScroll" handler. Thank you very much for your help Regards David For clearness that's what I have now: To scroll vertically and horiz...
- Fri Aug 14, 2015 5:43 pm
- Forum: iOS Deployment
- Topic: Native Scroller for images - no horizontal scrolling
- Replies: 3
- Views: 3874
Native Scroller for images - no horizontal scrolling
Hi I tried to code a native scroller for images. I followed the instruction on http://lessons.runrev.com/s/lessons/m/4069/l/94412-creating-a-native-scroller-to-scroll-a-field but my scroller is only scrolling vertically not horizontally. What I did a) put 3 pics on a card b) locked their size and po...
- Fri Jun 26, 2015 9:05 am
- Forum: Multimedia
- Topic: Append an image to another image
- Replies: 29
- Views: 53577
Re: Append an image to another image
Hi everybody
As I was initially opening this thread: Thanks to all of you! You are really a great and helpful community!
Cheers David
As I was initially opening this thread: Thanks to all of you! You are really a great and helpful community!
Cheers David
- Fri Jun 26, 2015 9:00 am
- Forum: Multimedia
- Topic: Append an image to another image
- Replies: 29
- Views: 53577
Re: Append an image to another image
Hi, Appending two images is really easy, if the images have the same width. This seems what you want to do. on mouseUp put the imagedata of img 1 & the imagedata of img 2 into myData create img set the height of it to the height of img 1 + the height of img 2 set the width of it to the width of img...
- Sat Jun 20, 2015 3:42 pm
- Forum: Multimedia
- Topic: Append an image to another image
- Replies: 29
- Views: 53577
Re: Append an image to another image
Thank you Klaus
I understand the idea but don't I loose resolution? In my thinking the resulting picture will only have the screen resolution.
Regards David
I understand the idea but don't I loose resolution? In my thinking the resulting picture will only have the screen resolution.
Regards David
- Wed Jun 17, 2015 5:27 pm
- Forum: Multimedia
- Topic: Append an image to another image
- Replies: 29
- Views: 53577
Append an image to another image
Hi, does anybody know how to append an image e.g. jpeg to an other one? The result would be a long image showing two pictures/pages in portrait format.
Thx for helping.
Thx for helping.
- Fri Jun 12, 2015 4:38 pm
- Forum: Android Deployment
- Topic: Send image with command "post"
- Replies: 3
- Views: 3932
Re: Send image with command "post"
Dear MaxV
sorry for my late reply I was very busy and had to do some other stuff than programming livecode! But many thanks for your reply, which helps a lot. It's the base64encoding that does the trick. I don't know why though.
cheers and kind regards
David
sorry for my late reply I was very busy and had to do some other stuff than programming livecode! But many thanks for your reply, which helps a lot. It's the base64encoding that does the trick. I don't know why though.
cheers and kind regards
David
- Mon May 25, 2015 11:11 am
- Forum: Android Deployment
- Topic: Send image with command "post"
- Replies: 3
- Views: 3932
Send image with command "post"
Hi I need to send a picture taken from Androids camera to a server where mysql is running. I can do this only through port 80/8080 (http). Therefore I think I need to submit my data with the post-command. I wrote a php script that acts as API. The API-PHP script receives the data and sends them to m...