Re: Livecode mobile: accented chars and umlauts on iPhone

2010-11-26 Thread Harald Müller
Hi Bernd,

many thanks for the script! I didn't try "ANSI" and now it works. Great.

You are referring to prerelease version 15. The last one I got was 14,
are you member of the developer program? Are there any relevant steps
between 14 and 15, you could (and are allowed to) talk about?

Herzliche Grüße,
Harald Müller.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




Am 27.11.2010 um 01:18 schrieb BNig:

> 
> Dear List,
> 
> those of you that live in 'high ASCII' countries with languages that use
> accented characters and umlauts and develop for iOS will notice that
> entering an accented character in a field and then a 'low ASCII" character
> the text will turn to chinese characters. This might not be what you expect.
> 
> Rolf Kocherhans and I ran into this problem and we found a solution that I
> would like to share.
> Apparently Revmobile in its current version prerelease 15 has trouble with
> Unicode and the iOS. 
> 
> The solution is to add a handler to the field:
> 
> ---
> on rawKeyUp
>   -- works for french, spanish, german and maybe some other languages
>   -- does not work with eastern european languages
>   put uniDecode ((the uniCodeText of me),"ANSI") into me
>   select after me
>   pass rawKeyUp
> end rawKeyUp
> --
> 
> Please be careful if you want to copy this script into your field script. As
> of Livecode version 4.5 there is a bug that inserts ASCII 202 non breaking
> space into the copied text in the script editor that keeps this from working
> on the iPhone. You either type the script manually or copy it into a text
> editor first, convert it to text only (removing all formatting) and then you
> can paste it into the script editor.
> 
> The above script gives you the text you expect. It is the usual Mac text as
> far as the hight ASCII values are concerned.
> 
> You have to put it into a on rawKeyUp handler since it does not work in on
> keyUp handler because for reasons unknown to me an accented character on the
> iOS does not trigger the keyUp message, only the rawKeyUp message. Took me a
> while to figures that one out.
> 
> Hope this might be of help to the 'hight ASCII' language people. (Unless you
> want to brush up your chinese) :)
> 
> regards
> 
> Bernd
> -- 
> View this message in context: 
> http://runtime-revolution.278305.n4.nabble.com/Livecode-mobile-accented-chars-and-umlauts-on-iPhone-tp3061105p3061105.html
> Sent from the Revolution - User mailing list archive at Nabble.com.
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Livecode mobile: accented chars and umlauts on iPhone

2010-11-26 Thread Harald Müller
Hi Bernd,

thanks again. My version 14 is from 2010-11-10, I should ask the
support if this two-day-step makes a significant difference before
I submit the app (I will end in the spam folder with all my questions.)

"German-chinese" sounds sweet when you hear it out there, but
it looks strange in a text field, you are right :)

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




Am 27.11.2010 um 02:20 schrieb BNig:

> 
> Hi Harald,
> 
>> many thanks for the script! I didn't try "ANSI" and now it works. Great.
> 
> Yeah, it feels a lot better than german-chinese :)
> 
>> You are referring to prerelease version 15. The last one I got was 14,
> 
> I bought into the mobile option just like anybody else who is using it. It
> did say prerelease 14 on the zip but on the mobile plug-in at the bottom
> right it says 4.0.0-prerelease-15 (2010-11-12).
> The version I used before was 10, then I forgot to check in my account the
> appropriate checkbox to stay informed and Heather sent me the link as the
> current version when I asked her.
> I dont know of any differences.
> 
> Herzliche Grüße / Kind regards
> 
> Bernd
> 
> Harald Müller wrote:
>> 
>> Hi Bernd,
>> 
>> many thanks for the script! I didn't try "ANSI" and now it works. Great.
>> 
>> You are referring to prerelease version 15. The last one I got was 14,
>> are you member of the developer program? Are there any relevant steps
>> between 14 and 15, you could (and are allowed to) talk about?
>> 
>> Herzliche Grüße,
>> Harald Müller.
>> 
>> Am 27.11.2010 um 01:18 schrieb BNig:
>> 
>>> 
>>> Dear List,
>>> 
>>> those of you that live in 'high ASCII' countries with languages that use
>>> accented characters and umlauts and develop for iOS will notice that
>>> entering an accented character in a field and then a 'low ASCII"
>>> character
>>> the text will turn to chinese characters. This might not be what you
>>> expect.
>>> 
>>> Rolf Kocherhans and I ran into this problem and we found a solution that
>>> I
>>> would like to share.
>>> Apparently Revmobile in its current version prerelease 15 has trouble
>>> with
>>> Unicode and the iOS. 
>>> 
>>> The solution is to add a handler to the field:
>>> 
>>> ---
>>> on rawKeyUp
>>>  -- works for french, spanish, german and maybe some other languages
>>>  -- does not work with eastern european languages
>>>  put uniDecode ((the uniCodeText of me),"ANSI") into me
>>>  select after me
>>>  pass rawKeyUp
>>> end rawKeyUp
>>> --
>>> 
>>> Please be careful if you want to copy this script into your field script.
>>> As
>>> of Livecode version 4.5 there is a bug that inserts ASCII 202 non
>>> breaking
>>> space into the copied text in the script editor that keeps this from
>>> working
>>> on the iPhone. You either type the script manually or copy it into a text
>>> editor first, convert it to text only (removing all formatting) and then
>>> you
>>> can paste it into the script editor.
>>> 
>>> The above script gives you the text you expect. It is the usual Mac text
>>> as
>>> far as the hight ASCII values are concerned.
>>> 
>>> You have to put it into a on rawKeyUp handler since it does not work in
>>> on
>>> keyUp handler because for reasons unknown to me an accented character on
>>> the
>>> iOS does not trigger the keyUp message, only the rawKeyUp message. Took
>>> me a
>>> while to figures that one out.
>>> 
>>> Hope this might be of help to the 'hight ASCII' language people. (Unless
>>> you
>>> want to brush up your chinese) :)
>>> 
>>> regards
>>> 
>>> Bernd
>>> -- 
>> 
> -- 
> View this message in context: 
> http://runtime-revolution.278305.n4.nabble.com/Livecode-mobile-accented-chars-and-umlauts-on-iPhone-tp3061105p3061135.html
> Sent from the Revolution - User mailing list archive at Nabble.com.
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Error numbers

2010-11-30 Thread Harald Müller
Hi Ton,

the dictionary says:

You can look up the description of an error using this line of code:
answer line (item 1 of line 1 of pExecutionError) of the cErrorsList of card 1 
of stack "revErrorDisplay"


Best regards,
Harald Müller.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




Am 30.11.2010 um 19:05 schrieb Ton Cardona:

> Could you tell me where I can find an understandable explanation of errors 
> reported as number. For example this one:
> 
> 141,91,17
> 465,91,1
> 
> Thanks in advance
> 
> Ton
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: How to make a square topped, round rect bottomed graphic?

2010-12-01 Thread Harald Müller
If you want to be flexible, you could place a circle with the desired radius at 
each corner (or a square if wanted) and then draw a polygon from the relevant 
points (from the middle top of the circle at the topleft to the middle top of 
circle at topright and so on). The resulting group of elements could have a 
different radius at each corner if wanted. This would work for plain colors.

To get a border for this group you could duplicate the group with the desired 
border color, resize it and place it behind the first group.

No gradients possible with this solution, as far as I see.

Best regards,
Harald Müller.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Wishlist Mobile Plugin iOS

2010-12-01 Thread Harald Müller
My top ten wishes:

1) User language detection
2) Activity Indicator
3-10) Automatic resize normal display > retina display with detection
of @2x-endings for images and icons.

How are your wishes?

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


LiveCode and facebook

2010-12-03 Thread Harald Müller
Hi all.

I managed to login a user to facebook via LiveCode and to get his/her 
permissions
to write to the wall. Also posting to the users wall is possible. I'm doing 
this for later
versions of the iOS Plugin and hope it will include revBrowser (which I need to 
let the
user login).

If anyone is interested in the code and wants to optimize it with me: you're 
welcome!
BTW: Is there a place anywhere in the web for working together on code?

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LiveCode and facebook

2010-12-03 Thread Harald Müller
Hi Mark,
I now and will do. But is there anyone but us two?

Best regards,
Harald Müller.


Am 03.12.2010 um 13:16 schrieb Mark Schonewille:

> Hi Harald,
> 
> Why are you asking? You are a member of the OAuth wiki. You're welcome to 
> post your code there. It should even be possible to upload files.
> 
> --
> Best regards,
> 
> Mark Schonewille
> 
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
> 
> How to receive a free Color Converter license http://qurl.tk/kv (read the 
> conditions)
> 
> On 3 dec 2010, at 13:09, Harald Müller wrote:
> 
>> Hi all.
>> 
>> I managed to login a user to facebook via LiveCode and to get his/her 
>> permissions
>> to write to the wall. Also posting to the users wall is possible. I'm doing 
>> this for later
>> versions of the iOS Plugin and hope it will include revBrowser (which I need 
>> to let the
>> user login).
>> 
>> If anyone is interested in the code and wants to optimize it with me: you're 
>> welcome!
>> BTW: Is there a place anywhere in the web for working together on code?
>> 
>> Best regards,
>> Harald.
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LiveCode and facebook

2010-12-08 Thread Harald Müller
Hi Ben,

thanks for the info. I'm now trying to implement it using the iOS-specific 
LiveCode
features of the new version 4.5.2 and it looks good so far. As soon as I'm 
ready I
will post it to the community.

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




Am 07.12.2010 um 11:17 schrieb Benjamin Beaumont:

> Hi Harald,
> 
> Thanks for your post. It sounds like you've solved a problem that would
> interest quite a number of others in the community. If you would like to
> share your code then you can do with every other LiveCode user by uploading
> it to revOnline. It's the 4th button from the left in the main LiveCode
> toolbar.
> 
> Warm regards,
> 
> Ben
> 
> On 3 December 2010 12:09, Harald Müller  wrote:
> 
>> Hi all.
>> 
>> I managed to login a user to facebook via LiveCode and to get his/her
>> permissions
>> to write to the wall. Also posting to the users wall is possible. I'm doing
>> this for later
>> versions of the iOS Plugin and hope it will include revBrowser (which I
>> need to let the
>> user login).
>> 
>> If anyone is interested in the code and wants to optimize it with me:
>> you're welcome!
>> BTW: Is there a place anywhere in the web for working together on code?
>> 
>> Best regards,
>> Harald.
>> 
>> | Harald Müller (www.etcpp.de)
>> | Theodor-Körner-Straße 4, 97072 Würzburg
>> | Telefon + 49-[0]931-329090-42
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> Email has been scanned for viruses by Altman Technologies' email management
>> service - www.altman.co.uk/emailsystems
> 
> 
> 
> 
> -- 
> _
> 
> Benjamin Beaumont . RunRev Ltd
> 
> Revolution Product Manager
> mail : 25a Thistle Street Lane South West, Edinburgh, EH2 1EW
> email : b...@runrev.com
> company : +44(0) 845 219 89 23
> fax : +44(0) 845 458 8487
> web : www.runrev.com
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


LiveCode iOS (browser)

2010-12-08 Thread Harald Müller
While testing the new "browser" control I can't manage to show/hide the
browser "window" while running. It works as expected when defined in the
initial state but it can't be changed later.

iphoneControlSet sBrowserId, "visible", "true/false"

Also the browser doesn't let himself kill (iphoneControlDestroy sBrowserId).
Or am I just a suboptimal killer?

Any ideas?

Best regards,
Harald Müller.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LiveCode iOS (browser)

2010-12-08 Thread Harald Müller
Hi Andre,

thank you very much. Both tips work - I would never have
tried the alternative "iphoneControlDelete". Great!

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




Am 08.12.2010 um 19:13 schrieb Andre Garzia:

> Harald,
> 
> Try iphoneControlDelete instead of iphoneControlDestroy... I think
> iphoneControlDestroy is a mistake.
> 
> Also try passing true or false without quotes.
> 
> Andre
> 
> On Wed, Dec 8, 2010 at 4:02 PM, Harald Müller  wrote:
> 
>> While testing the new "browser" control I can't manage to show/hide the
>> browser "window" while running. It works as expected when defined in the
>> initial state but it can't be changed later.
>> 
>> iphoneControlSet sBrowserId, "visible", "true/false"
>> 
>> Also the browser doesn't let himself kill (iphoneControlDestroy
>> sBrowserId).
>> Or am I just a suboptimal killer?
>> 
>> Any ideas?
>> 
>> Best regards,
>> Harald Müller.
>> 
>> | Harald Müller (www.etcpp.de)
>> | Theodor-Körner-Straße 4, 97072 Würzburg
>> | Telefon + 49-[0]931-329090-42
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 
> 
> 
> -- 
> http://www.andregarzia.com All We Do Is Code.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: More iOS Build Trouble

2010-12-09 Thread Harald Müller
You could check if your Bundle ID is right:
http://developer.apple.com/library/ios/#technotes/tn2009/tn2242.html

Best regards,
Harald.


Am 09.12.2010 um 17:01 schrieb Scott Rossi:

> Recently, Colin Holgate wrote:
> 
>> Did you put the provisioning file onto the iPod? Also, setting 3.2 as a
>> minimum seems wrong. That's what you would want if it was just an iPad app,
>> but a lot of iPods will be running 3.1.3 or earlier.
> 
> 
> Recently, Thomas McGrath III wrote:
> 
>> Both the iPhone and the ipad have been at 4.2 for a while now. So if you set
>> it to 3.2 it will only work on the iPad since that was ONLY for iPads, set it
>> to one of the other version numbers and it should work. RR LC needs to update
>> to the 4.2 which works for both device types with out this problem.
> 
> 
> Thanks guys but Xcode is still not allowing the app on the iPod.  The
> provisioning file is present on the iPod.  Regarding the version number, I
> figured one could limit builds to a more recent iOS version, but regardless,
> setting the minimum iOS version to 3.1.3 doesn't appear to help -- still
> getting "The executable was signed with invalid entitlements."
> 
> Any other ideas?
> 
> Regards,
> 
> Scott Rossi
> Creative Director
> Tactile Media, UX Design
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


POST (mulitpart/form-data)

2010-12-10 Thread Harald Müller
Hi all,

I'm trying to build a mulitpart/form-data post, but it doesn't work. I don't
want to use libUrlMultipartFormData because I don't think it would work
on the iPhone. Any idea? My test-script:

on mouseUp
   answer file "Testfile:" of type "PNG"
   Put url ("binfile:/" & it) into myFile
   put makeMultipart(myFile) into myFile
   post myFile to URL "http://www.server.com/upload.php";
   answer it
end mouseUp

function makeMultipart myFile
   -- build header
   put "POST /upload.php HTTP/1.0" & return into myHeader
   put "Host: www.server.com" & return after myHeader
   put "Date: " & the internet date & return after myHeader
   put "Content-Type: multipart/form-data; boundary=uploadToHost" & return 
after myHeader
   put "Content-Length: " & (the number of chars of myFile) & return after 
myHeader
   put return after myHeader
   set the httpHeaders to myHeader
   -- build data
   put "--uploadToHost" & return into myContainer
   put "Content-Disposition: form-data; name=" & quote & "test.png" & quote & 
return after myContainer
   put "Content-Type: image/png" & return after myContainer
   put "Content-transfer-encoding: binary" & return after myContainer
   put return after myContainer
   put myFile & return after myContainer
   put "--uploadToHost--" & return after myContainer
   return myContainer
end makeMultipart

Best regards,
Harald Müller.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS apps not getting past review due to crashing

2010-12-13 Thread Harald Müller
Same here. No idea what more to try.

Best regards,
Harald Müller.


Am 14.12.2010 um 00:05 schrieb Brian Meriaho:

> Hi,
> 
> Has anyone else had a problem getting past the review step with iTunes
> Connect when submitting an app for Apple's App Store? I've built an
> app that runs on several iPhones, checked the certificates, checked
> the launch times, but still get rejected with a simple "it crashed".
> Not sure what is left to check.
> 
> Regards,
> 
> -Brian
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Set Angle Bug?

2010-12-14 Thread Harald Müller
Hi Walt,

haven't found anything to keep the size of the image untouched. So I
save its dimensions before rotating and restore them afterwards.

Harald.




Am 14.12.2010 um 10:43 schrieb Walt Brown:

> Hi!
> I created an image and used the Object Inspector to set it's graphic file, a
> PNG. I cloned and resized the image programmatically. Then when I went to
> spin the cloned image using "set the angle of" it reverted to its original
> size. Is there a way around that? I vaguely remember this issue but can't
> recall the answer.
> Thanks,
> Walt 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


LiveCode and facebook (preview)

2010-12-14 Thread Harald Müller
Hi all.

Facebook for iPhone now works (for me) but is still dirty coded and not
well documented. But if you want to take a first look and play around, feel
free to download an early version via web:

server: kunden.etcpp.de/runrev/
user: runrev
password: havefun

You will have to build an application at facebook (don't be afraid, this is
only a placeholder to get a unique ID which is needed). Done in minutes.

The code is placed in the card script, it uses Mark Smith JSON-functions
which are placed into the stacks script. When you have your Application ID
and "secret" from facebook, add it to the card script and it should work.

It would be nice to get feedback. Also it would be VERY cool to have some
more translations for the status messages. I will continue with this attempt,
so if you have additions or corrections: You're welcome. Have fun, hope it
will work for you.

Best regards,
Harald.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LiveCode and facebook (preview)

2010-12-15 Thread Harald Müller
Tom,

it would be fine to have more supported languages for the status
messages (french, italian, you name it). Until now there are these texts:

"Connect to Facebook"
"Establishing connection ..."
"Unable to connect"
"Connected"
"Transmitting data ..."
"Data transmitted"
"Error during transmission"

Regards,
Harald.



Am 15.12.2010 um 15:06 schrieb Thomas McGrath III:

> Harald,
> 
> I will give this a look tomorrow. It is great that you are working on this.
> 
> What kind of translations do you need for the status messages? Languages?
> 
> 
> Thanks
> 
> -- Tom McGrath III
> http://lazyriver.on-rev.com
> 3mcgr...@comcast.net
> 
> On Dec 14, 2010, at 12:32 PM, Harald Müller wrote:
> 
>> Hi all.
>> 
>> Facebook for iPhone now works (for me) but is still dirty coded and not
>> well documented. But if you want to take a first look and play around, feel
>> free to download an early version via web:
>> 
>> server: kunden.etcpp.de/runrev/
>> user: runrev
>> password: havefun
>> 
>> You will have to build an application at facebook (don't be afraid, this is
>> only a placeholder to get a unique ID which is needed). Done in minutes.
>> 
>> The code is placed in the card script, it uses Mark Smith JSON-functions
>> which are placed into the stacks script. When you have your Application ID
>> and "secret" from facebook, add it to the card script and it should work.
>> 
>> It would be nice to get feedback. Also it would be VERY cool to have some
>> more translations for the status messages. I will continue with this attempt,
>> so if you have additions or corrections: You're welcome. Have fun, hope it
>> will work for you.
>> 
>> Best regards,
>> Harald.
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS apps not getting past review due to crashing

2010-12-18 Thread Harald Müller
Just for your Info: LiveCOde 4.5.2 did work, no more
errors while submitting. I'm really happy!

Best regards,
Harald.


Am 14.12.2010 um 00:10 schrieb Harald Müller:

> Same here. No idea what more to try.
> 
> Best regards,
> Harald Müller.
> 
> 
> Am 14.12.2010 um 00:05 schrieb Brian Meriaho:
> 
>> Hi,
>> 
>> Has anyone else had a problem getting past the review step with iTunes
>> Connect when submitting an app for Apple's App Store? I've built an
>> app that runs on several iPhones, checked the certificates, checked
>> the launch times, but still get rejected with a simple "it crashed".
>> Not sure what is left to check.
>> 
>> Regards,
>> 
>> -Brian
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS apps not getting past review due to crashing

2010-12-18 Thread Harald Müller
And the second App is now also "ready for sale". After weeks of depression
a breathless weekend. Apple seems to work 24 hours a day. Can't tell you
how happy I am! If anyone wants to take a look 

http://www.youtube.com/user/appetcpp

Best regards,
Harald.




Am 18.12.2010 um 10:21 schrieb Harald Müller:

> Just for your Info: LiveCOde 4.5.2 did work, no more
> errors while submitting. I'm really happy!
> 
> Best regards,
> Harald.
> 
> 
> Am 14.12.2010 um 00:10 schrieb Harald Müller:
> 
>> Same here. No idea what more to try.
>> 
>> Best regards,
>> Harald Müller.
>> 
>> 
>> Am 14.12.2010 um 00:05 schrieb Brian Meriaho:
>> 
>>> Hi,
>>> 
>>> Has anyone else had a problem getting past the review step with iTunes
>>> Connect when submitting an app for Apple's App Store? I've built an
>>> app that runs on several iPhones, checked the certificates, checked
>>> the launch times, but still get rejected with a simple "it crashed".
>>> Not sure what is left to check.
>>> 
>>> Regards,
>>> 
>>> -Brian
>>> 
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your 
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>> 
>> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS apps not getting past review due to crashing

2010-12-18 Thread Harald Müller
Thanks Mark, I made the channel private as long as I didn't knew
whether I would reach my goal. Should work now.

Best regards,
Harald.



Am 19.12.2010 um 00:34 schrieb Mark Wieder:

> Harald-
> 
> "This channel is not available."
> 
> -- 
> -Mark Wieder
> mwie...@ahsoftware.net
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS apps not getting past review due to crashing

2010-12-19 Thread Harald Müller
Thanks Jacqueline, Klaus and Mark! Today I won't do
more than smile around the clock :)

Best regards
Harald.



Am 19.12.2010 um 06:03 schrieb J. Landman Gay:

> On 12/18/10 5:31 PM, Harald Müller wrote:
>> And the second App is now also "ready for sale". After weeks of depression
>> a breathless weekend. Apple seems to work 24 hours a day. Can't tell you
>> how happy I am! If anyone wants to take a look
>> 
>> http://www.youtube.com/user/appetcpp
> 
> Bravo! I know you've been trying to finish this for a while. Congratulations!
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


List of fonts (Link)

2010-12-21 Thread Harald Müller
Don't know if this is of interest for anyone - I'm thinking visual
and I like to see the list I knew before: http://iosfonts.com/

Best regards,
Harald.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: New Version of LC?

2010-12-27 Thread Harald Müller
As far as I know you have to be part of the developer program
to get early builds of coming versions:

http://www.runrev.com/products/livecode-developer-program/

Best regards,
Harald Müller.


Am 27.12.2010 um 16:13 schrieb Joe Lewis Wilkins:

> Colin, my experience as well. Thanks. Maybe some typos.
> 
> Joe Lewis Wilkins
> Architect & Director of Product Development for GSI
> 
> 
> 
> On Dec 27, 2010, at 7:10 AM, Colin Holgate wrote:
> 
>> 
>> On Dec 27, 2010, at 10:01 AM, Joe Lewis Wilkins wrote:
>> 
>>> Did I notice someone saying they are using 4.5.3?
>> 
>> At two persons so far. I don't see where you get those now, there used to be 
>> a menu item for it, or you might go to your account page, except that still 
>> has 4.5.2.
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Export Snapshot (iOS)

2011-01-14 Thread Harald Müller
Hi all.

In a script I want to export a screenshot to a file. This works fine and
without any problem until I leave the card, go to a special other card
and then turn back. Then the export fails and the script stops without
any info in "the result". This happens with JPEG and PNG, I tried both:

 export snapshot from this card to file  as jpeg

The path never changes, only the contents of the card change. The
export only fails (no matter what the card contains) when I visited this
special other card. Could this be a memory problem?

Any idea?

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


different screen resolutions (iOS)

2011-01-15 Thread Harald Müller
With the upcoming iPad 2 and its once again new screen resolution it will be 
more difficult to support all devices. As it looks there will be two "logical" 
resolutions each with two "physical" resolutions on the iOS, perhaps more to 
come.

As far as I know it is much easier to support those differing "physical" 
resolutions with the syntax "@2x" for high resolution graphics which will be 
used when the screen is a retina display. If Apple also doubles in "physical" 
resolution of the iPad 2 the technic to support this new resolution would be 
the same.

When I think about handling all this with LiveCode (which i love) and the need 
to make so many different versions I would like to have a "tool" or something 
which automates this. Thought about use all shown graphics via functions which 
do the same "@2x"-thing. Haven't found out yet how I could make a clean "double 
the whole stack in size" without visual or logical errors (text sizes, perfect 
element positions and so on).

Wouldn't it be a good idea to make a tool or bundle of functions which handle 
this "doubling of resolution"? How are you all handling this? 

Best regards,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Export Snapshot (iOS)

2011-01-15 Thread Harald Müller
Even when nobody ever will be facing this special problem I
want to share the workaround I found:

When I place "reset the templateimage" before the line where
the export happens, then all seems to work fine. Strange.

Have a nice weekend,
Harald.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




Am 15.01.2011 um 00:19 schrieb Harald Müller:

> Hi all.
> 
> In a script I want to export a screenshot to a file. This works fine and
> without any problem until I leave the card, go to a special other card
> and then turn back. Then the export fails and the script stops without
> any info in "the result". This happens with JPEG and PNG, I tried both:
> 
> export snapshot from this card to file  as jpeg
> 
> The path never changes, only the contents of the card change. The
> export only fails (no matter what the card contains) when I visited this
> special other card. Could this be a memory problem?
> 
> Any idea?
> 
> Best regards,
> Harald.
> 
> | Harald Müller (www.etcpp.de)
> | Theodor-Körner-Straße 4, 97072 Würzburg
> | Telefon + 49-[0]931-329090-42
> 
> 
> 
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


datagrid (loc of elements)

2011-01-15 Thread Harald Müller
Hi all.

I try to show an card element at the loc of the selected line of a datagrid 
form.
Is there a way to get the loc of datagrid element or will I have to put it 
inside
the datagrid and toggle the visible when a line is hilted?

Best regards,
Harald Müller.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: different screen resolutions (iOS)

2011-01-15 Thread Harald Müller
There were many articles and speculations. The last one:
http://www.macrumors.com/2011/01/15/ipad-2-screen-likely-to-have-2048x1536-resolution/

(As the dreamer that I am I would love it when the engine could blow up a 
"normal" card to the
double size and would search for corresponding @2x" graphics for every 
referenced image.)


Am 15.01.2011 um 15:15 schrieb Colin Holgate:

> 
> On Jan 15, 2011, at 6:13 AM, Harald Müller wrote:
> 
>> With the upcoming iPad 2 and its once again new screen resolution it will be 
>> more difficult to support all devices. As it looks there will be two 
>> "logical" resolutions each with two "physical" resolutions on the iOS, 
>> perhaps more to come.
> 
> Can you point to the specifications page, where they say that the resolution 
> is different? This article here:
> 
> http://www.ilounge.com/index.php/articles/comments/new-in-ios-4.3-the-full-breakdown-with-screenshots/
> 
> looks at the various art inside iOS 4.3, and that art suggests that the new 
> iPad would be the same resolution as the current one.
> 
> About your overall point of dealing with different screen sizes, there are a 
> few difficulties. With Flash I do use the kind of approach you're suggesting, 
> where my single sized iPhone stage gets scaled up to fill the iPad screen, 
> but there are a good amount of hoops I have to jump through to make sure that 
> the quality remains good.
> 
> The larger screen size isn't as big a problem as the different aspect ratios. 
> In Flash I get away with it by having extra content above and below the 
> stage, and when it's blown up to fill the iPad, that extra content becomes 
> visible. With LC, so far at least, the content seems to be aligned top left. 
> That could work out ok, if you have bitmap versions of the different size 
> backgrounds you could jump to the card that has the corresponding sized art, 
> and button layout, etc. With that way of working you could take care of 
> 480x320, 1024x768, and the other device sizes of 800x480 and 1024x600. Any 
> time you learn about a new screen size that you want to support you would 
> need to make a card, or cards, that are laid out for that new size. Or you 
> might be able to do a lot of the work using code.
> 
> 
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: datagrid (loc of elements)

2011-01-18 Thread Harald Müller
I read the API-docs but didn't come to the solution you describe.
Thanks, I will give this a try!

Best regards,
Harald Müller.

| Harald Müller (www.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42




> On Sat, Jan 15, 2011 at 9:49 PM, Harald Müller  wrote:
> 
>> I try to show an card element at the loc of the selected line of a datagrid
>> form.
>> Is there a way to get the loc of datagrid element or will I have to put it
>> inside
>> the datagrid and toggle the visible when a line is hilted?
>> 
> 
> Since you are using a form you can take a look at the dgDataControlOfLine
> property.
> 
> put the dgDataControlOfLine[ the dgHilitedLine of group "DataGrid" ] of
> group "DataGrid" into theControl
> if theControl is not empty then
>put the loc of theControl into theLoc
>
> end if
> 
> Take a look at the entry in the API docs:
> 
> http://lessons.runrev.com/spaces/lessons/manuals/datagrid/lessons/7344-Data-Grid-API
> 
> -- 
> Trevor DeVore
> Blue Mango Learning Systems
> ScreenSteps: http://www.screensteps.com
> LiveCode Resources for Developers: http://livecode.bluemangolearning.com
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


OT: Test for supporting Website (iOS App)

2011-01-22 Thread Harald Müller
Hi all,

the next update of one of my apps will make use of a website to
upload pictures are linked to his facebook-stream afterwords.

In PHP I want to use a Server-Variable to detect the Browser
language. Could one of go to the following link an check whether
the text is shown in english?

http://www.reshuffle.de/?fb1387220606time77733402912

Thanks in advance!

Best regards,
Harald Müller.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-329090-42





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OT: Test for supporting Website (iOS App)

2011-01-22 Thread Harald Müller
Thanks!

(then I made something wrong)


Am 22.01.2011 um 15:01 schrieb Ludovic Thébault:

> 
> Le 22 janv. 2011 à 14:57, Harald Müller a écrit :
> 
>> In PHP I want to use a Server-Variable to detect the Browser
>> language. Could one of go to the following link an check whether
>> the text is shown in english?
>> 
>> http://www.reshuffle.de/?fb1387220606time77733402912
>> 
> 
> It's in german for me (from France, with Safari)
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OT: Test for supporting Website (iOS App)

2011-01-22 Thread Harald Müller
Thanks!


Am 22.01.2011 um 15:10 schrieb Noel Fields:

> It is showing German for myself also.
> 
> - Noel
> 
> On 1/22/2011 7:01 AM, Ludovic Thébault wrote:
>> Le 22 janv. 2011 à 14:57, Harald Müller a écrit :
>> 
>>> In PHP I want to use a Server-Variable to detect the Browser
>>> language. Could one of go to the following link an check whether
>>> the text is shown in english?
>>> 
>>> http://www.reshuffle.de/?fb1387220606time77733402912
>>> 
>> It's in german for me (from France, with Safari)
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OT: Test for supporting Website (iOS App)

2011-01-22 Thread Harald Müller
Could you please take another look whether it
is now shown in english?



Am 22.01.2011 um 15:01 schrieb Ludovic Thébault:

> 
> Le 22 janv. 2011 à 14:57, Harald Müller a écrit :
> 
>> In PHP I want to use a Server-Variable to detect the Browser
>> language. Could one of go to the following link an check whether
>> the text is shown in english?
>> 
>> http://www.reshuffle.de/?fb1387220606time77733402912
>> 
> 
> It's in german for me (from France, with Safari)
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OT: Test for supporting Website (iOS App)

2011-01-22 Thread Harald Müller
Thanks!



Am 22.01.2011 um 15:26 schrieb Ludovic Thébault:

> 
> Le 22 janv. 2011 à 15:21, Harald Müller a écrit :
> 
>> 
>> Could you please take another look whether it
>> is now shown in english?
> 
> not again
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OT: Test for supporting Website (iOS App)

2011-01-22 Thread Harald Müller
Thanks for all your responses, that helped very much!

Best regards,
Harald Müller.


Am 22.01.2011 um 18:44 schrieb Thomas McGrath III:

> I would post wether it is a 'Free' app or paid and if so how much. 2Cents...
> 
> -- Tom McGrath III
> http://lazyriver.on-rev.com
> 3mcgr...@comcast.net
> 
> On Jan 22, 2011, at 12:14 PM, Ludovic Thébault wrote:
> 
>> 
>> Le 22 janv. 2011 à 18:01, Pierre Sahores a écrit :
>> 
>>> 
>>> Well shown in english there.
>> 
>> For me also !
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


OAuth

2011-01-27 Thread Harald Müller
Hi all,

has anybody made it thru OAuth already? There will be no way around OAuth
for me and after looking at all those infos I found a very interesting 
playground:

http://googlecodesamples.com/oauth_playground/index.php?

Once again I would like to work with others on this. Step by step, something 
easy
to handle, perhaps a script which can be edited and commented together online?
Anyone interested? Mark? Another try?

Best regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-8049170
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OAuth

2011-01-27 Thread Harald Müller
Hi Mark,

I managed posting to Facebook also, but not via clean OAuth. Anyway: Good
luck with your commercial attempt!

You are right, the open-source attempt with the Wiki didn't work well and
I don't know how this can be done as "group work". But I think it's not clever
when each of us goes the same road, we could take a bus and share cost/time.
Perhaps the key point is to find a platform which was made for things like that.

http://www.subethaedit.net/  perhaps, or something like that.

Best regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, 97072 Würzburg
| Telefon + 49-[0]931-8049170





Am 27.01.2011 um 14:33 schrieb Mark Schonewille:

> Hi Harald,
> 
> I made a system that successfully logs in on Facebook and posts messages. It 
> isn't a general solution and it is still work in progress, but I think I am 
> now able to do it for other systems as well, such as Twitter.
> 
> Unfortunately, the open-source attempt failed completely and what I have now 
> is a commercial solution. I can't share it for free but I can sell custom 
> solutions.
> 
> --
> Best regards,
> 
> Mark Schonewille
> 
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
> 
> New: Download the Installer Maker Plugin 1.5 for LiveCode here 
> http://qery.us/ce
> 
> On 27 jan 2011, at 14:18, Harald Müller wrote:
> 
>> Hi all,
>> 
>> has anybody made it thru OAuth already? There will be no way around OAuth
>> for me and after looking at all those infos I found a very interesting 
>> playground:
>> 
>> http://googlecodesamples.com/oauth_playground/index.php?
>> 
>> Once again I would like to work with others on this. Step by step, something 
>> easy
>> to handle, perhaps a script which can be edited and commented together 
>> online?
>> Anyone interested? Mark? Another try?
>> 
>> Best regards,
>> Harald.
>> 
>> | Harald Müller (app.etcpp.de)
>> | Theodor-Körner-Straße 4, 97072 Würzburg
>> | Telefon + 49-[0]931-8049170
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OAuth

2011-01-27 Thread Harald Müller
Sounds good!

(I haven't seen anything on LiveCode TV until now , but I'll try  ...)


Am 27.01.2011 um 14:42 schrieb David Bovill:

> I'll work on it with you Harald, we could take some steps looking at this
> next weekend at a LiveCode TV event? I think Andre has some code knocking
> about?
> 
> On 27 jan 2011, at 14:18, Harald Müller wrote:
>> 
>>> Hi all,
>>> 
>>> has anybody made it thru OAuth already? There will be no way around OAuth
>>> for me and after looking at all those infos I found a very interesting
>> playground:
>>> 
>>> http://googlecodesamples.com/oauth_playground/index.php?
>>> 
>>> Once again I would like to work with others on this. Step by step,
>> something easy
>>> to handle, perhaps a script which can be edited and commented together
>> online?
>>> Anyone interested? Mark? Another try?
>>> 
>>> Best regards,
>>> Harald.
>>> 
>>> | Harald Müller (app.etcpp.de)
>>> | Theodor-Körner-Straße 4, 97072 Würzburg
>>> | Telefon + 49-[0]931-8049170
>> 
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OAuth

2011-01-27 Thread Harald Müller
Cool!


Am 27.01.2011 um 15:37 schrieb Andre Garzia:

> On Thu, Jan 27, 2011 at 11:42 AM, David Bovill 
> wrote:
> 
>> I'll work on it with you Harald, we could take some steps looking at this
>> next weekend at a LiveCode TV event? I think Andre has some code knocking
>> about?
>> 
>> 
> I am trying to finish it. The main issue right now is time to finish it.
> 
> :D
> 
> 
> 
> 
> -- 
> http://www.andregarzia.com All We Do Is Code.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS: Show with visual effect

2011-02-02 Thread Harald Müller
> I am experiencing that after a visual effect the whole UI gets locked
> and no update to the screen happens... anyone seeing this on iOS?

Yes, happened here also, but only under certain conditions. I haven't
found out yet which these are but I tend to see it in a scroller. Whole
software hangs when I comment out the visual effect, nothing more to do.

Best regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, D-97072 Würzburg
| Telefon 0931-8049170


Am 02.02.2011 um 19:36 schrieb Andre Garzia:

> I am experiencing that after a visual effect the whole UI gets locked
> and no update to the screen happens... anyone seeing this on iOS?
> 
> On Wed, Feb 2, 2011 at 4:21 PM, Dan Friedman  wrote:
>> Funny, I didn't even think to try that!  Sadly, it did not work. Perhaps we 
>> need a new effect?  Something like:
>> 
>> show group "myGroup" with visual effect none
>> 
>> -Dan
>> 
>> 
>> 
>> 
>>> Hi Dan,
>>> 
>>>> 
>>>  If you lock the screen and show an object with a visual effect, only the 
>>> rect of the object gets refreshed -- way cool.  However, you have to use a 
>>> effect.  What if you don't want to use an effect?  What if you want to 
>>> update a single object instantly?  Is there  something that will do this 
>>> without the effect?
>>> 
>>> 
>>> maybe a simple "show fld XYZ" and/or "hide grp ZXY" will do?
>>> 
>>>> 
>>>  -Dan
>>> 
>>> 
>>> Best
>>> 
>>> Klaus
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 
> 
> 
> -- 
> http://www.andregarzia.com All We Do Is Code.
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS: resizing images with two fingers (Multi touch)

2011-02-10 Thread Harald Müller
Hi Klaus,

there is a lesson available:

http://lessons.runrev.com/spaces/lessons/buckets/1004/lessons/11509-How-do-I-implement-a-multi-touch-pinch-motion-

Warm regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, D-97072 Würzburg
| Telefon 0931-8049170






Am 10.02.2011 um 14:07 schrieb Klaus on-rev:

> Hi all,
> 
> someone already scripted this for an image and is willing
> to share the script(s)?
> 
> I know that this may still not be as smooth as one might exspect, 
> but I would like to see how it can be done. 
> 
> I know this will use "touchStart" etc. but here my knowledge ends :-)
> 
> Thanks a lot in advance!
> 
> 
> Best
> 
> Klaus
> 
> --
> Klaus Major
> http://www.major-k.de
> kl...@major.on-rev.com
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS: resizing images with two fingers (Multi touch)

2011-02-10 Thread Harald Müller
Should also with images when all references are changed.


Am 10.02.2011 um 14:40 schrieb Colin Holgate:

> 
> On Feb 10, 2011, at 8:12 AM, Harald Müller wrote:
> 
>> http://lessons.runrev.com/spaces/lessons/buckets/1004/lessons/11509-How-do-I-implement-a-multi-touch-pinch-motion-
> 
> I have tried that with an image and nothing exciting happens. Does it only 
> work with a graphic?
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS: resizing images with two fingers (Multi touch)

2011-02-10 Thread Harald Müller
Hi Colin,

I tried again a few minutes ago, downloaded the demo stack,
imported an image and renamed it to "square", deleted the
graphic called "square", changed all references from "graphic"
to "image" and it works. You either haven't renamed the image
or you missed to change all references.

Warm regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, D-97072 Würzburg
| Telefon 0931-8049170






Am 10.02.2011 um 15:36 schrieb Colin Holgate:

> I went over things again, and must have missed one reference the first time. 
> Now when I touch the screen the image vanishes. I suspects there is a 
> difference in where the loc of a graphic is compared to the loc of an image.
> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: How do you manage lots of imported images?

2011-02-11 Thread Harald Müller
Thank you for this insight!

I didn't know that an unplaced group is still "part of the project".
I hide them instead but don't like the cluttered app browser. I will
try it this way. Très chic!

(I will should go on a holiday and read the whole dictionary.)

Best regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, D-97072 Würzburg
| Telefon 0931-8049170






Am 11.02.2011 um 00:24 schrieb J. Landman Gay:

> On 2/10/11 4:36 AM, Tiemo Hollmann TB wrote:
> 
>> Second. How do you organize your images, when you have a lot? Do you create
>> extra cards only for holding images, which you assign to buttons, or do you
>> import the images on the current cards? What are your experiences?
> 
> I've done it different ways, but lately I mostly do this:
> 
> If there are only a few images, I put them on the cards they belong to. If 
> images are used on many cards, I usually put them all on one card.
> 
> If I have more than four or five images, I put them into a group. Then I 
> remove the group from the card so that it is not placed anywhere. This is how 
> imported HyperCard stacks do it, and it works well. You can put all your 
> images into an unplaced group, and they are available to the entire 
> stackfile, and they never show anywhere.
> 
> The disadvantage of the group method is that if you want to change any of the 
> images, you must place the group on a card so you can edit it, and then 
> remove the group from the card when you are done. I don't mind that because 
> the group method keeps the images out of my way and doesn't clutter up the 
> cards or the app browser, and I usually don't need to change the images very 
> often.
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Resizing an image with min and max limits

2011-03-05 Thread Harald Müller
Hi Eric,

the function "resizeGraphic" in the demo will resize the graphic,
here you could add your image limits.

Best regards,
Harald.

| Harald Müller (app.etcpp.de)
| Theodor-Körner-Straße 4, D-97072 Würzburg
| Telefon 0931-8049170






Am 05.03.2011 um 08:58 schrieb Eric Peyron:

> Hi all, 
> 
> I have created an app with multi-touch resizing of images using the "How do I 
> implement a multi-touch pinch motion?" lesson, but I can't seem to set limits 
> to the resizing. What lines could I add to the code of the sample stack from 
> this lesson to have a min size and and a max size for my image?
> 
> Thanks in advance, 
> Eric
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode