RELEASE: LiveCode 6.7-dp-2

2014-04-22 Thread Simon Morecroft
Has anyone tried using revBrowserOpenCef with authenticated sites? Sites that were working (asking for login details) with revBrowserOpen, give a blank screen with revBrowserOpenCef. Non-authenticated sites are fine using revBrowserOpenCef Simon Morecroft

Re: Email Using LiveCode Server?

2014-04-22 Thread Simon Smith
What about using a service like mandrill to handle the sending of emails? Simon On Tue, Apr 22, 2014 at 4:45 AM, J. Landman Gay jac...@hyperactivesw.comwrote: On 4/21/14, 6:06 PM, Scott Rossi wrote: Some time ago, DreamHost stepped up their anti-spam practices, and disabled the ability of

Re: Email Using LiveCode Server?

2014-04-22 Thread Martin Baxter
On 22/04/14 00:06, Scott Rossi wrote: Thanks to Alex and Matthias for the responses. Matthias's comment prompted me to do some more searching and I found the problem, which was partly script related, and partly host related: outside-domain email addresses are not allowed. Some time ago,

Re: Email Using LiveCode Server?

2014-04-22 Thread Matthias Rebbe | M-R-D
Hi Scott, if you need to reply to the address the customer entered in the form, then you could adjust the script a little bit: // add the parameter pReplyTo to the parameter list //command mail pTo, pSub, pMsg, pFrom, pCc, pBcc, pHtml, pAtts command mail pTo, pSub, pMsg, pFrom, pReplyTo,

programatically click?

2014-04-22 Thread larry
Is there a way to programatically click on a line in a field whose list behavior is set to multi-line and non-contiguous? TIA Larry P.S. using click at the location didn't work ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

RE: programatically click?

2014-04-22 Thread John Dixon
Would something like... select line x of fld x help ? From: la...@significantplanet.org To: use-livecode@lists.runrev.com Subject: programatically click? Date: Tue, 22 Apr 2014 08:43:55 -0600 Is there a way to programatically click on a line in a field whose list behavior is set to

Re: programatically click?

2014-04-22 Thread larry
Hi John, You put me onto a train of thought. Here is what works: set the hilitedline of field column3 to thisLine call mouseUp of field column3 Thanks, Larry - Original Message - From: John Dixon dixo...@hotmail.co.uk To: How to use LiveCode use-livecode@lists.runrev.com Sent:

Re: programatically click?

2014-04-22 Thread dunbarx
Hi. using click at the location didn't work You certainly can click in a list field programatically, and you will see the appropriate line become selected. Check your coordinates? What did you do for the location? And when you do, a mouseUp message will be sent. Now this may not be the

Re: programatically click?

2014-04-22 Thread J. Landman Gay
Set the hilitedlines of the field. On April 22, 2014 9:43:55 AM CDT, la...@significantplanet.org wrote: Is there a way to programatically click on a line in a field whose list behavior is set to multi-line and non-contiguous? TIA Larry P.S. using click at the location didn't work

Re: programatically click?

2014-04-22 Thread Scott Rossi
Instead of trying to generate a click, try setting the hilitedLines of the field to the lines you want selected and then send mouseUp (or whatever message you want triggered) to the field. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 4/22/14 7:43 AM,

iOS: message sent when screen is unlocked?

2014-04-22 Thread Chris Sheffield
Is there a message that’s sent to a stack when the user unlocks an iOS device’s screen after it has been locked? So say an app is running. Instead of closing it using the Home button, the user either locks the screen or the screen locks automatically after the specified time in Settings. Is

Re: 500 ms to set a thumbpos??

2014-04-22 Thread Andrew Kluthe
Installed 6.6.1 stable on a couple systems and figured out that the problem I was having was likely related to the windows hang on redraw bug that got fixed in 6.6.1 Everything is working better than ever now on the systems I have tested. On Tue, Apr 15, 2014 at 10:53 AM, Trevor DeVore

MS SQL

2014-04-22 Thread Rodney Green
Hello, It's my first time using LC and MS SQL in a project. I can connect and receive a connection ID. However, I can't seem to pass any SQL commands. I try this: *get* revDataFromQuery(tab,*return*,tDatabaseID,select top 3 * from [dbo].[Rep_Offices]) or this: *put*

Re: iOS: message sent when screen is unlocked?

2014-04-22 Thread Stephen MacLean
Hi Chris, Check out Monte's mergEXT externals. MergNotify should give you that message. MergExt.com Best, Steve MacLean On Apr 22, 2014, at 1:52 PM, Chris Sheffield cmsheffi...@icloud.com wrote: Is there a message that’s sent to a stack when the user unlocks an iOS device’s screen

Re: iOS: message sent when screen is unlocked?

2014-04-22 Thread Chris Sheffield
Yes, I think that might work. Thanks. I’m a mergExt subscriber but hadn’t thought to check that. Thanks again, Chris On Apr 22, 2014, at 1:47 PM, Stephen MacLean smacl...@madmansoft.com wrote: Hi Chris, Check out Monte's mergEXT externals. MergNotify should give you that message.

Re: programatically click?

2014-04-22 Thread dunbarx
Richmond. The click command requires a point as a parameter, that is, something that resolves to integer,integer The comma is de rigueur. -Original Message- From: Richmond richmondmathew...@gmail.com To: How to use LiveCode use-livecode@lists.runrev.com Sent: Tue, Apr 22, 2014 1:22

Re: Fun with 7.0

2014-04-22 Thread Devin Asay
On Apr 21, 2014, at 6:30 PM, Dar Scott d...@swcp.com wrote: My daughter created this: on mouseUp set the label of button ロケットの 打ち上げ to 自爆スイッチ put クローン作成プロセスを完成できました。 into field Status end mouseUp Anyway, it is that easy. Except for learning Japanese; that is the hard part. (She

Group Visible

2014-04-22 Thread Nakia Brewer
Is there a LC message that is sent when a group becomes visible? COPYRIGHT / DISCLAIMER: This message and/or including attached files may contain confidential proprietary or privileged information. If you are not the intended recipient, you are strictly prohibited from using, reproducing,

Re: programatically click?

2014-04-22 Thread kee nethery
The way I deal with this is to have two commands for each interface element, one for humans, one that is programartic. For a table, I might have: on mouseup put the clickline into theline doit theline end mouseup on doit theline if theline = empty then put the clickline into theline

Re: Group Visible

2014-04-22 Thread dunbarx
I see no messages sent when showing or hiding any control, groups included. You will have to manage this by hand, I think, but that should not be too hard. However the group is shown or hidden, you can add a gadget at that point. Or is that a problem? How do these things appear or disappear?

RE: Group Visible

2014-04-22 Thread Nakia Brewer
Nah it's not a problem to manage manually, I was just wondering if there was a system message that was sent that I could tap into. Nakia Brewer | Technology Solutions Manager | Equipment Management Solutions t: (02) 49645051 | m: 0458 713 547 | i: www.westrac.com.au   ACN 009 342 572

Re: MS SQL

2014-04-22 Thread Kay C Lan
I don't know if it's just your email client but what I'm seeing is an asterisk * around the words get, put and return which shouldn't be there. Although it should work I'd also remove the first two parameters, tab and return, just to simplify things until you figure out exactly what's wrong. The

Re: Fun with 7.0

2014-04-22 Thread Tim Selander
Okay, Dar, now I really want to know why your daughter is programming rocket launchers and suicide bombs!! I really hope it is just a game! :-) Tim Selander Tokyo, Japan P.S. And it really, really disturbs me that I actually sat here for a full 30 secs wondering if I should send this

file checksums

2014-04-22 Thread Richard Gaskin
I see a lot of sites that offer files to download also including an MD5 value or other checksum, ostensibly so we can verify the integrity of the package before running it. Sounds good, but if a hacker has sufficient control of a server to replace the package, would he not also be able to

Re: MS SQL

2014-04-22 Thread Rodney Green
It still hangs after I changed the line of code. Here's the entire script for the button. Also, this is a MS SQL server. Thanks again. *on* mouseUp *local* tDatabaseID *local* xQuery *local* rez *put* Driver={Actual SQL

Re: file checksums

2014-04-22 Thread Dar Scott
I’ve wondered the same. My guess is that the web page with the MD5 is not on the same server as the file. But, I have never checked. I suppose the same password might be used for access to both. Dar On Apr 22, 2014, at 6:38 PM, Richard Gaskin ambassa...@fourthworld.com wrote: I see a

Re: Fun with 7.0

2014-04-22 Thread Alejandro Tejada
Sudden and complete destruction is deeply embedded in the collective mind of Japanese people, post Hiroshima and Nagasaki. Their Pop culture reflect this fear... Remember Godzilla? Fukushima Nuclear accident just remembers them of the reality of these fears. :o So, yes this a recurrent theme

Re: file checksums

2014-04-22 Thread Alejandro Tejada
Maybe MD5 and SHA-1 are more useful for files available in many servers. What are the chances of hacking many servers at once? Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/file-checksums-tp4678556p4678560.html Sent from the Revolution - User mailing

Re: Fun with 7.0

2014-04-22 Thread Dar Scott
You don’t include a self-destruct button in everything you build? Doofenshmirtz does. (We are fans of Phineas and Ferb at our house.) Did I mention that her brother and I discovered this will work? put 0 into スイッチ add 1 to スイッチ put スイッチ -- displays 1 The editor kept getting confused

Re: Email Using LiveCode Server?

2014-04-22 Thread Scott Morrow
Thanks to everyone who posted thoughts or follow-ups to Scott’s Email question. I was working something similar. — Scott Morrow Elementary Software (Now with 20% less chalk dust!) web http://elementarysoftware.com/ email sc...@elementarysoftware.com office 1-800-615-0867

Re: MS SQL

2014-04-22 Thread J. Landman Gay
On 4/22/14, 6:49 PM, Kay C Lan wrote: I don't know if it's just your email client but what I'm seeing is an asterisk * around the words get, put and return which shouldn't be there. That happens to all keywords when a colorized script is copied from the script editor and pasted into a

Re: RELEASE: LiveCode 6.7-dp-2

2014-04-22 Thread morecroft
Thanks Alejandro. I can also get the linkedin page. Looking closer, I think it may only be a problem for basic auth which gives a pop-up login box. Rather old fashioned I know, but you still get this with some internal sites. An example of one of these, you should be able to see, is

Re: Email Using LiveCode Server?

2014-04-22 Thread stephen barncard
On Tue, Apr 22, 2014 at 7:26 PM, Scott Morrow sc...@elementarysoftware.comwrote: I was working something similar. — Scott Morrow I was ready to kluge something with a php/livecode hybrid setup. *--* *Stephen Barncard - San Francisco Ca. USA - Deeds Not Words*

Re: file checksums

2014-04-22 Thread Shawn Blc
I'm guessing that most people that download files have no idea about MD5 and checksums let alone know how to verify the integrity of the download. Besides the geeks around here (LiveCode geeks are awesome), could your neighbor verify the following? Probably not.

Re: RELEASE: LiveCode 6.7-dp-2

2014-04-22 Thread Shawn Blc
I get a popup login. Using Chrome on OSX Mavericks. On Tue, Apr 22, 2014 at 10:49 PM, morecroft s.morecr...@qut.edu.au wrote: Thanks Alejandro. I can also get the linkedin page. Looking closer, I think it may only be a problem for basic auth which gives a pop-up login box. Rather old