Re: Use of Shell to get JSON from a MongoDB

2014-03-05 Thread Mark Wieder
Javier-

Wednesday, March 5, 2014, 8:19:14 AM, you wrote:

> After strugling and finally understand with help from friends at
> Stackoverflow, how the find() command works in the interative javascript
> shell of MongoDB, now I know that find() returns a cursor.

> But still have some problems trying to get JSON from my local MongoDB.

You need to put quotes around the code to be evaluated if you're going
to try that from a command line. Try this (condensed into separate
lines to prevent email wraparound):

on mouseUp pMouseBtnNo
local dbText

put "var c=db.test.find();" into dbText
put " while(c.hasNext())" after dbText
put " printjson(c.next())" after dbText

put shell("mongo --eval" && quote & dbText & quote) into field "A"
end mouseUp

-- 
-Mark Wieder
 ahsoftw...@gmail.com

This communication may be unlawfully collected and stored by the National 
Security Agency (NSA) in secret. The parties to this email do not 
consent to the retrieving or storing of this communication and any 
related metadata, as well as printing, copying, re-transmitting, 
disseminating, or otherwise using it. If you believe you have received 
this communication in error, please delete it immediately.


___
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


menuitems getting reset on a combobox

2014-03-05 Thread Dr. Hawkins
Something is suddenly wiping out the menuitems of oen of my comboboxes.

Is there anything other than

  put something into menuitem someitem of btn btnName

that can do this?

I don't even know what to look for.

-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: dg okay with elements larger than the dg itself?

2014-03-05 Thread Trevor DeVore
On Wed, Mar 5, 2014 at 6:27 PM, Richard Gaskin
wrote:

> I've used the DataGrid successfully on several projects, but today is the
> first time I've tried this and I'm getting odd results:
>
> I have some form elements which are much taller than the DataGrid control
> itself, and I'm finding that it isn't calculating the heights correctly,
> nor scrolling correctly when using the scrollbar arrows.
>
> Is this a known limitation, or is it just me?
>

The height of the form elements should work even if they are taller than
the data grid itself. Unless of course they exceed the ~32,000 limit for
group height that the engine imposes. If the rows don't exceed that height
then my guess is that the data grid is getting confused about the actual
height of content for some reason.

Is each row the same size or is each row a different size? If each row is a
different height then I would first check to see there are any objects in
your row template that are outside the bounds of what the row height should
be after LayoutControl finishes. The data grid is going to look at the
formattedHeight of each row after LayoutControl. If some object in the
template group causes the formattedHeight to be something other than you
expect then it might cause problems.

-- 
Trevor DeVore
Blue Mango Learning Systems
www.screensteps.com-www.clarify-it.com
___
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: Google Glass

2014-03-05 Thread Mike Kerner
Yeah, yeah.  I didn't understand what you were saying the first time.  I'm
so used to ios where deployment is through doing a build, and you only use
test to hit the simulator.


On Wed, Mar 5, 2014 at 3:44 PM, Colin Holgate  wrote:

> In LiveCode there is a Development menu, one of the items in that menu is
> "Test". If you select that while you have a Google Glass connected, and
> having chose it as the Android device in Development/Test Target, the stack
> will launch on the Google Glass.
>
>
> On Mar 5, 2014, at 3:36 PM, Mike Kerner  wrote:
>
> > >I didn't understand the explanation.  You can do "test"?
>
> ___
> 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
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created 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 subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


dg okay with elements larger than the dg itself?

2014-03-05 Thread Richard Gaskin
I've used the DataGrid successfully on several projects, but today is 
the first time I've tried this and I'm getting odd results:


I have some form elements which are much taller than the DataGrid 
control itself, and I'm finding that it isn't calculating the heights 
correctly, nor scrolling correctly when using the scrollbar arrows.


Is this a known limitation, or is it just me?

--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: 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 subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Windows, high-resolution, and 6.6

2014-03-05 Thread Trevor DeVore
Has anybody had success with LiveCode 6.6 running on a Windows computer
running in high-resolution mode? I have done some testing under one VMWare
install but high-resolution mode doesn't seem to be working. This is the
bug report I filed:

http://quality.runrev.com/show_bug.cgi?id=11808

I'm just wondering if anyone has it working or if Windows support for
high-resolution mode is just broken at the moment.

-- 
Trevor DeVore
Blue Mango Learning Systems
www.screensteps.com-www.clarify-it.com
___
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


API Connector

2014-03-05 Thread Nakia Brewer

Hi,

I have a task I need to complete for a customer that I am looking for advice on.

The customer is using a system that can send HTTP POSTS of  form data it 
collects upon submission of the forms (web forms).
This above system does not have the ability to use authentication when making 
posts.

The customer then wants this data  to  be posted into a Google Fusion Tables 
but this API Requires authentication for write access (Read access can be done 
with just an API Token)

So, my thought to get around this is to build a middle man API that can receive 
the data and re POST into the Fusion Tables.

I have done some work previously on communicating with existing API's but never 
created an API and was wondering if anyone may be able to recommend so 
examples, material etc or just plain offer any advice...

Cheers
Nakia







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, 
disclosing or distributing the information contained in this email without 
authorisation from WesTrac. If you have received this message in error please 
contact WesTrac on +61 8 9377 9444. We do not accept liability in connection 
with computer virus, data corruption, delay, interruption, unauthorised access 
or unauthorised amendment. We reserve the right to monitor all e-mail 
communications.

___
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: Custom Props Set

2014-03-05 Thread Peter Haworth
I agree with that in terms of LC names but the original post on this
involved file names and they often have spaces in them quite legitimately.

Pete
lcSQL Software 
Home of lcStackBrowser  and
SQLiteAdmin 


On Wed, Mar 5, 2014 at 1:05 PM, Ralph DiMola wrote:

> Here, Here... I agree. Spaces are just an invitation to problems.
> I know that a few CPU cycles are saved with case sensitive filenames,
> but. There's another disaster waiting in the wings.
>
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
>
> -Original Message-
> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On
> Behalf
> Of Robert Sneidar
> Sent: Wednesday, March 05, 2014 3:37 PM
> To: How to use LiveCode
> Subject: Re: Custom Props Set
>
> Just my 2¢ I do not see why anyone NEEDS to put spaces in names of
> anything.
> I always advise no spaces or special characters beyond hyphen and
> underscore
> in file names, and all lowercase in anything accessible over
> internet/intranet, including SQL columns. Follow these simple rules and it
> will be a rare moment when you have problems.
>
> Bob
>
>
> On Mar 5, 2014, at 9:17 AM, Peter Haworth  wrote:
>
> > Turns out the IDEObject Inspector lets you create a custom property
> > with spaces in its name but it won't let you create a custom property
> > set with spaces in its name.  Didn't try any other supposedly illegal
> characters.
> >
> > Pete
> > lcSQL Software 
> > Home of lcStackBrowser  and
> > SQLiteAdmin 
> >
> >
> > On Tue, Mar 4, 2014 at 9:43 PM, J. Landman Gay
> wrote:
> >
> >> On 3/4/14, 9:09 PM, Phil Davis wrote:
> >>
> >>> Also the data grid uses custom propertyset element names that
> >>> contain spaces. I'm guessing those elements are not considered custom
> props?
> >>>
> >>
> >> Parts of the documentation haven't kept up with engine changes. This
> >> looks like one of them.
> >>
> >> --
> >> Jacqueline Landman Gay | jac...@hyperactivesw.com
> >> HyperActive Software   | http://www.hyperactivesw.com
> >>
> >>
> >> ___
> >> 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
>
>
> ___
> 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
>
___
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: Custom Props Set

2014-03-05 Thread Ralph DiMola
Here, Here... I agree. Spaces are just an invitation to problems.
I know that a few CPU cycles are saved with case sensitive filenames,
but. There's another disaster waiting in the wings.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf
Of Robert Sneidar
Sent: Wednesday, March 05, 2014 3:37 PM
To: How to use LiveCode
Subject: Re: Custom Props Set

Just my 2¢ I do not see why anyone NEEDS to put spaces in names of anything.
I always advise no spaces or special characters beyond hyphen and underscore
in file names, and all lowercase in anything accessible over
internet/intranet, including SQL columns. Follow these simple rules and it
will be a rare moment when you have problems. 

Bob


On Mar 5, 2014, at 9:17 AM, Peter Haworth  wrote:

> Turns out the IDEObject Inspector lets you create a custom property 
> with spaces in its name but it won't let you create a custom property 
> set with spaces in its name.  Didn't try any other supposedly illegal
characters.
> 
> Pete
> lcSQL Software 
> Home of lcStackBrowser  and 
> SQLiteAdmin 
> 
> 
> On Tue, Mar 4, 2014 at 9:43 PM, J. Landman Gay
wrote:
> 
>> On 3/4/14, 9:09 PM, Phil Davis wrote:
>> 
>>> Also the data grid uses custom propertyset element names that 
>>> contain spaces. I'm guessing those elements are not considered custom
props?
>>> 
>> 
>> Parts of the documentation haven't kept up with engine changes. This 
>> looks like one of them.
>> 
>> --
>> Jacqueline Landman Gay | jac...@hyperactivesw.com
>> HyperActive Software   | http://www.hyperactivesw.com
>> 
>> 
>> ___
>> 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


___
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


Re: Google Glass

2014-03-05 Thread Colin Holgate
In LiveCode there is a Development menu, one of the items in that menu is 
“Test”. If you select that while you have a Google Glass connected, and having 
chose it as the Android device in Development/Test Target, the stack will 
launch on the Google Glass.


On Mar 5, 2014, at 3:36 PM, Mike Kerner  wrote:

> >I didn't understand the explanation.  You can do "test"?

___
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: Google Glass

2014-03-05 Thread Mike Kerner
OMG.  LOL.  OK, got it.


On Wed, Mar 5, 2014 at 3:40 PM, Roger Eller wrote:

> Glass is just another Android device.  Connected via USB, you click "Test"
> in LC.  Right?
>
>
> On Wed, Mar 5, 2014 at 3:36 PM, Mike Kerner  >wrote:
>
> > I didn't understand the explanation.  You can do "test"?
> >
> >
> > On Wed, Mar 5, 2014 at 3:33 PM, Colin Holgate  wrote:
> >
> > > What is "Umm, wha?"?
> > >
> > > What was your reason for asking if anyone was messing with LC and
> Glass?
> > >
> > > On Mar 5, 2014, at 3:12 PM, Mike Kerner 
> > wrote:
> > >
> > > > >Umm, wha?
> > >
> > > ___
> > > 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
> > >
> >
> >
> >
> > --
> > On the first day, God created the heavens and the Earth
> > On the second day, God created 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 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
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created 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 subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Google Glass

2014-03-05 Thread Roger Eller
Glass is just another Android device.  Connected via USB, you click "Test"
in LC.  Right?


On Wed, Mar 5, 2014 at 3:36 PM, Mike Kerner wrote:

> I didn't understand the explanation.  You can do "test"?
>
>
> On Wed, Mar 5, 2014 at 3:33 PM, Colin Holgate  wrote:
>
> > What is "Umm, wha?"?
> >
> > What was your reason for asking if anyone was messing with LC and Glass?
> >
> > On Mar 5, 2014, at 3:12 PM, Mike Kerner 
> wrote:
> >
> > > >Umm, wha?
> >
> > ___
> > 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
> >
>
>
>
> --
> On the first day, God created the heavens and the Earth
> On the second day, God created 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 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


Re: Custom Props Set

2014-03-05 Thread Robert Sneidar
Just my 2¢ I do not see why anyone NEEDS to put spaces in names of anything. I 
always advise no spaces or special characters beyond hyphen and underscore in 
file names, and all lowercase in anything accessible over internet/intranet, 
including SQL columns. Follow these simple rules and it will be a rare moment 
when you have problems. 

Bob


On Mar 5, 2014, at 9:17 AM, Peter Haworth  wrote:

> Turns out the IDEObject Inspector lets you create a custom property with
> spaces in its name but it won't let you create a custom property set with
> spaces in its name.  Didn't try any other supposedly illegal characters.
> 
> Pete
> lcSQL Software 
> Home of lcStackBrowser  and
> SQLiteAdmin 
> 
> 
> On Tue, Mar 4, 2014 at 9:43 PM, J. Landman Gay 
> wrote:
> 
>> On 3/4/14, 9:09 PM, Phil Davis wrote:
>> 
>>> Also the data grid uses custom propertyset element names that contain
>>> spaces. I'm guessing those elements are not considered custom props?
>>> 
>> 
>> Parts of the documentation haven't kept up with engine changes. This looks
>> like one of them.
>> 
>> --
>> Jacqueline Landman Gay | jac...@hyperactivesw.com
>> HyperActive Software   | http://www.hyperactivesw.com
>> 
>> 
>> ___
>> 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


___
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: Google Glass

2014-03-05 Thread Mike Kerner
I didn't understand the explanation.  You can do "test"?


On Wed, Mar 5, 2014 at 3:33 PM, Colin Holgate  wrote:

> What is "Umm, wha?"?
>
> What was your reason for asking if anyone was messing with LC and Glass?
>
> On Mar 5, 2014, at 3:12 PM, Mike Kerner  wrote:
>
> > >Umm, wha?
>
> ___
> 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
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created 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 subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Google Glass

2014-03-05 Thread Colin Holgate
What is “Umm, wha?”?

What was your reason for asking if anyone was messing with LC and Glass?

On Mar 5, 2014, at 3:12 PM, Mike Kerner  wrote:

> >Umm, wha?

___
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: Google Glass

2014-03-05 Thread Mike Kerner
Umm, wha?


On Wed, Mar 5, 2014 at 3:08 PM, Colin Holgate  wrote:

> Yes, you can do Test from LiveCode and the stack will run on a connected
> Glass.
>
>
> On Mar 5, 2014, at 3:01 PM, Mike Kerner  wrote:
>
> > >Is anybody messing with LC and Glass?  I've got a reason...
>
> ___
> 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
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created 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 subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Google Glass

2014-03-05 Thread Colin Holgate
Yes, you can do Test from LiveCode and the stack will run on a connected Glass.


On Mar 5, 2014, at 3:01 PM, Mike Kerner  wrote:

> >Is anybody messing with LC and Glass?  I've got a reason...

___
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


Google Glass

2014-03-05 Thread Mike Kerner
Is anybody messing with LC and Glass?  I've got a reason...

-- 
On the first day, God created the heavens and the Earth
On the second day, God created 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 subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Palette problem

2014-03-05 Thread Richmond
So: having made a free-floating palette that can insert Unicode chars 
into a text field

in another, unrelated stack, for my next chestnut . . . .

1. How to get this working so that the free-floating palette can insert 
Unicode chars into text fields

in other programs such as LibreOffice.

2. How to get this working so that the free-floating palette built as a 
standalone app can insert Unicode chars into text fields
in other programs such as LibreOffice or other standalone apps hived-off 
from Livecode.


Tough nut to crack.

Richmond.

___
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 RC1

2014-03-05 Thread Kenji Kojima
Is there any way I can use the old image filtering?
It was the best way I could make a mosaic image. 
But I can not make a mosaic now.
The new image filter is a big problem for my applications.

Thanks, 
--
Kenji Kojima / 小島健治
http://www.kenjikojima.com/


On Mar 5, 2014, at 10:36 AM, Benjamin Beaumont  wrote:

> Dear List Members.
> 
> We are pleased to announce the release of LiveCode 6.6 RC1. This release is
> now considered feature complete.
> 
> *Warning, this is a pre-release with new features which have the potential
> to cause issues. Please ensure you backup your stacks before testing this
> release.*
> 
> *Important Changes*
> 
>   1. Tiger support dropped. As of version 6.6-dp-1, OS 10.4 (Tiger)
>   support has been dropped from LiveCode. This is primarily for technical
>   reasons: In order to support the latest OS X features (e.g. Cocoa -
>   LiveCode 6.7 - coming soon) as well as include the newest versions of
>   thirdparty libraries (e.g. LibSkia, LibSQLite), dropping 10.4 support was
>   required. Users wishing to produce 10.4 compatible executables can still do
>   so using LiveCode version 6.5.x (and earlier).
> 
> 
> *Release Contents*
> 
>   - This development release contains the following changes:
>   - 'assert' command (experimental)
>   - New **showAll** fullscreenmode.
>   - Hi-DPI support for Windows 7/8 and OSX.
>   - HTTPS through proxy
>   - Image Filtering Updates
>   - Graphics Library Update
>   - OpenSSL & Encryption Updates
>   - Proxy automatic configuration support
>   - 'secure socket' command
>   - '#!' now recognised by server
>   - SQLite support updated and improved
>   - Stack scaling
>   - OS 10.4 (Tiger) Support
>   - 31 bug fixes:
>  - *11874 - BinaryDecode wrong on Android*
>  - *11858 - Hidden stacks don't update their position when re-shown*
>  - *11844 - Stack height limited to screen height*
>  - *11841 - The effective revAvailableHandlers of an object sometimes
>  contains duplicates*
>  - *11836 - MouseLoc returns wrong value if pixelScale set to value
>  other than 1*
>  - *11816 - Native Android control rects not scaled when set from
>  preOpenStack handler*
>  - *11814 - Accelerated rendering causes cards to be rendered in the
>  bottom left of the screen on iOS Retina devices*
>  - *11811 - Cannot take screen snapshot at high resolution.*
>  - *11789 - mobileComposeMail only blocks the first time on Android.*
>  - *11785 - Option menu with height > 22 draws incorrectly on OSX with
>  Retina display.*
>  - *11783 - Setting the fullscreenmode on Windows when not fullscreen
>  causes text to change.*
>  - *11781 - Visual effects can display in the wrong place on iOS on
>  Retina devices.*
>  - *11778 - averageDeviation returns incorrect result on Mac, Linux,
>  iOS, Android*
>  - 11754 - Error (invalid bundle) on uploading app to iOS App Store
>  - 11753 - Cannot play some video streams on Android
>  - 11751 - After selecting an item in an option menu containing
>  unicode, the label is corrupted (Mac only)
>  - 11732 - <> operator is different from 'is not' operator for arrays
>  - 11721 - Crash when taking a snapshot of the template graphic
>  - 11720 - SQLite FTS feature doesn't work on iOS or Mac.
>  - 11715 - LiveCode crashes if dragsource object is closed during
>  dragEnd handler
>  - 11703 - iPhoneSetRemoteControlDisplay crashes
>  - 11617 - acceleratedRendering will clip the end of long scrolling
>  groups
>  - 11462 - Failing to set image data to the image data of self
>  - 11442 - Can't quit LiveCode after setting the securityPermissions
>  to "network"
>  - 11124 - No error message when external not found when deploying to
>  simulator
>  - 11069 - mobileComposeMail attachment missing in Android
>  - 10910 - "Crop image" command crashes LiveCode application
>  - 10467 - Indenting of scripts can go wrong
>  - 10280 - SQLite binary entries are non-standard.
>  - 8044 - setting a crop with quotes loses data
>  - 5331 - Mac live window resizing is off by default.
> 
> 
> *Known Issues*
> - Text scaling/clipping on Linux with stack scale set
> 
> *Getting this release*
> To upgrade to this release please select "check for updates" from the help
> menu in LiveCode or download the installers directly at:
> http://downloads.livecode.com/livecode/
> 
> *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
> 
> -- 
> _
> 
> Benjamin Beaumont . RunRev Ltd
> 
> LiveCode Product Manager
> mail : 25a Thistle Street Lane South West, Edinburgh, EH2 1EW
> email : b...@runrev.com
> company : +44(0) 845 219 89 23
> fax : +44(0) 845 458 8487
> web : www.runrev.com
> 
> LiveCode - Programming made simple
>

Re: Use of Shell to get JSON from a MongoDB

2014-03-05 Thread Andrew Kluthe
I work with mongoDB a lot from livecode but unfortunately it is all through
REST API's built in other languages with native drivers so I can't help
here. :(


On Wed, Mar 5, 2014 at 10:19 AM, Javier Miranda V. wrote:

> After strugling and finally understand with help from friends at
> Stackoverflow, how the find() command works in the interative javascript
> shell of MongoDB, now I know that find() returns a cursor.
>
>
>
> But still have some problems trying to get JSON from my local MongoDB.
>
> Issuing:
> db.test.find() -- This works in the shell because, internally it iterates
> in
> the cursor contents to show the documents.
>
> It show the same documents when you:
> var c = db.test.find()
> while ( c.hasNext() ) printjson( c.next())
>
> The thing now is how to code this in LiveCode, I tried this in a mouseup
> handler:
>
>
> put shell("C:\mongodb\bin\mongo.exe --eval var c = db.test.find() ; while (
> c.hasNext() ) printjson( c.next() )") into pJSON
> put pJSON into fld "A" -- this step is only to "see"what is the result,
> pJSON, once all is worj=king will be passed to a function to make it an
> array.
>
> But what i get in field "A" is:
>
>
> MongoDB shell version: 2.2.7
> connecting to: c
> Sun Mar 02 01:12:52 SyntaxError: missing variable name (shell eval):1
>
> Hope you can guide me!
>
> Javier
>
> ___
> 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: RELEASE LiveCode 6.6 RC1

2014-03-05 Thread Benjamin Beaumont
Thanks Richard, we really appreciate the support.

We appreciate it takes time to open up pre-releases,test and report bugs.
So thank you to all those who commit to do this with us every time we
release!

Thanks again,

Ben


On 5 March 2014 16:56, Richard Gaskin  wrote:

> Benjamin Beaumont wrote:
>
>> Dear List Members.
>>
>> We are pleased to announce the release of LiveCode 6.6 RC1. This release
>> is
>> now considered feature complete.
>>
>
> Thanks, Ben.
>
> Gentle reminder for all of us:  If you want to find bugs BEFORE release,
> this is the time to start using 6.6.
>
> I just installed it, and just found a bug:
> http://quality.runrev.com/show_bug.cgi?id=11888
>
> There may be others, and finding them is what these preview builds are for.
>
> Find 'em now, or find 'em after release when it's a lot more headache for
> all of us
>
> --
>  Richard Gaskin
>  Fourth World
>  LiveCode training and consulting: http://www.fourthworld.com
>  Webzine for LiveCode developers: 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
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
_

Benjamin Beaumont . RunRev Ltd

LiveCode Product Manager
mail : 25a Thistle Street Lane South West, Edinburgh, EH2 1EW
email : b...@runrev.com
company : +44(0) 845 219 89 23
fax : +44(0) 845 458 8487
web : www.runrev.com

LiveCode - Programming made simple
___
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: Custom Props Set

2014-03-05 Thread Peter Haworth
Turns out the IDEObject Inspector lets you create a custom property with
spaces in its name but it won't let you create a custom property set with
spaces in its name.  Didn't try any other supposedly illegal characters.

Pete
lcSQL Software 
Home of lcStackBrowser  and
SQLiteAdmin 


On Tue, Mar 4, 2014 at 9:43 PM, J. Landman Gay wrote:

> On 3/4/14, 9:09 PM, Phil Davis wrote:
>
>> Also the data grid uses custom propertyset element names that contain
>> spaces. I'm guessing those elements are not considered custom props?
>>
>
> Parts of the documentation haven't kept up with engine changes. This looks
> like one of them.
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
>
>
> ___
> 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


Re: RELEASE LiveCode 6.6 RC1

2014-03-05 Thread Richard Gaskin

Benjamin Beaumont wrote:

Dear List Members.

We are pleased to announce the release of LiveCode 6.6 RC1. This release is
now considered feature complete.


Thanks, Ben.

Gentle reminder for all of us:  If you want to find bugs BEFORE release, 
this is the time to start using 6.6.


I just installed it, and just found a bug:
http://quality.runrev.com/show_bug.cgi?id=11888

There may be others, and finding them is what these preview builds are for.

Find 'em now, or find 'em after release when it's a lot more headache 
for all of us


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: 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 subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: RELEASE LiveCode 6.6 RC1

2014-03-05 Thread Chris Sheffield
Thanks, Neil.

On Mar 5, 2014, at 9:17 AM, Neil Roger  wrote:

> Hi Chris,
> 
> Activation should be working now. Please let us know if you continue to 
> experience any issues during the activation process.
> 
> Kind Regards,
> 
> 
> Neil Roger
> --
> RunRev Support Team ~ http://www.runrev.com
> ——
> 
> On 05/03/2014 16:10, Chris Sheffield wrote:
>> Anybody else having trouble activating this build? I’ve already sent an 
>> email to support, but thought I’d ask here. Curious if it’s just me or not.
>> 
>> Thanks,
>> Chris
>> 
>> 
>> --
>> Chris Sheffield
>> Read Naturally, Inc.
>> www.readnaturally.com
>> 
>> 
>> 
>> On Mar 5, 2014, at 8:36 AM, Benjamin Beaumont  wrote:
>> 
>>> Dear List Members.
>>> 
>>> We are pleased to announce the release of LiveCode 6.6 RC1. This release is
>>> now considered feature complete.
>>> 
>>> *Warning, this is a pre-release with new features which have the potential
>>> to cause issues. Please ensure you backup your stacks before testing this
>>> release.*
>>> 
>>> *Important Changes*
>>> 
>>>   1. Tiger support dropped. As of version 6.6-dp-1, OS 10.4 (Tiger)
>>>   support has been dropped from LiveCode. This is primarily for technical
>>>   reasons: In order to support the latest OS X features (e.g. Cocoa -
>>>   LiveCode 6.7 - coming soon) as well as include the newest versions of
>>>   thirdparty libraries (e.g. LibSkia, LibSQLite), dropping 10.4 support was
>>>   required. Users wishing to produce 10.4 compatible executables can still 
>>> do
>>>   so using LiveCode version 6.5.x (and earlier).
>>> 
>>> 
>>> *Release Contents*
>>> 
>>>   - This development release contains the following changes:
>>>   - 'assert' command (experimental)
>>>   - New **showAll** fullscreenmode.
>>>   - Hi-DPI support for Windows 7/8 and OSX.
>>>   - HTTPS through proxy
>>>   - Image Filtering Updates
>>>   - Graphics Library Update
>>>   - OpenSSL & Encryption Updates
>>>   - Proxy automatic configuration support
>>>   - 'secure socket' command
>>>   - '#!' now recognised by server
>>>   - SQLite support updated and improved
>>>   - Stack scaling
>>>   - OS 10.4 (Tiger) Support
>>>   - 31 bug fixes:
>>>  - *11874 - BinaryDecode wrong on Android*
>>>  - *11858 - Hidden stacks don't update their position when re-shown*
>>>  - *11844 - Stack height limited to screen height*
>>>  - *11841 - The effective revAvailableHandlers of an object sometimes
>>>  contains duplicates*
>>>  - *11836 - MouseLoc returns wrong value if pixelScale set to value
>>>  other than 1*
>>>  - *11816 - Native Android control rects not scaled when set from
>>>  preOpenStack handler*
>>>  - *11814 - Accelerated rendering causes cards to be rendered in the
>>>  bottom left of the screen on iOS Retina devices*
>>>  - *11811 - Cannot take screen snapshot at high resolution.*
>>>  - *11789 - mobileComposeMail only blocks the first time on Android.*
>>>  - *11785 - Option menu with height > 22 draws incorrectly on OSX with
>>>  Retina display.*
>>>  - *11783 - Setting the fullscreenmode on Windows when not fullscreen
>>>  causes text to change.*
>>>  - *11781 - Visual effects can display in the wrong place on iOS on
>>>  Retina devices.*
>>>  - *11778 - averageDeviation returns incorrect result on Mac, Linux,
>>>  iOS, Android*
>>>  - 11754 - Error (invalid bundle) on uploading app to iOS App Store
>>>  - 11753 - Cannot play some video streams on Android
>>>  - 11751 - After selecting an item in an option menu containing
>>>  unicode, the label is corrupted (Mac only)
>>>  - 11732 - <> operator is different from 'is not' operator for arrays
>>>  - 11721 - Crash when taking a snapshot of the template graphic
>>>  - 11720 - SQLite FTS feature doesn't work on iOS or Mac.
>>>  - 11715 - LiveCode crashes if dragsource object is closed during
>>>  dragEnd handler
>>>  - 11703 - iPhoneSetRemoteControlDisplay crashes
>>>  - 11617 - acceleratedRendering will clip the end of long scrolling
>>>  groups
>>>  - 11462 - Failing to set image data to the image data of self
>>>  - 11442 - Can't quit LiveCode after setting the securityPermissions
>>>  to "network"
>>>  - 11124 - No error message when external not found when deploying to
>>>  simulator
>>>  - 11069 - mobileComposeMail attachment missing in Android
>>>  - 10910 - "Crop image" command crashes LiveCode application
>>>  - 10467 - Indenting of scripts can go wrong
>>>  - 10280 - SQLite binary entries are non-standard.
>>>  - 8044 - setting a crop with quotes loses data
>>>  - 5331 - Mac live window resizing is off by default.
>>> 
>>> 
>>> *Known Issues*
>>> - Text scaling/clipping on Linux with stack scale set
>>> 
>>> *Getting this release*
>>> To upgrade to this release please select "check for updates" from the help
>>> menu in LiveCode or download the installers directly at:
>>> http://downloads.liveco

Use of Shell to get JSON from a MongoDB

2014-03-05 Thread Javier Miranda V.
After strugling and finally understand with help from friends at
Stackoverflow, how the find() command works in the interative javascript
shell of MongoDB, now I know that find() returns a cursor.

 

But still have some problems trying to get JSON from my local MongoDB.

Issuing:
db.test.find() -- This works in the shell because, internally it iterates in
the cursor contents to show the documents.

It show the same documents when you:
var c = db.test.find() 
while ( c.hasNext() ) printjson( c.next()) 

The thing now is how to code this in LiveCode, I tried this in a mouseup
handler: 


put shell("C:\mongodb\bin\mongo.exe --eval var c = db.test.find() ; while (
c.hasNext() ) printjson( c.next() )") into pJSON 
put pJSON into fld "A" -- this step is only to "see"what is the result,
pJSON, once all is worj=king will be passed to a function to make it an
array.

But what i get in field "A" is:


MongoDB shell version: 2.2.7
connecting to: c
Sun Mar 02 01:12:52 SyntaxError: missing variable name (shell eval):1

Hope you can guide me!

Javier

___
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 RC1

2014-03-05 Thread Neil Roger

Hi Chris,

Activation should be working now. Please let us know if you continue to 
experience any issues during the activation process.


Kind Regards,


Neil Roger
--
RunRev Support Team ~ http://www.runrev.com
——

On 05/03/2014 16:10, Chris Sheffield wrote:

Anybody else having trouble activating this build? I’ve already sent an email 
to support, but thought I’d ask here. Curious if it’s just me or not.

Thanks,
Chris


--
Chris Sheffield
Read Naturally, Inc.
www.readnaturally.com



On Mar 5, 2014, at 8:36 AM, Benjamin Beaumont  wrote:


Dear List Members.

We are pleased to announce the release of LiveCode 6.6 RC1. This release is
now considered feature complete.

*Warning, this is a pre-release with new features which have the potential
to cause issues. Please ensure you backup your stacks before testing this
release.*

*Important Changes*

   1. Tiger support dropped. As of version 6.6-dp-1, OS 10.4 (Tiger)
   support has been dropped from LiveCode. This is primarily for technical
   reasons: In order to support the latest OS X features (e.g. Cocoa -
   LiveCode 6.7 - coming soon) as well as include the newest versions of
   thirdparty libraries (e.g. LibSkia, LibSQLite), dropping 10.4 support was
   required. Users wishing to produce 10.4 compatible executables can still do
   so using LiveCode version 6.5.x (and earlier).


*Release Contents*

   - This development release contains the following changes:
   - 'assert' command (experimental)
   - New **showAll** fullscreenmode.
   - Hi-DPI support for Windows 7/8 and OSX.
   - HTTPS through proxy
   - Image Filtering Updates
   - Graphics Library Update
   - OpenSSL & Encryption Updates
   - Proxy automatic configuration support
   - 'secure socket' command
   - '#!' now recognised by server
   - SQLite support updated and improved
   - Stack scaling
   - OS 10.4 (Tiger) Support
   - 31 bug fixes:
  - *11874 - BinaryDecode wrong on Android*
  - *11858 - Hidden stacks don't update their position when re-shown*
  - *11844 - Stack height limited to screen height*
  - *11841 - The effective revAvailableHandlers of an object sometimes
  contains duplicates*
  - *11836 - MouseLoc returns wrong value if pixelScale set to value
  other than 1*
  - *11816 - Native Android control rects not scaled when set from
  preOpenStack handler*
  - *11814 - Accelerated rendering causes cards to be rendered in the
  bottom left of the screen on iOS Retina devices*
  - *11811 - Cannot take screen snapshot at high resolution.*
  - *11789 - mobileComposeMail only blocks the first time on Android.*
  - *11785 - Option menu with height > 22 draws incorrectly on OSX with
  Retina display.*
  - *11783 - Setting the fullscreenmode on Windows when not fullscreen
  causes text to change.*
  - *11781 - Visual effects can display in the wrong place on iOS on
  Retina devices.*
  - *11778 - averageDeviation returns incorrect result on Mac, Linux,
  iOS, Android*
  - 11754 - Error (invalid bundle) on uploading app to iOS App Store
  - 11753 - Cannot play some video streams on Android
  - 11751 - After selecting an item in an option menu containing
  unicode, the label is corrupted (Mac only)
  - 11732 - <> operator is different from 'is not' operator for arrays
  - 11721 - Crash when taking a snapshot of the template graphic
  - 11720 - SQLite FTS feature doesn't work on iOS or Mac.
  - 11715 - LiveCode crashes if dragsource object is closed during
  dragEnd handler
  - 11703 - iPhoneSetRemoteControlDisplay crashes
  - 11617 - acceleratedRendering will clip the end of long scrolling
  groups
  - 11462 - Failing to set image data to the image data of self
  - 11442 - Can't quit LiveCode after setting the securityPermissions
  to "network"
  - 11124 - No error message when external not found when deploying to
  simulator
  - 11069 - mobileComposeMail attachment missing in Android
  - 10910 - "Crop image" command crashes LiveCode application
  - 10467 - Indenting of scripts can go wrong
  - 10280 - SQLite binary entries are non-standard.
  - 8044 - setting a crop with quotes loses data
  - 5331 - Mac live window resizing is off by default.


*Known Issues*
- Text scaling/clipping on Linux with stack scale set

*Getting this release*
To upgrade to this release please select "check for updates" from the help
menu in LiveCode or download the installers directly at:
http://downloads.livecode.com/livecode/

*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

--
_

Benjamin Beaumont . RunRev Ltd

LiveCode Product Manager
mail : 25a Thistle Street Lane South West, Edinburgh, EH2 1EW
email : b...@runrev.com
company : +44(0) 845 219 89 23
fax : 

Re: RELEASE LiveCode 6.6 RC1

2014-03-05 Thread Chris Sheffield
Strange. I just tried again (for the 3rd or 4th time) and it worked this time. 
So all is well. Not sure what the issue was…

On Mar 5, 2014, at 9:10 AM, Chris Sheffield  wrote:

> Anybody else having trouble activating this build? I’ve already sent an email 
> to support, but thought I’d ask here. Curious if it’s just me or not.
> 
> Thanks,
> Chris
> 
> 
> --
> Chris Sheffield
> Read Naturally, Inc.
> www.readnaturally.com
> 
> 
> 
> On Mar 5, 2014, at 8:36 AM, Benjamin Beaumont  wrote:
> 
>> Dear List Members.
>> 
>> We are pleased to announce the release of LiveCode 6.6 RC1. This release is
>> now considered feature complete.
>> 
>> *Warning, this is a pre-release with new features which have the potential
>> to cause issues. Please ensure you backup your stacks before testing this
>> release.*
>> 
>> *Important Changes*
>> 
>>  1. Tiger support dropped. As of version 6.6-dp-1, OS 10.4 (Tiger)
>>  support has been dropped from LiveCode. This is primarily for technical
>>  reasons: In order to support the latest OS X features (e.g. Cocoa -
>>  LiveCode 6.7 - coming soon) as well as include the newest versions of
>>  thirdparty libraries (e.g. LibSkia, LibSQLite), dropping 10.4 support was
>>  required. Users wishing to produce 10.4 compatible executables can still do
>>  so using LiveCode version 6.5.x (and earlier).
>> 
>> 
>> *Release Contents*
>> 
>>  - This development release contains the following changes:
>>  - 'assert' command (experimental)
>>  - New **showAll** fullscreenmode.
>>  - Hi-DPI support for Windows 7/8 and OSX.
>>  - HTTPS through proxy
>>  - Image Filtering Updates
>>  - Graphics Library Update
>>  - OpenSSL & Encryption Updates
>>  - Proxy automatic configuration support
>>  - 'secure socket' command
>>  - '#!' now recognised by server
>>  - SQLite support updated and improved
>>  - Stack scaling
>>  - OS 10.4 (Tiger) Support
>>  - 31 bug fixes:
>> - *11874 - BinaryDecode wrong on Android*
>> - *11858 - Hidden stacks don't update their position when re-shown*
>> - *11844 - Stack height limited to screen height*
>> - *11841 - The effective revAvailableHandlers of an object sometimes
>> contains duplicates*
>> - *11836 - MouseLoc returns wrong value if pixelScale set to value
>> other than 1*
>> - *11816 - Native Android control rects not scaled when set from
>> preOpenStack handler*
>> - *11814 - Accelerated rendering causes cards to be rendered in the
>> bottom left of the screen on iOS Retina devices*
>> - *11811 - Cannot take screen snapshot at high resolution.*
>> - *11789 - mobileComposeMail only blocks the first time on Android.*
>> - *11785 - Option menu with height > 22 draws incorrectly on OSX with
>> Retina display.*
>> - *11783 - Setting the fullscreenmode on Windows when not fullscreen
>> causes text to change.*
>> - *11781 - Visual effects can display in the wrong place on iOS on
>> Retina devices.*
>> - *11778 - averageDeviation returns incorrect result on Mac, Linux,
>> iOS, Android*
>> - 11754 - Error (invalid bundle) on uploading app to iOS App Store
>> - 11753 - Cannot play some video streams on Android
>> - 11751 - After selecting an item in an option menu containing
>> unicode, the label is corrupted (Mac only)
>> - 11732 - <> operator is different from 'is not' operator for arrays
>> - 11721 - Crash when taking a snapshot of the template graphic
>> - 11720 - SQLite FTS feature doesn't work on iOS or Mac.
>> - 11715 - LiveCode crashes if dragsource object is closed during
>> dragEnd handler
>> - 11703 - iPhoneSetRemoteControlDisplay crashes
>> - 11617 - acceleratedRendering will clip the end of long scrolling
>> groups
>> - 11462 - Failing to set image data to the image data of self
>> - 11442 - Can't quit LiveCode after setting the securityPermissions
>> to "network"
>> - 11124 - No error message when external not found when deploying to
>> simulator
>> - 11069 - mobileComposeMail attachment missing in Android
>> - 10910 - "Crop image" command crashes LiveCode application
>> - 10467 - Indenting of scripts can go wrong
>> - 10280 - SQLite binary entries are non-standard.
>> - 8044 - setting a crop with quotes loses data
>> - 5331 - Mac live window resizing is off by default.
>> 
>> 
>> *Known Issues*
>> - Text scaling/clipping on Linux with stack scale set
>> 
>> *Getting this release*
>> To upgrade to this release please select "check for updates" from the help
>> menu in LiveCode or download the installers directly at:
>> http://downloads.livecode.com/livecode/
>> 
>> *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
>> 
>> -- 
>> _
>> 
>> Benjamin Beaumont . RunRev Ltd
>> 
>> LiveCode Product 

Re: RELEASE LiveCode 6.6 RC1

2014-03-05 Thread Chris Sheffield
Anybody else having trouble activating this build? I’ve already sent an email 
to support, but thought I’d ask here. Curious if it’s just me or not.

Thanks,
Chris


--
Chris Sheffield
Read Naturally, Inc.
www.readnaturally.com



On Mar 5, 2014, at 8:36 AM, Benjamin Beaumont  wrote:

> Dear List Members.
> 
> We are pleased to announce the release of LiveCode 6.6 RC1. This release is
> now considered feature complete.
> 
> *Warning, this is a pre-release with new features which have the potential
> to cause issues. Please ensure you backup your stacks before testing this
> release.*
> 
> *Important Changes*
> 
>   1. Tiger support dropped. As of version 6.6-dp-1, OS 10.4 (Tiger)
>   support has been dropped from LiveCode. This is primarily for technical
>   reasons: In order to support the latest OS X features (e.g. Cocoa -
>   LiveCode 6.7 - coming soon) as well as include the newest versions of
>   thirdparty libraries (e.g. LibSkia, LibSQLite), dropping 10.4 support was
>   required. Users wishing to produce 10.4 compatible executables can still do
>   so using LiveCode version 6.5.x (and earlier).
> 
> 
> *Release Contents*
> 
>   - This development release contains the following changes:
>   - 'assert' command (experimental)
>   - New **showAll** fullscreenmode.
>   - Hi-DPI support for Windows 7/8 and OSX.
>   - HTTPS through proxy
>   - Image Filtering Updates
>   - Graphics Library Update
>   - OpenSSL & Encryption Updates
>   - Proxy automatic configuration support
>   - 'secure socket' command
>   - '#!' now recognised by server
>   - SQLite support updated and improved
>   - Stack scaling
>   - OS 10.4 (Tiger) Support
>   - 31 bug fixes:
>  - *11874 - BinaryDecode wrong on Android*
>  - *11858 - Hidden stacks don't update their position when re-shown*
>  - *11844 - Stack height limited to screen height*
>  - *11841 - The effective revAvailableHandlers of an object sometimes
>  contains duplicates*
>  - *11836 - MouseLoc returns wrong value if pixelScale set to value
>  other than 1*
>  - *11816 - Native Android control rects not scaled when set from
>  preOpenStack handler*
>  - *11814 - Accelerated rendering causes cards to be rendered in the
>  bottom left of the screen on iOS Retina devices*
>  - *11811 - Cannot take screen snapshot at high resolution.*
>  - *11789 - mobileComposeMail only blocks the first time on Android.*
>  - *11785 - Option menu with height > 22 draws incorrectly on OSX with
>  Retina display.*
>  - *11783 - Setting the fullscreenmode on Windows when not fullscreen
>  causes text to change.*
>  - *11781 - Visual effects can display in the wrong place on iOS on
>  Retina devices.*
>  - *11778 - averageDeviation returns incorrect result on Mac, Linux,
>  iOS, Android*
>  - 11754 - Error (invalid bundle) on uploading app to iOS App Store
>  - 11753 - Cannot play some video streams on Android
>  - 11751 - After selecting an item in an option menu containing
>  unicode, the label is corrupted (Mac only)
>  - 11732 - <> operator is different from 'is not' operator for arrays
>  - 11721 - Crash when taking a snapshot of the template graphic
>  - 11720 - SQLite FTS feature doesn't work on iOS or Mac.
>  - 11715 - LiveCode crashes if dragsource object is closed during
>  dragEnd handler
>  - 11703 - iPhoneSetRemoteControlDisplay crashes
>  - 11617 - acceleratedRendering will clip the end of long scrolling
>  groups
>  - 11462 - Failing to set image data to the image data of self
>  - 11442 - Can't quit LiveCode after setting the securityPermissions
>  to "network"
>  - 11124 - No error message when external not found when deploying to
>  simulator
>  - 11069 - mobileComposeMail attachment missing in Android
>  - 10910 - "Crop image" command crashes LiveCode application
>  - 10467 - Indenting of scripts can go wrong
>  - 10280 - SQLite binary entries are non-standard.
>  - 8044 - setting a crop with quotes loses data
>  - 5331 - Mac live window resizing is off by default.
> 
> 
> *Known Issues*
> - Text scaling/clipping on Linux with stack scale set
> 
> *Getting this release*
> To upgrade to this release please select "check for updates" from the help
> menu in LiveCode or download the installers directly at:
> http://downloads.livecode.com/livecode/
> 
> *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
> 
> -- 
> _
> 
> Benjamin Beaumont . RunRev Ltd
> 
> LiveCode Product Manager
> mail : 25a Thistle Street Lane South West, Edinburgh, EH2 1EW
> email : b...@runrev.com
> company : +44(0) 845 219 89 23
> fax : +44(0) 845 458 8487
> web : www.runrev.com
> 
> LiveCode - Programming made simple
> __

RELEASE LiveCode 6.6 RC1

2014-03-05 Thread Benjamin Beaumont
Dear List Members.

We are pleased to announce the release of LiveCode 6.6 RC1. This release is
now considered feature complete.

*Warning, this is a pre-release with new features which have the potential
to cause issues. Please ensure you backup your stacks before testing this
release.*

*Important Changes*

   1. Tiger support dropped. As of version 6.6-dp-1, OS 10.4 (Tiger)
   support has been dropped from LiveCode. This is primarily for technical
   reasons: In order to support the latest OS X features (e.g. Cocoa -
   LiveCode 6.7 - coming soon) as well as include the newest versions of
   thirdparty libraries (e.g. LibSkia, LibSQLite), dropping 10.4 support was
   required. Users wishing to produce 10.4 compatible executables can still do
   so using LiveCode version 6.5.x (and earlier).


*Release Contents*

   - This development release contains the following changes:
   - 'assert' command (experimental)
   - New **showAll** fullscreenmode.
   - Hi-DPI support for Windows 7/8 and OSX.
   - HTTPS through proxy
   - Image Filtering Updates
   - Graphics Library Update
   - OpenSSL & Encryption Updates
   - Proxy automatic configuration support
   - 'secure socket' command
   - '#!' now recognised by server
   - SQLite support updated and improved
   - Stack scaling
   - OS 10.4 (Tiger) Support
   - 31 bug fixes:
  - *11874 - BinaryDecode wrong on Android*
  - *11858 - Hidden stacks don't update their position when re-shown*
  - *11844 - Stack height limited to screen height*
  - *11841 - The effective revAvailableHandlers of an object sometimes
  contains duplicates*
  - *11836 - MouseLoc returns wrong value if pixelScale set to value
  other than 1*
  - *11816 - Native Android control rects not scaled when set from
  preOpenStack handler*
  - *11814 - Accelerated rendering causes cards to be rendered in the
  bottom left of the screen on iOS Retina devices*
  - *11811 - Cannot take screen snapshot at high resolution.*
  - *11789 - mobileComposeMail only blocks the first time on Android.*
  - *11785 - Option menu with height > 22 draws incorrectly on OSX with
  Retina display.*
  - *11783 - Setting the fullscreenmode on Windows when not fullscreen
  causes text to change.*
  - *11781 - Visual effects can display in the wrong place on iOS on
  Retina devices.*
  - *11778 - averageDeviation returns incorrect result on Mac, Linux,
  iOS, Android*
  - 11754 - Error (invalid bundle) on uploading app to iOS App Store
  - 11753 - Cannot play some video streams on Android
  - 11751 - After selecting an item in an option menu containing
  unicode, the label is corrupted (Mac only)
  - 11732 - <> operator is different from 'is not' operator for arrays
  - 11721 - Crash when taking a snapshot of the template graphic
  - 11720 - SQLite FTS feature doesn't work on iOS or Mac.
  - 11715 - LiveCode crashes if dragsource object is closed during
  dragEnd handler
  - 11703 - iPhoneSetRemoteControlDisplay crashes
  - 11617 - acceleratedRendering will clip the end of long scrolling
  groups
  - 11462 - Failing to set image data to the image data of self
  - 11442 - Can't quit LiveCode after setting the securityPermissions
  to "network"
  - 11124 - No error message when external not found when deploying to
  simulator
  - 11069 - mobileComposeMail attachment missing in Android
  - 10910 - "Crop image" command crashes LiveCode application
  - 10467 - Indenting of scripts can go wrong
  - 10280 - SQLite binary entries are non-standard.
  - 8044 - setting a crop with quotes loses data
  - 5331 - Mac live window resizing is off by default.


*Known Issues*
- Text scaling/clipping on Linux with stack scale set

*Getting this release*
To upgrade to this release please select "check for updates" from the help
menu in LiveCode or download the installers directly at:
http://downloads.livecode.com/livecode/

*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

-- 
_

Benjamin Beaumont . RunRev Ltd

LiveCode Product Manager
mail : 25a Thistle Street Lane South West, Edinburgh, EH2 1EW
email : b...@runrev.com
company : +44(0) 845 219 89 23
fax : +44(0) 845 458 8487
web : www.runrev.com

LiveCode - Programming made simple
___
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