Re: hide / show oddities ?

2014-11-27 Thread Graham Samuel
Coming a little late to this conversation, I think I have seen this too, in LC 7 rc2. I have several instances of ‘show’ that work, and one, where I have to show a splash screen, that doesn’t. Like you Alex, I automatically thought that it must be something I’m doing wrong, but now I am not so

Button is behavior

2014-11-27 Thread FlexibleLearning.com
Is there a way to identify whether a button is used as a behavior? e.g. the isBehavior of btn 1 Just asking. Hugh Senior FLCo ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: hide / show oddities ?

2014-11-27 Thread Alan Stenhouse
Possibly mismatched lock screen / unlock screen ? (Though still seems very weird and sounds like a bug). On 27/11/2014, at 11:52 AM, use-livecode-requ...@lists.runrev.com wrote: From: Alex Tweedly a...@tweedly.net To: How to use LiveCode use-livecode@lists.runrev.com Subject: hide / show

EU VAT changes small software businesses

2014-11-27 Thread Ian Wood
I searched and couldn't find any discussion on the list, and this affects rather a lot of us... http://ec.europa.eu/taxation_customs/taxation/vat/how_vat_works/telecom/index_en.htm From Jan 1st, business-to-customer software sales within the EU have to charge VAT based on the buyer's country

Re: EU VAT changes small software businesses

2014-11-27 Thread Mark Schonewille
Hi Ian, Really, I don't have the slightest idea. It is not realistic for me to pay VAT to each individual country. I guess I will do nothing and wait for a letter from the tax office. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage:

Re: EU VAT changes small software businesses

2014-11-27 Thread Dave Cragg
Ian, For UK businesses, the link below gives some information of one way to handle this. I'm not sure how useful this is. Thankfully, I'm not affected at the moment. https://www.gov.uk/government/publications/vat-supplying-digital-services-and-the-vat-mini-one-stop-shop Cheers Dave On 27

Re: EU VAT changes small software businesses

2014-11-27 Thread Ian Wood
Hi Dave, I forgot to post that link. :-( It doesn't help much because I'm a sole trader under the UK VAT threshold - VAT-registering the entire business for the sake of 1000€ in software turnover would wipe out about half my income. At the moment it looks like I'll either have to stop the

AW: EU VAT changes small software businesses

2014-11-27 Thread Tiemo Hollmann TB
Our backoffice software for invoicing etc. can't manage that either on line level. Btw. the new european tax law only affects business with downloadable digital products (video, software, etc.) no physical shipped products. Tiemo -Ursprüngliche Nachricht- Von: use-livecode

Re: EU VAT changes small software businesses

2014-11-27 Thread Matthias Rebbe | M-R-D
Hi Ian, thanks for bringing this to my attention. Until today i was not aware that there will be changes in EU law. At the moment i use 2 different ways to sell my license keys (which i create with Jacques great tool Zygodact) 1. Paypal from within my website There i am charging 19% VAT.

Re: EU VAT changes small software businesses

2014-11-27 Thread Björnke von Gierke
So basically, every one of you EU software sellers is going to be fucked. It seems that using the MOSS is only applicable if you yourself have a VAT identification number. Furthermore it seems to be opt in and not mandatory. Nontheless, it seems to me that you then will need to do the Vat stuff

Re: EU VAT changes small software businesses

2014-11-27 Thread Ian Wood
On 27 Nov 2014, at 14:25, Björnke von Gierke wrote: So basically, every one of you EU software sellers is going to be fucked. No, Anyone who sells in the EU and outside their own country, no matter *where* they're based in the world. :-( Ian ___

Re: Button is behavior

2014-11-27 Thread dunbarx
Hugh. You could surely write a short function, asking if the behavior of your button of interest is empty. Craig -Original Message- From: FlexibleLearning.com ad...@flexiblelearning.com To: use-livecode use-livecode@lists.runrev.com Sent: Thu, Nov 27, 2014 5:53 am Subject: Button

Re: Button is behavior

2014-11-27 Thread Mike Bonner
Have perused the dictionary, don't think there is currently a way to do what you want. Feature request? The only other option would be to cycle through the controls and build a behavior list. Might be interesting to do though, build an array keyed by button id, that contains a list of objects

Server boot time - font init

2014-11-27 Thread Richard Gaskin
Looking for ways to streamline CGI performance I made this simple script to measure boot time: #!livecode-server put Howdy! quit ...and then ran it with strace to see the system calls it makes: strace -v -o lctrace.txt ./test.lc Looking at the resulting output file I was surprised to find

Re: Button is behavior

2014-11-27 Thread Mark Wieder
Mike- Thursday, November 27, 2014, 8:16:18 AM, you wrote: Have perused the dictionary, don't think there is currently a way to do what you want. Feature request? I'm not even sure a feature request would help here. Being used as a behavior isn't a property of an object, it's just a reference

Re: Button is behavior

2014-11-27 Thread Mike Bonner
Was curious and tried it. 4000 controls, took 107 milliseconds to index, on my system. It picked up datagrid behaviors too. local sObehaveListA on mouseUp put the milliseconds into tStart put empty into sObehaveListA repeat with i = 1 to (the number of controls of this stack) if

Re: Button is behavior

2014-11-27 Thread Mark Wieder
Mike- Nice. That gives you a concordance. And then isBehavior becomes function isBehavior pButtonName return pButtonName is among the lines of the keys of sObehaveListA end isBehavior -- -Mark Wieder ahsoftw...@gmail.com This communication may be unlawfully collected and stored by the

Re: External files in Standalones

2014-11-27 Thread tbodine
Hi Bill. Have you run into any problems yet with your Mac standalone getting rejected by Gatekeeper under 10.9.5 or later? Apparently the app bundle structure is under new restrictions with Apple's V2 codesigning rules, Resources should not be located in directories where the system expects to

Re: EU VAT changes small software businesses

2014-11-27 Thread Erik Beugelaar
The whole European ³dream² just sucks... That circus located in Brussel is only good for run-out politicians and their ³believers² who are eating our tax money earned by hard working people. By the way given away by our own stupid government esp. my Dutch government (642.M euro tax money). The

Re: Server boot time - font init

2014-11-27 Thread Mark Wieder
Richard- Thursday, November 27, 2014, 8:20:07 AM, you wrote: What is nohwcap, and why would the engine keep looking for it over and over after it's already been told it isn't there? There's an *interesting* writeup over at

Re: Button is behavior

2014-11-27 Thread Peter Haworth
I have a script that does that and also makes bulk changes to a specific behavior. It's on the Free Stuff page of my web site www.lcsql.com, cleverly titled FindBehaviors. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin

Re: External files in Standalones

2014-11-27 Thread Earthednet-wp
Tom, I've been developing a large app in LC, while learning LC, and am just now at the stage of building a standalone. So, I haven't faced the apple store requirements yet. I guess I should spend more time looking at the forums, because for now I've concentrated on this list for info, and

Re: External files in Standalones

2014-11-27 Thread Marty Knapp
Ohanaware has just released App Wrapper 3 which I'm using (I'm just code signing, not using the App Store though) with success. Sam Rowlands is a great guy and has specifically worked with RunRev to make his product compatible with Livecode. Version 3 will take of Apple's new version 2

Re: EU VAT changes small software businesses

2014-11-27 Thread Richmond
On 27/11/14 14:08, Dave Cragg wrote: Ian, For UK businesses, the link below gives some information of one way to handle this. I'm not sure how useful this is. Thankfully, I'm not affected at the moment.

Re: EU VAT changes small software businesses

2014-11-27 Thread Richmond
On 27/11/14 19:00, Erik Beugelaar wrote: The whole European ³dream² just sucks... That circus located in Brussel is only good for run-out politicians and their ³believers² who are eating our tax money earned by hard working people. By the way given away by our own stupid government esp. my Dutch

Re: External files in Standalones

2014-11-27 Thread William Prothero
Marty: Thanks! I just downloaded App Wrapper 3 and will be trying it out over the next day or so. Best, Bill On Nov 27, 2014, at 9:59 AM, Marty Knapp martyknapps...@gmail.com wrote: Ohanaware has just released App Wrapper 3 which I'm using (I'm just code signing, not using the App Store

Re: EU VAT changes small software businesses

2014-11-27 Thread Erik Beugelaar
LOL! Thanks Richmond for your mental support. Cheers, Erik On 27/11/14 19:27, Richmond richmondmathew...@gmail.com wrote: On 27/11/14 19:00, Erik Beugelaar wrote: The whole European ³dream² just sucks... That circus located in Brussel is only good for run-out politicians and their

Re: EU VAT changes small software businesses

2014-11-27 Thread Richmond
On 27/11/14 21:18, Erik Beugelaar wrote: LOL! Thanks Richmond for your mental support. Cheers, Erik Almost all of my support is 'mental'. Richmond. On 27/11/14 19:27, Richmond richmondmathew...@gmail.com wrote: On 27/11/14 19:00, Erik Beugelaar wrote: The whole European ³dream²

[OT] baby

2014-11-27 Thread Monte Goulding
Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few breathing issues so needs some extra O2 for a while. Cheers Monte -- M E R Goulding Software development services mergExt -

Re: Button is behavior

2014-11-27 Thread FlexibleLearning.com
Thought as much, Mike. Only wondered if I had missed some new keyword among all the enhancements recently made by the mothereship. As the years advance I find I miss more than I used to, and what don't miss I forget! Hugh Senior FLCo Mike Bonner bonnm...@gmail.com wrote: Was curious and

Re: [OT] baby

2014-11-27 Thread Gerry
Congratulations! So pleased for you! Gerry On Fri, 28 Nov 2014 at 7:14 am, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few

Re: [OT] baby

2014-11-27 Thread Alex Tweedly
Wonderful news ! Congratuations. -- Alex. On 27/11/2014 20:14, Monte Goulding wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few breathing issues so needs some extra O2 for

Re: [OT] baby

2014-11-27 Thread Roger Eller
Congrats, Monte! ~Roger On Nov 27, 2014 3:14 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few breathing issues so needs some

Re: [OT] baby

2014-11-27 Thread Eric Corbett
Congrats Monte and Rebecca. Best wishes. - eric On Nov 27, 2014, at 12:14, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a

Re: [OT] baby

2014-11-27 Thread Earthednet-wp
Congrats on a new life adventure. Bill William Prothero http://es.earthednet.org On Nov 27, 2014, at 12:14 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and

Re: [OT] baby

2014-11-27 Thread Pierre Sahores
Congrats Monte and Rebecca. Lots of « Créer, donner, aimer » to Sarah. Warm Regards, Pierre Le 27 nov. 2014 à 21:14, Monte Goulding mo...@sweattechnologies.com a écrit : Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and

Re: [OT] baby

2014-11-27 Thread Kevin Miller
Congratulations!! Sent from my iPhone On 27 Nov 2014, at 20:14, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few breathing

Re: [OT] baby

2014-11-27 Thread Bill Vlahos
How exciting! The best to you and your family. Bill Vlahos Sent from my iPhone On Nov 27, 2014, at 12:14 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and

Re: [OT] baby

2014-11-27 Thread Alain Vezina
Congratulations. The best for you three. Alain Vézina, directeur Logilangue 514-596-1385 www.logilangue.com Le 2014-11-27 à 15:14, Monte Goulding mo...@sweattechnologies.com a écrit : Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days.

Re: [OT] baby

2014-11-27 Thread Marc Van Cauwenberghe
Congratulations!!! Verstuurd vanaf mijn iPhone Op 27-nov.-2014 om 21:14 heeft Monte Goulding mo...@sweattechnologies.com het volgende geschreven: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing

Re: Button is behavior

2014-11-27 Thread Mike Bonner
Mind if I ask why you need this? Always interested in the hows and whys of others, which often gives me new ideas I may not have otherwise had. On Thu, Nov 27, 2014 at 1:19 PM, FlexibleLearning.com ad...@flexiblelearning.com wrote: Thought as much, Mike. Only wondered if I had missed some new

Re: [OT] baby

2014-11-27 Thread Mike Bonner
Congrats! And prayers too. On Thu, Nov 27, 2014 at 3:15 PM, Marc Van Cauwenberghe marc.vancauwenber...@pandora.be wrote: Congratulations!!! Verstuurd vanaf mijn iPhone Op 27-nov.-2014 om 21:14 heeft Monte Goulding mo...@sweattechnologies.com het volgende geschreven: Hi Folks We

RE: [OT] baby

2014-11-27 Thread Nakia Brewer
Congrats! Nakia Brewer | Technology Solutions Manager | Equipment Management Solutions t: (02) 49645051 | m: 0458 713 547 | i: www.westrac.com.au ACN 009 342 572 -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Monte Goulding Sent:

Re: External files in Standalones

2014-11-27 Thread William Prothero
Marty: Where do you put the folders that contain external binary and image data? The App Wrapper somehow loses the path to them. The standalone that Livecode creates finds these files, but App Wrapper somehow loses the link, even tho the files are still present. So, I’m worrying over how to

Re: [OT] baby

2014-11-27 Thread Matthias Rebbe | M-R-D
Monte, congratulations to you and your wife! Matthias Am 27.11.2014 um 21:14 schrieb Monte Goulding mo...@sweattechnologies.com: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has

Re: [OT] baby

2014-11-27 Thread Dave Kilroy
Congratulations to you and Rebecca - and to Sarah Hello newbie! - Some are born coders, some achieve coding, and some have coding thrust upon them. - William Shakespeare Hugh Senior -- View this message in context:

RE: [OT] baby

2014-11-27 Thread Ralph DiMola
Margaret and I send our love. Congrats!! Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net div Original message /divdivFrom: Monte Goulding mo...@sweattechnologies.com /divdivDate:11/27/2014 15:14 (GMT-05:00) /divdivTo: How to use LiveCode

Re: [OT] baby

2014-11-27 Thread mikedoub
Best wishes to you and your family.  It truly is a day for Thanksgiving.   And maybe we all have a new microcoder among us!  That would be grand.  ‎:-) Mike   Original Message   From: Ralph DiMola Sent: Thursday, November 27, 2014 8:43 PM To: How to use LiveCode Reply To: How to use LiveCode

Re: [OT] baby

2014-11-27 Thread Stephen MacLean
Congrats Monte!!! Best, Steve MacLean On Nov 27, 2014, at 3:14 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few

Need list of books available for LiveCode

2014-11-27 Thread Alejandro Tejada
on Mon, 24 Nov 2014 Andre Garzia wrote: I know some of the books available about LiveCode but I am sure I am missing some more recent endeavours. Can you folks provide me with replies listing the current and future books available? I own livecodebooks.com and I want to set it up like I did

Re: [OT] baby

2014-11-27 Thread Richmond
On 11/27/2014 10:14 PM, Monte Goulding wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few breathing issues so needs some extra O2 for a while. Cheers Monte The ultimate

Re: [OT] baby

2014-11-27 Thread Mark Talluto
Wonderful news Monte. Congratulations! -Mark On Nov 27, 2014, at 12:14 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Folks We just had a baby so I won't be able to get to mergExt related questions for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a few