Re: Blocking COPY ?

2013-04-01 Thread Richmond
On 01/04/13 06:15, Mark Talluto wrote: On Mar 31, 2013, at 1:07 PM, Richmond richmondmathew...@gmail.com wrote: I really am getting tired of continually commenting out 25 copy commands in 25 objects for Demo versions of my stuff, and wonder if there is not a way to block the copy command

Re: Best data import approach

2013-04-01 Thread Magicgate Software - Skip Kimpel
For some reason that wouldn't work for me... I ended up making it work with: set the dgvscrollpercent of group MyDataGrid to 1 Thanks for all of your help! On Sat, Mar 30, 2013 at 10:58 PM, Mike Bonner bonnm...@gmail.com wrote: set the dgVscroll of group yourgroup to pPercent where pPercent

Maskdata of Image

2013-04-01 Thread Ender Nafi Elekçioğlu
Hi all, I'm trying to cut off the corners of any given image programmatically. I understand that the tool to do this is the *maskData* property. But I couldn't figure out how to use it. I tried a couple of ways. {I know that below code doesn't work, I added different commands for you to see.}

Re: Maskdata of Image

2013-04-01 Thread Colin Holgate
The image data is sets of four characters per pixel. The mask data isn't. Try taking out your * 4. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Maskdata of Image

2013-04-01 Thread Ender Nafi Elekçioğlu
So simple :)) Thanks a bunch, Colin, it works like a charm… Now it's time for me to start coding to round up that ugly square corners. Best, ~ Ender Nafi ~… together, we're smarter …~ ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Blocking COPY ?

2013-04-01 Thread Roger Eller
There are many ways to allow full functionality of a demo. One way is to show a pesky timer counting down from 5 minutes, then covering the app with a giant Buy now! button. The user must quit to get another 5 minutes of use, or go ahead and buy it. ~Roger On Apr 1, 2013 2:19 AM, Richmond

Re: Best data import approach

2013-04-01 Thread Mike Bonner
Doh. Yep. I posted the wrong property for use with percents. Brain had a moment, sorry bout that. On Mon, Apr 1, 2013 at 3:32 AM, Magicgate Software - Skip Kimpel s...@magicgate.com wrote: For some reason that wouldn't work for me... I ended up making it work with: set the

Re: Blocking COPY ?

2013-04-01 Thread Mark Talluto
On Mar 31, 2013, at 11:14 PM, Richmond richmondmathew...@gmail.com wrote: At that point it won't be a Demo, and I wonder what will pursuade people to pay 50 dollars? Here are some facts: * A demo is a better than a pirated copy because you still have control. * You can decide how long you

Web development suggestions

2013-04-01 Thread Bill Vlahos
I'm working on a new app which with have a SQL backend with initially a web front end and eventually native clients. LiveCode is easy for the native clients but I'm struggling with how to easily develop the web 2.0 client. This would have been a natural for the old LC web plugin if browsers

Re: Web development suggestions

2013-04-01 Thread Mark Talluto
On Apr 1, 2013, at 8:46 AM, Bill Vlahos bvla...@mac.com wrote: I'm working on a new app which with have a SQL backend with initially a web front end and eventually native clients. LiveCode is easy for the native clients but I'm struggling with how to easily develop the web 2.0 client.

Re: Web development suggestions

2013-04-01 Thread Bill Vlahos
Mark, It really should be a straight browser front end first as an easy introduction and use case. Native clients later. Thanks, Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. lcTaskList:

Re: Web development suggestions

2013-04-01 Thread Mark Talluto
On Apr 1, 2013, at 9:38 AM, Bill Vlahos bvla...@mac.com wrote: Mark, It really should be a straight browser front end first as an easy introduction and use case. Native clients later. Bill, I am intrigued. There are a handful of solutions that do better as browser front ends. But only

SoCal LC User Group meeting Thurs., 4/4, Pasadena

2013-04-01 Thread Richard Gaskin
Just a quick reminder: The next SoCal LiveCode User Group meeting is happening Thursday, April, at 7PM in Pasadena - details in the LUG section of the LiveCode forums: http://forums.runrev.com/viewtopic.php?f=50t=14256 -- Richard Gaskin Fourth World LiveCode training and consulting:

Re: Save greyed out with Mac build

2013-04-01 Thread Stephen King
Hi Jacqueline The code is attached below. Hopefully it is fairly clear, but I only program as a hobby for a local dive club so….! The sources identical between windows and OSX builds. The windows one works fine, the OSX one won't save. Cheers Steve I have recently bought a macbook air

Re: Save greyed out with Mac build

2013-04-01 Thread J. Landman Gay
On 4/1/13 1:35 PM, Stephen King wrote: The sources identical between windows and OSX builds. The windows one works fine, the OSX one won't save. It's probably the with filter part of the ask file command. Filters are only functional on Windows (see the dictionary entry for ask file.)

positioning graphics in relation to a line in a text field

2013-04-01 Thread Curt Ford
My client's project has long text fields, in which are a number of separate lines that, in the original Word files, had boxes around them. The box style in LiveCode is too tight around the text for their taste, so I've been creating graphic rectangles and positioning them by hand. An issue has

Re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Devin Asay
On Apr 1, 2013, at 2:26 PM, Curt Ford wrote: My client's project has long text fields, in which are a number of separate lines that, in the original Word files, had boxes around them. The box style in LiveCode is too tight around the text for their taste, so I've been creating graphic

Re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Mark Wieder
Devin Asay devin_asay@... writes: Would the selectedRect of a text chunk do what you want? Yeah, wouldn't that be nice? Is there an enhancement request for this? Right now it's a bit of a complicated algorithm, and requires a fixed line height in a field. -- Mark Wieder

Re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Richard Gaskin
Curt Ford wrote: My client's project has long text fields, in which are a number of separate lines that, in the original Word files, had boxes around them. The box style in LiveCode is too tight around the text for their taste, so I've been creating graphic rectangles and positioning them by

Re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Devin Asay
On Apr 1, 2013, at 2:47 PM, Mark Wieder wrote: Devin Asay devin_asay@... writes: Would the selectedRect of a text chunk do what you want? Yeah, wouldn't that be nice? Is there an enhancement request for this? Right now it's a bit of a complicated algorithm, and requires a fixed line

re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Curt Ford
Ah, this is getting me pretty close: select line 3 of fld Field2 set the left of graphic Rectangle to item 1 of the selectedLoc - 10 set the top of graphic Rectangle to item 2 of the selectedLoc - 10 select empty And checking the formattedHeight of the selectedLine will let me adjust

Re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Mark Wieder
Curt Ford cford@... writes: Ah, this is getting me pretty close: select line 3 of fld Field2 set the left of graphic Rectangle to item 1 of the selectedLoc - 10 set the top of graphic Rectangle to item 2 of the selectedLoc - 10 select empty And checking the formattedHeight

Re: positioning graphics in relation to a line in a text field

2013-04-01 Thread Geoff Canyon
On Mon, Apr 1, 2013 at 5:31 PM, Mark Wieder mwie...@ahsoftware.net wrote: Don't forget to adjust for scrolling as well. And it gets slightly more complicated if you select multiple lines. To simplify this I'd use a non-scrolling text field in a scrolling group with the field (sized to fit

revBrowser and Windows 8

2013-04-01 Thread Chip Thomas
Has anyone else experienced problems using the revBrowser on Windows 8? We use the revBrowser to access a webinar site that uses Flash Player. On Windows 8, the revBrowser connects to the page, but it takes anywhere from 10 mins to an hour for it to fully connect and log in. Going to the same

Re: Web development suggestions

2013-04-01 Thread Bill Vlahos
Mark, It isn't that it would do a better job. It would be more accessible without any special client software. We will have a public beta when we have it working. Bill Vlahos Sent from my iPhone On Apr 1, 2013, at 9:51 AM, Mark Talluto use...@canelasoftware.com wrote: On Apr 1, 2013, at