can I customize the label of the ask buttons?

2013-07-16 Thread Tiemo Hollmann TB
Hello, is there any hidden tweak to customize the labels of the standard ask dialog? E.g. localize the "cancel" text? Or do I have to build my own ask dialog window? Thanks Tiemo ___ use-livecode mailing list use-livecode@lists.runrev.com P

Re: can I customize the label of the ask buttons?

2013-07-16 Thread Richmond
On 16/07/13 11:06, Tiemo Hollmann TB wrote: Hello, is there any hidden tweak to customize the labels of the standard ask dialog? E.g. localize the "cancel" text? Or do I have to build my own ask dialog window? Thanks Tiemo If you look in the appbrowser stack after you have called an As

AW: can I customize the label of the ask buttons?

2013-07-16 Thread Tiemo Hollmann TB
Hello Richmond, I don't find any system object in the appbrowser. Is there any preference option to see the system stacks in the appbrowser I don't know? And if I find this change. Is it made for the specific LC version for all new applications build with this version or is it connected to my curr

Re: can I customize the label of the ask buttons?

2013-07-16 Thread Klaus major-k
Hi Tiemo, Am 16.07.2013 um 13:14 schrieb "Tiemo Hollmann TB" : > Hello Richmond, > > I don't find any system object in the appbrowser. Is there any preference > option to see the system stacks in the appbrowser I don't know? > And if I find this change. Is it made for the specific LC version for

AW: can I customize the label of the ask buttons?

2013-07-16 Thread Tiemo Hollmann TB
Thanks Klaus, that was an easy one :) There also was the answer to the two different fonts of the two buttons since LC 6.1. Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Klaus major-k > Gesendet: Dienstag, 16. Juli 20

Re: can I customize the label of the ask buttons?

2013-07-16 Thread Klaus major-k
Hi Tiemo, Am 16.07.2013 um 13:35 schrieb "Tiemo Hollmann TB" : > Thanks Klaus, that was an easy one :) hey, its Livecode, isn't it? :-D > There also was the answer to the two different fonts of the two buttons > since LC 6.1. Ah, great, two flies with one hit (oder so ;-) > Tiemo Best Klaus

AW: can I customize the label of the ask buttons?

2013-07-16 Thread Tiemo Hollmann TB
When trying to save I get the error "can't open stack backup file" Any idea? Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Klaus major-k > Gesendet: Dienstag, 16. Juli 2013 13:37 > An: How to use LiveCode > Betreff: R

Re: can I customize the label of the ask buttons?

2013-07-16 Thread Klaus major-k
Hi Tiemo, Am 16.07.2013 um 14:09 schrieb "Tiemo Hollmann TB" : > When trying to save I get the error "can't open stack backup file" > Any idea? No, works fine here in the Community version!? Do you have write permission in the folder where Livecode resides? Try to save the stack as revaskdialog

AW: can I customize the label of the ask buttons?

2013-07-16 Thread Tiemo Hollmann TB
My permissions are ok, thanks for the workaround! Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Klaus major-k > Gesendet: Dienstag, 16. Juli 2013 14:25 > An: How to use LiveCode > Betreff: Re: can I customize the label

Re: out-of-the-blue codesigning error

2013-07-16 Thread Mike Kerner
Wow. This gets weirder and weirder. I CAN build apps with XCode, but not LiveCode. On Mon, Jul 15, 2013 at 8:05 AM, Mike Kerner wrote: > Yeah, tried that. I also deleted all my profiles, certs, etc. and > re-installed them all, too. No luck yet... > > > On Mon, Jul 15, 2013 at 6:42 AM, Dave

Re: [ANN] mergAV 3.5 for iOS and OS X and mergReader 1.1

2013-07-16 Thread Jim Lambert
Monte, Thanks for continuing to enhance your brilliant externals. Jim Lambert ___ 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

Re: [ANN] mergAV 3.5 for iOS and OS X and mergReader 1.1

2013-07-16 Thread Monte Goulding
On 17/07/2013, at 2:13 AM, Jim Lambert wrote: > Thanks for continuing to enhance your brilliant externals. Thanks Jim -- Monte Goulding M E R Goulding - software development services mergExt - There's an external for that! ___ use-livecode mail

How can I edit a built-in cursors

2013-07-16 Thread Paul D. DeRocco
I'd like to create a modified version of one of the standard cursors (the "hand"). Is that stored somewhere inside LiveCode, and if so, how can I get the images into an icon editor like ICOFX or other graphics editor like Photoshop? I can't copy it to the clipboard with a screen capture because tha

QT playback of remote files

2013-07-16 Thread J. Landman Gay
My project loads a player with a URL to a remote audio file on a fast server like this: set the filename of player 1 to https://xxx.xxx..m4a start player 1 Sometimes it works fine, but frequently nothing plays. I think, but am not positive, that I've traced it to an issue where the player

Re: Managing Long IDs?

2013-07-16 Thread Geoff Canyon
Arrays are your friend here. If that's too much trouble, you could switch to numtochar(N) with N < 9, or simply escape the commas on the way in and out, but still: arrays. Sent from my iPad On Jul 15, 2013, at 6:30 PM, Scott Rossi wrote: > For example, a line contains an object's long ID + co

Re: How can I edit a built-in cursors

2013-07-16 Thread J. Landman Gay
On 7/16/13 7:57 PM, Paul D. DeRocco wrote: I'd like to create a modified version of one of the standard cursors (the "hand"). Is that stored somewhere inside LiveCode, and if so, how can I get the images into an icon editor like ICOFX or other graphics editor like Photoshop? I can't copy it to th

Re: Managing Long IDs?

2013-07-16 Thread Dar Scott
I agree about arrays. However, for me, there are cases such as the items of the lines of the pendingMessages. There one has to be clever (careful?) in chunk expressions. Dar On Jul 16, 2013, at 9:40 PM, Geoff Canyon wrote: > Arrays are your friend here. If that's too much trouble, you could