Beeing a developer after 40

2016-04-28 Thread Erik Beugelaar
For who it may concern... (I am 49...;-) Adrian Kosmaczewski destroys any concerns you may have about becoming an older developer (19 minute read): http://bit.ly/1qWJy53 Have a nice day! Erik -- Sent from Matwetwe

Re: Vertical Scroll Bar in Scrolling Field

2016-04-28 Thread Kay C Lan
On Fri, Apr 29, 2016 at 10:27 AM, Sannyasin Brahmanathaswami < bra...@hindu.org> wrote: > In <7 versions I remember the vertical scroll bar only appeared if the > formattedText of the field was “taller” than the field height? Otherwise > the scroll bar was hidden. > > Hmmm, that's how I thought I

Re: Clearing local variables

2016-04-28 Thread Kay C Lan
On Thu, Apr 28, 2016 at 11:47 PM, Mark Waddingham wrote: > > From 7.0 onwards, this causes no problem as the engine takes a 'copy' of > the target variable at the start of the loop. (Note you only pay for that > copy when you mutate tList subsequently, and that mutation has no

Vertical Scroll Bar in Scrolling Field

2016-04-28 Thread Sannyasin Brahmanathaswami
Am I daft? In <7 versions I remember the vertical scroll bar only appeared if the formattedText of the field was “taller” than the field height? Otherwise the scroll bar was hidden. ?? Is there a way to get the behavior Svasti Astu, Be Well Brahmanathaswami www.himalayanacademy.com

Re: LC7 Community - Documentation window does not appear

2016-04-28 Thread Kay C Lan
On Thu, Apr 28, 2016 at 7:14 PM, Robert Mann wrote: > Thanks Kay.. that was it!! > > Glad to help. Also, welcome back and you should give LC 8 a go ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Query for valid email

2016-04-28 Thread Bob Sneidar
I don't think so. If it is a single server, and you can manage the server, I'd export a list of email addresses and that you can script. If not, then I would have bounce messages ruled into a particular mail folder. That way you can at least find a way to compile the bounced addresses. For

[OT] mySQL in Windows 7 with SSL

2016-04-28 Thread Bob Sneidar
Has anyone ever successfully gotten mySQL running in Windows 7 and properly implemented openssl? You would think that both of these products, being around for a long time and so widely used, would have a simple way to install/setup/use them. It isn't so. It is an unmitigated pig. I am at the

Re: how to create a Custom Control

2016-04-28 Thread Sannyasin Brahmanathaswami
Ali wrote... >> put the keys of (the properties of the templatefield) That works…tks ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: inheriting a custom property from a supergroup ("effective" custom property)

2016-04-28 Thread Dr. Hawkins
On Wed, Apr 27, 2016 at 5:00 PM, Monte Goulding wrote: > Actually if not being set has value then I don't think you want effective > either. I think you need a property on any parent that should be ignored > when recursing through the hierarchy. > Ack. You're right;that's

Re: SQLite and Android devices

2016-04-28 Thread Roger Eller
Here's an old reference, but it's probably still relevant. https://www.mail-archive.com/use-livecode%40lists.runrev.com/msg2.html On Thu, Apr 28, 2016 at 11:38 AM, Alain Vezina wrote: > Hi Ralph, > > Thanks for the information. I tried it and now I can look

Re: how to create a Custom Control

2016-04-28 Thread Richard Gaskin
Ali Lloyd wrote: > On Thu, Apr 28, 2016 at 4:21 PM Richard Gaskin wrote: > >> Sannyasin Brahmanathaswami wrote: >> > Hmmm I could have sworn this worked years ago: >> > >> > put the keys of templatefield >> > >> > But it doesn’t today… how to you see all the props for the >> > template? >> >>

Re: how to create a Custom Control

2016-04-28 Thread Ali Lloyd
I suspect put the keys of (the properties of the templatefield) is what you want. On Thu, Apr 28, 2016 at 4:21 PM Richard Gaskin wrote: > Sannyasin Brahmanathaswami wrote: > > Hmmm I could have sworn this worked years ago: > > > > put the keys of templatefield >

Re: Clearing local variables

2016-04-28 Thread Mark Waddingham
On 2016-04-28 03:31, Kay C Lan wrote: If you do not understand what isn't 'variable' and what really gets checked at each iteration for each style of repeat then you are likely to see some unexpected results. On the other hand, if do understand what is really going on, then you can modify x to

Re: SQLite and Android devices

2016-04-28 Thread Alain Vezina
Hi Ralph, Thanks for the information. I tried it and now I can look inside my Android app. But my main problem is that my DB can’t be opened by the program I installed in my Android device. That the same for HTML files. Is it a question of permission I have to get or something like? You know,

Re: how to create a Custom Control

2016-04-28 Thread Richard Gaskin
Sannyasin Brahmanathaswami wrote: > Hmmm I could have sworn this worked years ago: > > put the keys of templatefield > > But it doesn’t today… how to you see all the props for the template? Please try it in v8.0rc1 and if it fails submit your recipe in a bug report. -- Richard Gaskin

Re: Clearing local variables

2016-04-28 Thread Richard Gaskin
Possibly tricky, but this should work, no?: set the script of tObj to the script of tObj -- Richard Gaskin Fourth World Systems Software Design and Development for the Desktop, Mobile, and the Web

Re: SQlite and Android devices

2016-04-28 Thread Roger Eller
The structure of an APK is the same as ZIP. Rename the file to whatever.zip and you can look around. Don't change the contents and try to rename a .zip to .apk because the checksum will fail. ~Roger On Thu, Apr 28, 2016 at 8:55 AM, Alain Vezina wrote: > Hi all,

Re: how to create a Custom Control

2016-04-28 Thread Sannyasin Brahmanathaswami
Kevin: “Use them [widgets] only when really needed” Ok that makes good sense that as a strategy On 4/27/16, 10:41 AM, "use-livecode on behalf of Richard Gaskin" wrote: >They're >easy enough to make in LC

RE: SQLite and Android devices

2016-04-28 Thread Ralph DiMola
The apk is just a zip file with an apk extension. Rename it .zip and you can look inside. The database can't be opened in the apk(the engine folder). The apk is read-only. Even if you don't write to it you must still copy it out to the documents folder and open it there. I never tried to open a DB

Re: AW: Windows Media

2016-04-28 Thread Roger Eller
I don't think Linux has been forgotten. It just doesn't get the long overdue attention for a media re-write _first_. I too expect one media syntax in LiveCode - to control whichever low level media player exists on each platform. ~Roger On Thu, Apr 28, 2016 at 4:19 AM, RM

SQlite and Android devices

2016-04-28 Thread Alain Vezina
Hi all, I am testing one of my apps on an Android device for the first time. I have never had any problem with the same date base on iOS devices. Before I start, I checked the LiveCode lesson How to create and use an SQLite database. Using LC 7.1.3 in Mac (Maveriks) and Android 5.1.1, I

Re: LC7 Community - Documentation window does not appear

2016-04-28 Thread Robert Mann
Thanks, to close the matter neatly, i've just added a minutes utility stack at rev online that referenced this thread and that I put in my plugins in case it does happen later and I forget about it! -- View this message in context:

Re: LC7 Community - Documentation window does not appear

2016-04-28 Thread Mark Waddingham
On 2016-04-28 13:14, Robert Mann wrote: Thanks Kay.. that was it!! -- Yes I use dual monitors all the time. -- Setting the loc made the ghost reappear! I thought it could be something like that but i did not have the name of the Dictionnary stack as it does not appear in the list of stacks

Re: LC7 Community - Documentation window does not appear

2016-04-28 Thread Robert Mann
Thanks Kay.. that was it!! -- Yes I use dual monitors all the time. -- Setting the loc made the ghost reappear! I thought it could be something like that but i did not have the name of the Dictionnary stack as it does not appear in the list of stacks in the application browser. May this thread

Re: LiveCode Server Script reference on DevDocs.io

2016-04-28 Thread Dave Kilroy
Thank for this Erik - looks great and yes we should include LC Server (and maybe LCB when it matures) I had a look at https://trello.com/b/6BmTulfx/devdocs-documentation and couldn't find an entry for LiveCode - I decided I shouldn't instigated a request as I'm not a member of the DevDocs

Re: LiveCode Server Script reference on DevDocs.io

2016-04-28 Thread Pierre Sahores
Thanks for sharing this link, Erik. > Le 28 avr. 2016 à 09:44, Erik Beugelaar a écrit : > > Dear Members, > > > > One of the best language reference sites in my opinion is > http://www.devdocs.io. > > > > DevDocs also works offline and can be installed in Chrome. >

Re: AW: Windows Media

2016-04-28 Thread RM
On 28.04.2016 11:12, Tiemo Hollmann TB wrote: Hello Richmond, for my understanding the LC paradigma "develop on one platform - deploy many" should be kept with the new video Player engine for windows. In easy words I would think if you set the option "don't use QT", that only the engine

Images in Tabs

2016-04-28 Thread RM
Um, well, votes? http://forums.livecode.com/viewtopic.php?f=6=27143 Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

AW: Windows Media

2016-04-28 Thread Tiemo Hollmann TB
Hello Richmond, for my understanding the LC paradigma "develop on one platform - deploy many" should be kept with the new video Player engine for windows. In easy words I would think if you set the option "don't use QT", that only the engine interfaces to QT will be switched to DirectShow on

LiveCode Server Script reference on DevDocs.io

2016-04-28 Thread Erik Beugelaar
Dear Members, One of the best language reference sites in my opinion is http://www.devdocs.io. DevDocs also works offline and can be installed in Chrome. DevDocs is free and open source and would it be an idea to vote for the availability of LiveCode Server Script on their site? I know

Re: Windows Media

2016-04-28 Thread RM
Great News if you are only developing for Windows. I am well aware that Windows represents the Lion's share of installed desktop operating systems,. However, clever and super as this is, it does mean that the idea of developing on one platform and then deploying to many without any