Re: Installing iOS SDK and Xcode on Windows 7.

2011-07-29 Thread Andrew Kluthe
I may be wrong, but I am pretty sure iOS dev is limited to Mac Only. :\ -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Installing-iOS-SDK-and-Xcode-on-Windows-7-tp3702599p3703277.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: Virtual Appliances

2011-08-02 Thread Andrew Kluthe
I use turnkey linux appliances for a lot of things, but I guess I don't follow what you are talking about in the later half of your post. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Virtual-Appliances-tp3713223p3713853.html Sent from the Revolution - User maili

Re: Virtual Appliances

2011-08-02 Thread Andrew Kluthe
Well, I guess I lied when I said I didn't understand the second part. I did understand it. What I didn't understand was how this relates to Turnkey linux Virtual Appliances. They are good for things like a fast redmine setup, or an XMPP server, or a lampstack. How does that technology you spoke

Re: Virtual Appliances

2011-08-03 Thread Andrew Kluthe
Oh, ok then! Carry on! :) -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Virtual-Appliances-tp3713223p3716017.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-li

[Server] create stack trouble

2011-08-05 Thread Andrew Kluthe
Was just trying to test out some things on my on-rev account. This is a simple little script to take a $_GET string, show me the defaultFolder, and create a stack on disk named after that string. No errors, but the stack isn't being created. I am using the new .lc extension. Insights?

Stack Password Protection

2011-08-08 Thread Andrew Kluthe
Hey all, I have an application that uses several different stackfiles that are loaded by a standalone launcher (sort of like stackrunner). I want to be able to encrpyt the stackfiles so that the user can't just open up the stacks in a text editor and see my code. I can't find a lot of information

Re: Stack Password Protection

2011-08-08 Thread Andrew Kluthe
So password protecting these stacks don't affect what happens when my standalone opens one of them? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Stack-Password-Protection-tp3728618p3728647.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: Stack Password Protection

2011-08-08 Thread Andrew Kluthe
Nice! I was terrified to just try and make the leap on my finished product without asking about how it works first. I thought the standalone needed to give a password to run the stacks. Now I realize how these work! Awesome! -- View this message in context: http://runtime-revolution.278305.n4.nab

[On-Rev] Using Shell to Manipulate SQL

2011-08-08 Thread Andrew Kluthe
Here is another thing I am wondering about this evening. I am curious as to how much power the Shell() function in an On-Rev configuration is. I'd like to create mySQL databases & users on the fly. I know the shell() function can run commands for you, but do you think I will be able to create mys

Re: [On-Rev] Using Shell to Manipulate SQL

2011-08-08 Thread Andrew Kluthe
Tested it out and it just seems I don't have access to the mySQL root account on my on-rev. Probably because its shared hosting. A simple grep for uptime: Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) -- View this message in context: http://r

Re: Ask Password and Login Screen

2011-08-17 Thread Andrew Kluthe
Hi Gregory, I do this in an application. It requires an email address and a password to get access to data on a remote db served up through web services. Basically, I just have a form with a username and a password field control from http://droptools.sonsothunder.com/all.irev It has a checkbox t

Re: Confused about storing arrays in a custom property

2011-08-22 Thread Andrew Kluthe
It sounds to me like binary is the data type you want here. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Confused-about-storing-arrays-in-a-custom-property-tp3757539p3760664.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: [OT] Can someone help me acquire a HP TouchPad?

2011-08-23 Thread Andrew Kluthe
I live in a very rural part of the midwest and I demoed one of these at the "Sams Club" (a membership based store) chain a few weeks back when they came out. I'm kind of hoping they are hanging on to some of these still. I can price match them there even if they don't have them discounted. If I f

Re: [OT] Can someone help me acquire a HP TouchPad?

2011-08-23 Thread Andrew Kluthe
I'll be checking tomorrow and if they do I will try and buy two right then and there. We'll work out the details after I secure you one. Email off list so I can contact you faster if I find you one. I think the chances are good that no-one bothered to look at this store (where they had them on di

libJSON

2011-09-26 Thread Andrew Kluthe
Hey folks, A while back I had my hands on Mark Smith's JSON library for serializing arrays into JSON. The link to his website seems to be down. Anyone know where I can pick a copy of this up? Thanks, Andrew ___ use-livecode mailing list use-livecode@

Re: libJSON

2011-09-26 Thread Andrew Kluthe
I should have looked at RevOnline first. http://revonline2.runrev.com/stack/82/LibJson-1-0b Here is the link for people searching the list later on. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/libJSON-tp3845854p3845857.html Sent from the Revolution - User ma

Re: So RunRev wants more of my money- what has been fixed?

2011-10-11 Thread Andrew Kluthe
I was fairly unimpressed with what turned out to be "the big 5.0". Seems not a whole lot has changed besides RevServer since 4.0. I think I'll wait for 6.0 or 7.0. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/So-RunRev-wants-more-of-my-money-what-has-been-fix

Re: WordLib Test Docs and LiveCode 5

2011-11-09 Thread Andrew Kluthe
WordReport Saved My Job. Any interesting things happening with that? Thank You! -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/WordLib-Test-Docs-and-LiveCode-5-tp4021657p4021858.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: WordLib Test Docs and LiveCode 5

2011-11-09 Thread Andrew Kluthe
I had been working on a Latex based reporting system for a Lease Making Program and it was full of gotchas and bloated dependencies. WordReport made it so much easier and more powerful than what I had been working on and nearly gave up on. Giving up on that project in livecode that I had nearly spe

Re: setting data grid columns by code

2011-11-10 Thread Andrew Kluthe
columns - Line delimited list of columns in your table. put the dgProp["columns"] of group "Data Grid" into sColumns set the dgProp["columns"] of group "Data Grid" to sColumns It produces and accepts a line delimited list of columns. I have never done this from script but I use it from message b

Re: Indirect reference

2011-11-17 Thread Andrew Kluthe
There are other ways to accomplish what you need, but here is what you are looking for. do "put" && theTime && "into" && tField this would execute --> put "what was in theTime" into "what was in tField" http://docs.runrev.com/Command/do -- View this message in context: http://runtime-revolutio

Re: [OT] A FLASH in the pan? Part 2

2011-11-19 Thread Andrew Kluthe
Honestly, I don't think these topics are really appropriate for this list. Unless, it is a sign that I can start bombing it with propaganda. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/OT-A-FLASH-in-the-pan-Part-2-tp4086974p4087678.html Sent from the Revolutio

PHP & LiveCode Server

2011-11-22 Thread Andrew Kluthe
On the desktop, I can execute python and other scripting languages. But how might one go about making calls to PHP functions in LiveCode Server? I have all of these wonderfully useful PHP libraries for different web services. While I have been making a habit of trying to recreate them in livecode

Re: PHP & LiveCode Server

2011-11-22 Thread Andrew Kluthe
Very true, but unfortunately this is similar to what I am doing now which is making a script file that loads the library and calls the function I need with parameters being passed via post. This also means I have about 15 different .php scripts that take post information floating on my server. I co

Re: [ANN] Extensions for LiveCode/Linux

2011-12-19 Thread Andrew Kluthe
Im looking at the webkit extension now. Looks nice. Only other requirement is python, correct? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-Extensions-for-LiveCode-Linux-tp4214251p4214640.html Sent from the Revolution - User mailing list archive at Nabble.

Re: Sending hundreds of eMails

2012-01-05 Thread Andrew Kluthe
When sending out registration and lost password emails and what not I found this service. Many of my emails were hitting peoples spam boxes. The easiest (although not free. $1.50/1000 emails) way to send bulk emails out that you know will hit their inbox is using postmarkapp.com . They have tons of

Re: Automated Testing Tool

2012-01-31 Thread Andrew Kluthe
This is very neat. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Automated-Testing-Tool-tp4345249p4346888.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livec

Re: [ANN] sQuiRt V1.1.0 update

2012-02-05 Thread Andrew Kluthe
:O -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-sQuiRt-V1-1-0-update-tp4359702p4359845.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@l

input and output to a cli

2012-02-09 Thread Andrew Kluthe
Hey, I have a program with a command line interface that was written in nodejs to act as a bot for an irc server. It takes commands and prints responses and chatter in irc out to a command line. I launch it by calling this from a command line. node borg.js and I get a prompt similar to OHAI> an

Re: input and output to a cli

2012-02-09 Thread Andrew Kluthe
I'm familiar with how this is done on linux but anyone have any idea how to do it on windows? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/input-and-output-to-a-cli-tp4374607p4374977.html Sent from the Revolution - User mailing list archive at Nabble.com. _

Re: input and output to a cli

2012-02-09 Thread Andrew Kluthe
Nvm, I just found it. I didnt think you could do this on windows. Using the >> :) thanks. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/input-and-output-to-a-cli-tp4374607p4374983.html Sent from the Revolution - User mailing list archive at Nabble.com. _

Re: How alive is LiveCode?

2012-02-10 Thread Andrew Kluthe
In reference to report building, WordReport add-on for livecode has made this a breeze (if you don't mind getting .docx or openoffice formats, these can also be converted to pdf im sure with some vbscript). It helped me make a nice report engine with customizable report templates. Before doing this

Re: [OT] How Peach Works

2012-02-14 Thread Andrew Kluthe
Why is this here? I get enough spam in my inbox as it is. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/OT-How-Peach-Works-tp4388914p4388987.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Re: Get number of occurrences of one string in another

2012-02-22 Thread Andrew Kluthe
function substringCount pChar, pString put 0 into theCount repeat for each char theChar in pString if theChar is pChar then add 1 to theCount end if end repeat return theCount end substringCount Would work out nicely if there is not built in

exit repeat and nested repeats

2013-08-01 Thread Andrew Kluthe
end repeat -- Regards, Andrew Kluthe and...@ctech.me ___ 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

Re: exit repeat and nested repeats

2013-08-01 Thread Andrew Kluthe
my new book "Programming LiveCode for the Real Beginner" > http://qery.us/3fi > > Fill out this survey please > http://livecodebeginner.**economy-x-talk.com/survey/<http://livecodebeginner.economy-x-talk.com/survey/> > > > On 8/1/2013 22:22, Andre

Re: MobGui and Resolution Indipendence

2013-08-06 Thread Andrew Kluthe
ts.runrev.com/mailman/listinfo/use-livecode > -- Regards, Andrew Kluthe and...@ctech.me ___ 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

Option Menu Scroll Wheel

2013-08-06 Thread Andrew Kluthe
Hey Y'all, I have had a request to make the option respond to the scroll wheel of a mouse on windows instead of having to manually scroll down. Does anyone know if this is possible? -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode ma

Re: Short Term LiveCode/RDBMS Project Help Wanted

2013-09-05 Thread Andrew Kluthe
eans. > On the third day, God put the animals on hold for a few hours, >and did a little diving. > And God said, "This is good." > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to

Re: OT: Sparkleshare

2013-09-10 Thread Andrew Kluthe
; > -- > > Use an alternative Dictionary viewer: > http://bjoernke.com/bvgdocu/ > > Chat with other RunRev developers: > http://bjoernke.com/chatrev/ > > > > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please

Re: OT: Sparkleshare

2013-09-10 Thread Andrew Kluthe
ivecode 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 > -- Regards, Andrew Kluthe and...@ctech.me ___

Re: Unwanted password protection

2013-09-10 Thread Andrew Kluthe
e visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode > -- Regards, Andrew Kluthe and...@ctech.me ___ 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: Using a Datagrid as background?

2013-09-11 Thread Andrew Kluthe
aus > > -- > Klaus Major > http://www.major-k.de > kl...@major-k.de > > > ___ > 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 > -- Regards, Andrew Kluthe and...@ctech.me ___ 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: Field calculations

2013-09-11 Thread Andrew Kluthe
Thank you >> >> Vaughn Clement >> >> > __**_ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://li

lcVCS - Getting started

2013-09-12 Thread Andrew Kluthe
. Is there anywhere I can get my hands on the plugin and maybe a little info on how to get started beyond the readme on the github page? -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: lcVCS - Getting started

2013-09-12 Thread Andrew Kluthe
specific I could contribute to. Kind regards, Andrew On Thu, Sep 12, 2013 at 3:59 PM, Monte Goulding wrote: > > On 13/09/2013, at 12:25 AM, Andrew Kluthe wrote: > > > I was going to contact Monte off list but I thought the info might be > > useful to others. > > >

Re: lcVCS - Getting started

2013-09-12 Thread Andrew Kluthe
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 > -- Regards, Andrew Kluthe and...@ctech.me __

Re: stack corrupted

2013-09-12 Thread Andrew Kluthe
-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode > -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode m

Re: PDF's to PNG's on Windows 8

2013-09-18 Thread Andrew Kluthe
e > to view and convert PDF files to single PNG's or JPEG's in Livecode. > > Suggestions? > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > subscrip

Re: Using Post tData?

2013-09-23 Thread Andrew Kluthe
o in a different direction > to access the mysql data from within a lc stack? > > > > Thanks in advance! > > > > John Patten > > SUSD > > ___ > > use-livecode mailing list > > use-livecode@lists.runrev.com >

Re: Using Post tData?

2013-09-23 Thread Andrew Kluthe
t version of PHP on-rev is using, but if it's one of the newer versions and you want to build a php based api for your database, I can't recommend this enough. http://net.tutsplus.com/tutorials/php/laravel-4-a-start-at-a-restful-api/ Regards, Andrew On Mon, Sep 23, 2013 at 8:28 AM

Re: OT: The Win UAC puts a shield on my program icon

2013-09-24 Thread Andrew Kluthe
_ > > 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: Password Protecting Projects With Password-Protected Stacks Attached

2013-09-28 Thread Andrew Kluthe
> __**_ > 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://lists.run

Re: [ANN] mergExt: Dropbox Sync External and iOS 7 Updates

2013-10-01 Thread Andrew Kluthe
e products. Regards, Andrew Kluthe On Tue, Oct 1, 2013 at 2:11 PM, Chris Sheffield wrote: > Excellent! > > Thanks so much for getting that figured out so quickly. Extremely > responsive, as always. :-) > > Thanks again, > Chris > > On Sep 30, 2013, at 5:06 PM, Monte

Updating iOS apps

2013-10-01 Thread Andrew Kluthe
in reading. -- Regards, Andrew Kluthe and...@ctech.me ___ 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: Updating iOS app

2013-10-02 Thread Andrew Kluthe
you to rapidly iterate while requiring very little effort from the > end users. > > Jim Lambert > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > su

Re: Sending mail from on-server

2013-10-03 Thread Andrew Kluthe
0581p4670583.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 m

Re: FieldFormatter: Working group

2013-10-03 Thread Andrew Kluthe
; term, > > I'd like it or something similar to be available at engine level, but > this > > is something we can all use now. > > > > Best regards, > > > > Hugh Senior > > FLCo > > > > > > > > > > > > > > > > ___ > > 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 > -- Regards, Andrew Kluthe and...@ctech.me ___ 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: Sending mail from on-server

2013-10-03 Thread Andrew Kluthe
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/u

Re: Encrypt/decrypt availability in server / devices

2013-10-07 Thread Andrew Kluthe
_ > > 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 > &g

Re: Passive Shell Commands

2013-10-10 Thread Andrew Kluthe
it this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode > -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.co

Hiding and Showing Pallettes

2013-10-14 Thread Andrew Kluthe
nd if end repeat pass resumeStack end resumeStack -- Regards, Andrew Kluthe and...@ctech.me ___ 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: Hiding and Showing Pallettes

2013-10-14 Thread Andrew Kluthe
script, and you should add a > check to be sure the clicked stack is the correct parent before taking any > action. > > > On 10/14/13 1:59 PM, Andrew Kluthe wrote: > >> Hey Ya'll, >> >> I have a window that has "child windows" that are to be

Re: Help with Arrays

2013-10-14 Thread Andrew Kluthe
e your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode > -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscri

Re: [OT] will amuse you Linux fans

2014-02-06 Thread Andrew Kluthe
t; 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 pref

Re: [OT] will amuse you Linux fans

2014-02-08 Thread Andrew Kluthe
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 > -- Regards, Andrew Kluthe and...@ctech.me ___ use-livec

Re: [OT] will amuse you Linux fans

2014-02-08 Thread Andrew Kluthe
Richmond, My response was directed towards Bob. On Sat, Feb 8, 2014 at 10:08 AM, Richmond wrote: > On 08/02/14 17:51, Andrew Kluthe wrote: > >> "Those who choose to obey the laws" are either those who are the >> beneficiaries of such instruments, or to whom the in

Re: [OT] will amuse you Linux fans

2014-02-08 Thread Andrew Kluthe
Gmail handles replies to list email a little differently. Unless I specifically hit reply on bobs email it just quotes the last one in the thread. Andrew On Sat, Feb 8, 2014 at 10:09 AM, Andrew Kluthe wrote: > Richmond, > > My response was directed towards Bob. > > > > O

Re: Crowd Funding Enhancements

2014-02-10 Thread Andrew Kluthe
the oceans. > On the third day, God put the animals on hold for a few hours, >and did a little diving. > And God said, "This is good." > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subs

Re: Crowd Funding Enhancements

2014-02-10 Thread Andrew Kluthe
And God said, "This is good." > >___ > >use-livecode mailing list > >use-livecode@lists.runrev.com > >Please visit this url to subscribe, unsubscribe and manage your > >

St. Louis User Group

2014-02-11 Thread Andrew Kluthe
spare time. Is there any interest in a STL meetup or User Group for livecode? I'll work on hosting and putting together the first one if I can get a response off list or on. -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing li

Re: [OT] question about stackoverflow - why was my posting deleted

2014-02-12 Thread Andrew Kluthe
> >> 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: RELEASE LiveCode 6.6 DP1

2014-02-14 Thread Andrew Kluthe
*Reporting Bugs* > If you encounter an issue with this release please submit a bug report to > our quality centre: http://quality.runrev.com/enter_bug.cgi > > Warm regards, > > The LiveCode Team > ___ > use-livecode mailing list > u

Re: RELEASE LiveCode 6.6 DP1

2014-02-20 Thread Andrew Kluthe
joernke.com/bvgdocu/ > > Chat with other RunRev developers: > http://bjoernke.com/chatrev/ > > > > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > subscrip

Re: DataGrid and launcher stack

2014-02-21 Thread Andrew Kluthe
nces: > http://lists.runrev.com/mailman/listinfo/use-livecode > -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pre

Re: Support for Mac OSX 10.5

2014-02-25 Thread Andrew Kluthe
n other goals that are more important to others bottoms lines as well. -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscriptio

Re: Support for Mac OSX 10.5

2014-02-25 Thread Andrew Kluthe
opinion? 1 year? 5 years? I would hate for runrev to spend several months to make something backwards compatible for a short time. Along with this time spent, I would imagine it would further complicate the code base in non-trivial ways. -- Regards, Andrew Kluthe and...@ctech.me _

Re: Support for Windows XP

2014-02-26 Thread Andrew Kluthe
lopers: http://www.LiveCodeJournal.com > Follow me on Twitter: http://twitter.com/FourthWorldSys > > > _______ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your &

Re: Support for Windows XP

2014-02-26 Thread Andrew Kluthe
unix-derived operating systems seem to be dominating currently between mac, linux, and stuff like android. -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, uns

Re: Support for Windows XP

2014-02-26 Thread Andrew Kluthe
26, 2014 at 12:44 PM, Andrew Kluthe wrote: > > > On Wed, Feb 26, 2014 at 11:37 AM, François Chaplais < > > francois.chapl...@mines-paristech.fr> wrote: > > > > > The methodology is flawed, as it does not take into account those who > > flee >

Re: Finding available memory without shell, how to use hasMemory() - Found word(s) list error in the Text body

2014-02-27 Thread Andrew Kluthe
please delete it immediately. > >> > >> > >> ___ > >> use-livecode mailing list > >> use-livecode@lists.runrev.com > >> Please visit this url to subscribe, unsubscribe and manage your > >> subscription pref

Re: Use of Shell to get JSON from a MongoDB

2014-03-05 Thread Andrew Kluthe
> ___ > 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 > -- Regards,

Re: Sending email from livecode

2014-03-14 Thread Andrew Kluthe
t; 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 > -- Regards, Andrew Kluthe and...@ctech.me ___ use

Re: Famous at last, though not in the best way

2014-03-17 Thread Andrew Kluthe
ading it into memory. I could be wrong though. -- Regards, Andrew Kluthe and...@ctech.me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferenc

Re: POST command question

2014-03-31 Thread Andrew Kluthe
See if it works with the non SSL endpoint. Might be a certificate thing. Sorry for the short response. Regards, Andrew Kluthe On Mar 30, 2014 1:11 PM, "Michael Doub" wrote: > Is there anything different about using the post command on live code > server as compared to a mac

Re: print datas

2014-04-09 Thread Andrew Kluthe
I really like outputting HTML files that are styled specifically for printing. I was using a modified version of twitter bootstrap that I tweaked for printing and using things like js charting tools to compliment this. This made for some pretty reports that could also be rendered nicely on mobile a

Re: 500 ms to set a thumbpos??

2014-04-15 Thread Andrew Kluthe
code 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 > -- Regards, Andrew Kluthe and...@ctech.me _

Re: 500 ms to set a thumbpos??

2014-04-15 Thread Andrew Kluthe
-Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On > Behalf > Of Trevor DeVore > Sent: Tuesday, April 15, 2014 11:53 AM > To: How to use LiveCode > Subject: Re: 500 ms to set a thumbpos?? > > On Tue, Apr 15, 2014 at 11:26 AM, Andrew Klu

Re: 500 ms to set a thumbpos??

2014-04-22 Thread Andrew Kluthe
ny changes specific to 7.0 to affect > what you are seeing, although the speed increase they are working on for > retina would probably help. > > I would *highly* recommend that you submit a bug report about the > performance on your machine. Waiti

Re: Reference Material Discussion Application Architecture Strategies

2014-04-23 Thread Andrew Kluthe
___ > 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 > -- Regards, Andrew Kluthe

Re: Windows 8

2012-03-06 Thread Andrew Kluthe
I don't really foresee livecode being able to build metro apps anytime in next couple of years. Chances are that livecode apps will work almost like they do in win7, but will require some tweeks to fix some of the compatibility issues with the new api. But livecode building metro apps? I just don't

Re: Windows 8

2012-03-07 Thread Andrew Kluthe
I assumed that there would be some hiccups here and there seeing as how they removed win32 api for winRT api, Mark. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Windows-8-tp4449030p4452576.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: [OT] Some Reading

2012-06-14 Thread Andrew Kluthe
Reads more like Stirner to me. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/OT-Some-Reading-tp4650566p4650639.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-

Re: Use-Revolution vs. Use-LiveCode

2012-06-15 Thread Andrew Kluthe
> Why do some people insist on using the address "[hidden email]" instead of "[hidden email]"?: We use the nabble forum for interacting with the list, and it seems they still use the told address. :\ I didn't realize this till you said something. http://runtime-revolution.278305.n4.nabble.com/ --

Re: Why killing Media was killing an investment in the future

2012-07-21 Thread Andrew Kluthe
Oh, bob slylabs is posting again? What a pity. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Why-killing-Media-was-killing-an-investment-in-the-future-tp4652364p4652561.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: Is it really this hard to print currency values?

2012-07-29 Thread Andrew Kluthe
function commaFormat tNum put tNum mod 1 into remainder delete char 1 of remainder put trunc(tNum) into tNum put the number of chars in tNum into n repeat with i = 1 to trunc((n-1)/3) put comma after char n - 3*i of tNum end repeat return tNum& remainder end comma

Re: changes to the runrev store

2012-08-18 Thread Andrew Kluthe
ailman/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/u

Re: [ANN] DatePicker update

2012-08-25 Thread Andrew Kluthe
al and commercial use. > > Requirements... > .LiveCode version 3.5 or later, 4.5.2 or later recommended > > > Hugh Senior > FLCo > > > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit

Re: RevDoc

2012-08-25 Thread Andrew Kluthe
it still available somewhere ? > > Thanks > -- Alex. > > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your subscription > preferences: > http://lists.runre

Re: [TEASER] A noSQL library is coming...

2012-08-25 Thread Andrew Kluthe
rl shortening service. >> _______ >> 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/m

<    1   2   3   4   >