Naive question 5978

2014-07-23 Thread Richmond

I have a bog-basic data extraction stack that extracts lines from a list
field and puts them into another list field.

I want to make an equivalent stack using 2 dataGrids . . .

Now when I put something like this:

if line XXX of dataGrid BING contains Socks then
   put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
end if

I get a really bad attack of the Red Blobs.

I stuck my neck right under the guillotine and tried this:

if column 2 of line XXX of dataGrid BING contains Socks then
   put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
end if

Head dropped straight into the basket!

As this is my first (Yup: FIRST) foray into DataGrids I would be 
grateful for a few pointers.


The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and 
nothing when I look for

'Column' that seems to refer to dataGrids.

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: Naive question 5978

2014-07-23 Thread Richmond

On 23/07/14 09:54, Richmond wrote:

I have a bog-basic data extraction stack that extracts lines from a list
field and puts them into another list field.

I want to make an equivalent stack using 2 dataGrids . . .

Now when I put something like this:

if line XXX of dataGrid BING contains Socks then
   put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
end if

I get a really bad attack of the Red Blobs.

I stuck my neck right under the guillotine and tried this:

if column 2 of line XXX of dataGrid BING contains Socks then
   put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
end if

Head dropped straight into the basket!

As this is my first (Yup: FIRST) foray into DataGrids I would be 
grateful for a few pointers.


The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and 
nothing when I look for

'Column' that seems to refer to dataGrids.

Richmond.


Answering my own question again:

http://lessons.runrev.com/m/datagrid/l/7315-how-do-i-update-data-in-a-row

___
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


DataGrid Sorting

2014-07-23 Thread Terence Heaford
Hi,

I have a table with 6 columns.

Column 1 is a date column formatted as UK english dd/mm/

I want my sorted column to be

01/02/2011…
01/02/2011…
01/02/2011…
01/02/2011…
01/02/2012…
01/02/2012…
01/02/2012…
01/02/2012…
01/02/2013…
01/02/2013…
01/02/2013…
01/02/2013…

but using this code snippet

on SortDataGridColumn pColumn

switch pColumn
   case date
 
  SortDataByKey date,dateTme, Ascending, false

--pass SortDataGridColumn
break

case “column2
--pass SortDataGridColumn
break

case “column3
--pass SortDataGridColumn
break

case “column4
--pass SortDataGridColumn
break

case “column5
--pass SortDataGridColumn
break

case “column6
--pass SortDataGridColumn
break

default
--pass SortDataGridColumn
end switch
end SortDataGridColumn


I get

01/02/2012…
01/02/2012…
01/02/2012…
01/02/2012…
01/02/2013…
01/02/2013…
01/02/2013…
01/02/2013…
01/02/2011…
01/02/2011…
01/02/2011…
01/02/2011…

I must be doing something wrong, I have tried set the useSystemDate to true 
but that has not worked or does DataGrid only work with US dates.

Can someone help please?

Thanks

Terry



___
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: Naive question 5978

2014-07-23 Thread Scott Rossi
Also, dataGrid is not a LiveCode object.  You need to reference the data
grid using group or control.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 7/23/14 12:03 AM, Richmond richmondmathew...@gmail.com wrote:

On 23/07/14 09:54, Richmond wrote:
 I have a bog-basic data extraction stack that extracts lines from a list
 field and puts them into another list field.

 I want to make an equivalent stack using 2 dataGrids . . .

 Now when I put something like this:

 if line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
 end if

 I get a really bad attack of the Red Blobs.

 I stuck my neck right under the guillotine and tried this:

 if column 2 of line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
 end if

 Head dropped straight into the basket!

 As this is my first (Yup: FIRST) foray into DataGrids I would be
 grateful for a few pointers.

 The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and
 nothing when I look for
 'Column' that seems to refer to dataGrids.

 Richmond.

Answering my own question again:

http://lessons.runrev.com/m/datagrid/l/7315-how-do-i-update-data-in-a-row

___
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: QT in Release 7 dp-7

2014-07-23 Thread Mark Schonewille
Yeah, ok, but that's not related to Muaadh's problem. You want to use AV 
Foundation on Mac OS X, Muaadh wants to use QuickTime on Windows.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 7/23/2014 02:51, stephen barncard wrote:

I'm trying to get an existing video record stack to work. And on Mac.



___
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: Naive question 5978

2014-07-23 Thread Richmond


On 07/23/2014 10:16 AM, Scott Rossi wrote:

Also, dataGrid is not a LiveCode object.  You need to reference the data
grid using group or control.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design



Thanks: I'm getting there, slowly!

Richmond.



On 7/23/14 12:03 AM, Richmond richmondmathew...@gmail.com wrote:


On 23/07/14 09:54, Richmond wrote:

I have a bog-basic data extraction stack that extracts lines from a list
field and puts them into another list field.

I want to make an equivalent stack using 2 dataGrids . . .

Now when I put something like this:

if line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
end if

I get a really bad attack of the Red Blobs.

I stuck my neck right under the guillotine and tried this:

if column 2 of line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
end if

Head dropped straight into the basket!

As this is my first (Yup: FIRST) foray into DataGrids I would be
grateful for a few pointers.

The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and
nothing when I look for
'Column' that seems to refer to dataGrids.

Richmond.

Answering my own question again:

http://lessons.runrev.com/m/datagrid/l/7315-how-do-i-update-data-in-a-row

___
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


delete specified text?

2014-07-23 Thread Richmond
So; I have an urge to delete some text from lines of a list field, like 
this:


put 1 into QOUNT
   repeat until line QOUNT of fld PROCD is empty
  delete word 2 of line QOUNT of fld PROCD
  add 1 to QOUNT
   end repeat

which is all fine and dandy.

The ONLY problem is that the word ('Plovdiv') that I want to remove from
the lines of the list field is NOT always the second word . . .

Ever a trier, I tried this:

put 1 into QOUNT
   repeat until line QOUNT of fld PROCD is empty
  delete Plovdiv from line QOUNT of fld PROCD
  add 1 to QOUNT
   end repeat

No joy . . .

Now, I suppose I could have a routine that trots down the line checking 
if each word is 'Plovdiv',

and if so, deleting it.

Seems a bit wasteful and slow . . .

-

I t would be rather jolly if

delete Specific word from line X of fld Y

could be implemented.

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: delete specified text?

2014-07-23 Thread John Craig

Try;

replace Specific word with empty in line X of fld Y




I t would be rather jolly if

delete Specific word from line X of fld Y

could be implemented.

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




___
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: delete specified text?

2014-07-23 Thread Mark Schonewille

Hi Richmond,

You can do this:

replace plovdiv with empty in line 2 of fld PROCD

Unfortunately, you'll end up with double space. You may need to add a 
space to plovdiv in the replace string or replace all double spaces at 
once:


replace space  space with space in fld PROCD

If you really only need to replace Plovdiv, use this:

replace Plovdiv with empty in fld PROCD
repeat until space  space is not in fld PROCD
  replace space  space with space in fld PROCD
end repeat

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 7/23/2014 09:49, Richmond wrote:

So; I have an urge to delete some text from lines of a list field, like
this:

put 1 into QOUNT
repeat until line QOUNT of fld PROCD is empty
   delete word 2 of line QOUNT of fld PROCD
   add 1 to QOUNT
end repeat

which is all fine and dandy.

The ONLY problem is that the word ('Plovdiv') that I want to remove from
the lines of the list field is NOT always the second word . . .

Ever a trier, I tried this:

put 1 into QOUNT
repeat until line QOUNT of fld PROCD is empty
   delete Plovdiv from line QOUNT of fld PROCD
   add 1 to QOUNT
end repeat

No joy . . .

Now, I suppose I could have a routine that trots down the line checking
if each word is 'Plovdiv',
and if so, deleting it.

Seems a bit wasteful and slow . . .

-

I t would be rather jolly if

delete Specific word from line X of fld Y

could be implemented.

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: DataGrid Sorting

2014-07-23 Thread zryip theSlug
Hi Terry,

No need of the SortDataGridColumn handler in this case. Sorting type
can be handled by using the dgColumnSortType property of the datagrid:

set the dgColumnSortType[date] of grp myDatagrid to system dateTime


Best Regards,

On Wed, Jul 23, 2014 at 9:16 AM, Terence Heaford
t.heaf...@btinternet.com wrote:
 Hi,

 I have a table with 6 columns.

 Column 1 is a date column formatted as UK english dd/mm/

 I want my sorted column to be

 01/02/2011…
 01/02/2011…
 01/02/2011…
 01/02/2011…
 01/02/2012…
 01/02/2012…
 01/02/2012…
 01/02/2012…
 01/02/2013…
 01/02/2013…
 01/02/2013…
 01/02/2013…

 but using this code snippet

 on SortDataGridColumn pColumn

 switch pColumn
case date

   SortDataByKey date,dateTme, Ascending, false

 --pass SortDataGridColumn
 break

 case “column2
 --pass SortDataGridColumn
 break

 case “column3
 --pass SortDataGridColumn
 break

 case “column4
 --pass SortDataGridColumn
 break

 case “column5
 --pass SortDataGridColumn
 break

 case “column6
 --pass SortDataGridColumn
 break

 default
 --pass SortDataGridColumn
 end switch
 end SortDataGridColumn


 I get

 01/02/2012…
 01/02/2012…
 01/02/2012…
 01/02/2012…
 01/02/2013…
 01/02/2013…
 01/02/2013…
 01/02/2013…
 01/02/2011…
 01/02/2011…
 01/02/2011…
 01/02/2011…

 I must be doing something wrong, I have tried set the useSystemDate to true 
 but that has not worked or does DataGrid only work with US dates.

 Can someone help please?

 Thanks

 Terry



 ___
 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



-- 
Zryip TheSlug
http://www.aslugontheroad.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: delete specified text?

2014-07-23 Thread Richmond


On 07/23/2014 10:51 AM, John Craig wrote:

Try;

replace Specific word with empty in line X of fld Y


I don't want to delete the complete line!





I t would be rather jolly if

delete Specific word from line X of fld Y

could be implemented.

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




___
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: Naive question 5978

2014-07-23 Thread Skip Kimpel
Datagrid is a complicated and awesome beast.  It is very powerful BUT the 
documentation for it is all over the place.  I have yet to find a single 
concise reference area.

And if you intend on digging deep into datagrid, make sure you get the Datagrid 
Helper!  That will save you HOURS of frustration.

SKIP

 On Jul 23, 2014, at 3:42 AM, Richmond richmondmathew...@gmail.com wrote:
 
 
 On 07/23/2014 10:16 AM, Scott Rossi wrote:
 Also, dataGrid is not a LiveCode object.  You need to reference the data
 grid using group or control.
 
 Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX/UI Design
 
 Thanks: I'm getting there, slowly!
 
 Richmond.
 
 
 On 7/23/14 12:03 AM, Richmond richmondmathew...@gmail.com wrote:
 
 On 23/07/14 09:54, Richmond wrote:
 I have a bog-basic data extraction stack that extracts lines from a list
 field and puts them into another list field.
 
 I want to make an equivalent stack using 2 dataGrids . . .
 
 Now when I put something like this:
 
 if line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
 end if
 
 I get a really bad attack of the Red Blobs.
 
 I stuck my neck right under the guillotine and tried this:
 
 if column 2 of line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
 end if
 
 Head dropped straight into the basket!
 
 As this is my first (Yup: FIRST) foray into DataGrids I would be
 grateful for a few pointers.
 
 The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and
 nothing when I look for
 'Column' that seems to refer to dataGrids.
 
 Richmond.
 Answering my own question again:
 
 http://lessons.runrev.com/m/datagrid/l/7315-how-do-i-update-data-in-a-row
 
 ___
 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: Naive question 5978

2014-07-23 Thread Klaus major-k
Hi Skip,

Am 23.07.2014 um 12:55 schrieb Skip Kimpel skiplon...@gmail.com:

 Datagrid is a complicated and awesome beast.  

very, very true!

 It is very powerful BUT the documentation for it is all over the place.  I 
 have yet to find a single concise reference area.

Get the complete docs as PDF here:
http://lessons.runrev.com/s/lessons/m/datagrid/

 SKIP

Best

Klaus

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


Re: DataGrid Sorting

2014-07-23 Thread Terence Heaford
Hi,

Thanks very much for your response.

That has sorted it (no pun intended).

I have noted that in relation to my question that the following seems to be the 
solution to sorting UK dates dd/mm/.

SortDataByKey date,system dateTime, “Ascending or Descending, false

Thanks again

Terry


On 23 Jul 2014, at 09:30, zryip theSlug zryip.thes...@gmail.com wrote:

 Hi Terry,
 
 No need of the SortDataGridColumn handler in this case. Sorting type
 can be handled by using the dgColumnSortType property of the datagrid:
 
 set the dgColumnSortType[date] of grp myDatagrid to system dateTime
 
 
 Best Regards,
 
 -- 
 Zryip TheSlug
 http://www.aslugontheroad.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


[ANN] Free update: ChartMaker 3.0 Build 62

2014-07-23 Thread FlexibleLearning.com
Version: 3.0
Build: 62
Release type: Maintenance
Issued: 23 July 2014

What's New in this build?

This is a free maintenance release that addresses the following issues...

Fixed
. Trend and Aim lines now display correctly when XGridAlign is false
. Utility: Spurious data pasting when mousewheel is used fixed for LC5.5+
. Utility: Cell alignment fixed for LC5.5+
. Utility: Column adjuster fixed for LC5.5+

Download the current release here for a free 30-day trial or use your
existing key to update:
http://www.flexiblelearning.com/chartmaker/versioning/whatsnew.htm 

or from http://livecode.com/store/marketplace/chartmaker/ 


Note that as a professional product, ChartMaker requires LiveCode
Commercial. However, specific circumstances will be considered for
developers who require maintenance access for their clients.

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


Re: delete specified text?

2014-07-23 Thread Mark Schonewille

Richmond,

It won't delete the complete line, but just the specified text.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 7/23/2014 11:46, Richmond wrote:


On 07/23/2014 10:51 AM, John Craig wrote:

Try;

replace Specific word with empty in line X of fld Y


I don't want to delete the complete line!



___
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


QT in Release 7 dp-7

2014-07-23 Thread Muaadh Salih
Mark wrote :but you can still create one from the message box, as I wrote
in the other thread on this subject.

​from the msg box  : choose  player tool :  the result is instant crash
from the ​
​msg box   :create player tool : ​
​player pointer tool created

Any idea how to create Qt player from the message box ?​


-- 

All the best

M.Salih
Principal Teaching Fellow
Arabic Project Coordinator
Fellow of the Teaching  Learning Academy in Higher Education
Department of the Languages and Cultures of the Near and Middle East
Faculty of Languages and Cultures
School of Oriental and African Studies (SOAS)

Tel : +442078984354
___
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: QT in Release 7 dp-7

2014-07-23 Thread Klaus major-k
Hi Muaadh,

Am 23.07.2014 um 13:42 schrieb Muaadh Salih m...@soas.ac.uk:

 Mark wrote :but you can still create one from the message box, as I wrote
 in the other thread on this subject.
 
 ​from the msg box  : choose  player tool :  the result is instant crash
 from the ​
 ​msg box   :create player tool : ​
 ​player pointer tool created
 
 Any idea how to create Qt player from the message box ?​

not sure what you are asking for, you already created a player object as you 
wrote:
​msg box   :create player tool : ​
​player pointer tool created

Maybe with an unexpsected name, but a player :-)

(the) tool is a keyword and has been resolved first so the name of your new 
player - pointer tool

Use something like this:
## syntax: create OBJECT_TYPE NAME_OF_NEW_OBJECT
create player your fancy name here

 -- 
 
 All the best
 
 M.Salih

Best

Klaus

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

Re: QT in Release 7 dp-7

2014-07-23 Thread Mark Schonewille

Hi Muaadh (and Klaus),

The correct syntax is:

create player

This is all. It will instantly create a player in the current stack, 
which can be changed with the properties inspector.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 7/23/2014 13:42, Muaadh Salih wrote:

Mark wrote :but you can still create one from the message box, as I wrote
in the other thread on this subject.

​from the msg box  : choose  player tool :  the result is instant crash
from the ​
​msg box   :create player tool : ​
​player pointer tool created

Any idea how to create Qt player from the message box ?​




___
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

Pastel colours for charts

2014-07-23 Thread Terence Heaford

In a well know basic programming language for the mac I produce some charts and 
in determining the colours of bars and segments I use the following which I 
converted to the script pastelColor detailed below.

The routine in the well know basic compiler produces a nice shade of pastel for 
the charts but when used in LiveCode the results are rather bright and over 
saturated.

Does anyone know why this is the case?

Is there something wrong with my script?

Is there a better solution?

All the best

Terry

--  Dim tRedMix,tGreenMix,tBlueMix As Integer
--  Dim tRed,tGreen,tBlue As Integer
--  Dim tColor As Color

--  tRedMix = 128
--  tGreenMix = 128
--  tBlueMix = 128

--  tRed = Randomizer.InRange(0, 255)
--  tRed = Round((tRed + tRedMix)/2)

--  tGreen = Randomizer.InRange(0, 255)
--  tGreen = Round((tGreen + tGreenMix)/2)

--  tBlue = Randomizer.InRange(0, 255)
--  tBlue = Round((tBlue + tBlueMix)/2)

--  tColor = RGB(tRed,tGreen,tBlue,0)

--  return tColor



function pastelColor
   set the randomSeed to random(25000)  ??
   
   put 128 into tRedMix
   put 128 into tGreenMix
   put 128 into tBlueMix
   
   put random(256) into tRed
   put round((tRed + tRedMix)/2) into tRed
   
   put random(256) into tGreen
   put round((tGreen + tGreenMix)/2) into tGreen
   
   put random(256) into tBlue
   put round((tBlue + tBlueMix)/2) into tBlue
   
   put merge([[tRed]],[[tGreen]],[[tBlue]]) into tColor
   return tColor
end pastelColor


___
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: Naive question 5978

2014-07-23 Thread Alain Farmer
To Skip Kimpel,
About: if you intend on digging deep into datagrid, make sure you get the 
Datagrid Helper.
Question: what is Datagrid Helper ? what is its URL ?
Thanks,



On Wednesday, July 23, 2014 7:11:08 AM, Klaus major-k kl...@major-k.de wrote:
 


Hi Skip,

Am 23.07.2014 um 12:55 schrieb Skip Kimpel skiplon...@gmail.com:

 Datagrid is a complicated and awesome beast.  

very, very true!

 It is very powerful BUT the documentation for it is all over the place.  I 
 have yet to find a single concise reference area.

Get the complete docs as PDF here:
http://lessons.runrev.com/s/lessons/m/datagrid/

 SKIP

Best

Klaus

--
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
___
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: Diacritics in folder names

2014-07-23 Thread Richard Gaskin

Alain Farmer wrote:

 On Tuesday, July 22, 2014 9:27:20 PM, Richard Gaskin wrote:

 Have you tested in the latest build of v7?

 That build not only contains Unicode support throughout, but
 also the latest build folds in the Cocoa support from v6.7.


 Thanks Richard,
 Btw, I have only just recently upgraded to 6.6.2.
 Now I have to upgrade already. Arr!

The free Community Edition has pretty much the same features as the 
Commercial Edition, for those projects where releasing under the GPL is 
a good fit.


For testing it makes things very convenient.


 I will have to get used to it, I guess.
 Is version-7 stable ?

The Download page shows it as DP, with a note on that page:

DP - Short for Developer Preview, these releases are not
feature complete and likely to contain bugs. They have been
made public to allow LiveCode developers to experiment with
the latest features and feedback to the team. Users who find
bugs can file them at http://quality.runrev.com.

http://downloads.livecode.com/livecode/


 Will it fix my problem ?

Give it a try and let us know.

They won't release it until it gets your OK - yours, and from the rest 
of us.  It's a BIG upgrade, and will require a lot of testing.


Please note that in order to accommodate all the changes the file format 
has changed for v7.  If you want to retain the option of working in 
older versions you'll want to do your v7 testing on a copy of your stack 
files.


But please do test with v7.  It's arguably the most significant upgrade 
in LiveCode's history, and will require all of us to pound on it to 
ensure it does what we need it to do when it's released.


Ben's blog post from yesterday outlines the importance of v7:

http://livecode.com/blog/2014/07/22/we-need-your-help-6-7-and-7-0-final-dps-released/

--
 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: Pastel colours for charts

2014-07-23 Thread Terence Heaford
I have been investigating.

When I show the Apple Color Picker on the screen as RGB and use the same colour 
in LiveCode the colour used in LiveCode appears more saturated that in the 
Apple Colour Picker.

Why is that?


All the best

Terry

On 23 Jul 2014, at 14:43, Terence Heaford t.heaf...@btinternet.com wrote:

 Does anyone know why this is the case?

___
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: Naive question 5978

2014-07-23 Thread Magicgate Software - Skip Kimpel
Alain,

If you do ANY work with the datagrid, especially complicated formatting,
this is a must-have tool.

Here are some links:
http://www.aslugontheroad.com/ourproducts/2-what-is-dgh
https://livecode.com/store/marketplace/data-grid-helper-1-2-0/



On Wed, Jul 23, 2014 at 10:05 AM, Alain Farmer alain_far...@yahoo.com
wrote:

 To Skip Kimpel,
 About: if you intend on digging deep into datagrid, make sure you get the
 Datagrid Helper.
 Question: what is Datagrid Helper ? what is its URL ?
 Thanks,



 On Wednesday, July 23, 2014 7:11:08 AM, Klaus major-k kl...@major-k.de
 wrote:



 Hi Skip,

 Am 23.07.2014 um 12:55 schrieb Skip Kimpel skiplon...@gmail.com:

  Datagrid is a complicated and awesome beast.

 very, very true!

  It is very powerful BUT the documentation for it is all over the place.
 I have yet to find a single concise reference area.

 Get the complete docs as PDF here:
 http://lessons.runrev.com/s/lessons/m/datagrid/

  SKIP

 Best

 Klaus

 --
 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
 ___
 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: Display a graphic at this real size (in inch or cm)

2014-07-23 Thread Charles E Buchwald
Hi Ludovic,
You can use my lcResTool to explore the variety of screen densities 
available sometimes called dpi or lpi or other names.
http://buchwald.ca/developer-tools/
An actual size image or graphic is more complicated that you might think!
Cheers,
- Charles

On 23 Jul 2014, at 12:27 AM, Ludovic THEBAULT ludovic.theba...@laposte.net 
wrote:

 Hello,
 
 I want to display a graphic at this real size in cm. 
 So i need to get the real size of the screen,  or at least the screen 
 resolution in dpi.
 
 Thanks for any clue !
 ___
 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

--
Charles E. Buchwald
CEO/Director General
Museografica Digital
http://digital.museografica.com

LC Developer Tools: http://buchwald.ca/developer-tools/

Email Notice: http://wp.me/P3aT4d-33


___
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: Display a graphic at this real size (in inch or cm)

2014-07-23 Thread Ludovic THEBAULT

Le 23 juil. 2014 à 16:56, Charles E Buchwald char...@buchwald.ca a écrit :

 Hi Ludovic,
 You can use my lcResTool to explore the variety of screen densities 
 available sometimes called dpi or lpi or other names.
 http://buchwald.ca/developer-tools/
 An actual size image or graphic is more complicated that you might think!
 Cheers,
 - Charles

Thanks, it could be helpful !!
___
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: Naive question 5978

2014-07-23 Thread Magicgate Software - Skip Kimpel
Thanks Klaus!


On Wed, Jul 23, 2014 at 10:32 AM, Magicgate Software - Skip Kimpel 
s...@magicgate.com wrote:

 Alain,

 If you do ANY work with the datagrid, especially complicated formatting,
 this is a must-have tool.

 Here are some links:
 http://www.aslugontheroad.com/ourproducts/2-what-is-dgh
 https://livecode.com/store/marketplace/data-grid-helper-1-2-0/



 On Wed, Jul 23, 2014 at 10:05 AM, Alain Farmer alain_far...@yahoo.com
 wrote:

 To Skip Kimpel,
 About: if you intend on digging deep into datagrid, make sure you get
 the Datagrid Helper.
 Question: what is Datagrid Helper ? what is its URL ?
 Thanks,



 On Wednesday, July 23, 2014 7:11:08 AM, Klaus major-k kl...@major-k.de
 wrote:



 Hi Skip,

 Am 23.07.2014 um 12:55 schrieb Skip Kimpel skiplon...@gmail.com:

  Datagrid is a complicated and awesome beast.

 very, very true!

  It is very powerful BUT the documentation for it is all over the
 place.  I have yet to find a single concise reference area.

 Get the complete docs as PDF here:
 http://lessons.runrev.com/s/lessons/m/datagrid/

  SKIP

 Best

 Klaus

 --
 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
 ___
 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: Naive question 5978

2014-07-23 Thread zryip theSlug
Hi Richmond,

I've updated my website with a stack demonstrating how to dragdrop
rows from a datagrid to another. This is an updated version of an
example I've already shared in the past.

The stack is demonstrating:
- dragging from dg 1 to dg 2 with deleting the row in dg 1
- dragging from dg 1 to dg 2 by duplicating the row in dg 2 without
removing it in dg 1
- column and data binding: the column order in dg 1 is not the same
than in dg 2. You can play with the column order in the inspector.
- reordering rows in dg 2

http://www.aslugontheroad.com/download/category/4-lab?download=25:drag-drop-lines-in-datagrid


Best Regards,

On Wed, Jul 23, 2014 at 8:54 AM, Richmond richmondmathew...@gmail.com wrote:
 I have a bog-basic data extraction stack that extracts lines from a list
 field and puts them into another list field.

 I want to make an equivalent stack using 2 dataGrids . . .

 Now when I put something like this:

 if line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
 end if

 I get a really bad attack of the Red Blobs.

 I stuck my neck right under the guillotine and tried this:

 if column 2 of line XXX of dataGrid BING contains Socks then
put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
 end if

 Head dropped straight into the basket!

 As this is my first (Yup: FIRST) foray into DataGrids I would be grateful
 for a few pointers.

 The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and
 nothing when I look for
 'Column' that seems to refer to dataGrids.

 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



-- 
Zryip TheSlug
http://www.aslugontheroad.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: Naive question 5978

2014-07-23 Thread zryip theSlug
Skip,

Thanks for sharing the links and the kind words about DGH. Much appreciated.


Best Regards,


On Wed, Jul 23, 2014 at 4:32 PM, Magicgate Software - Skip Kimpel
s...@magicgate.com wrote:
 Alain,

 If you do ANY work with the datagrid, especially complicated formatting,
 this is a must-have tool.

 Here are some links:
 http://www.aslugontheroad.com/ourproducts/2-what-is-dgh
 https://livecode.com/store/marketplace/data-grid-helper-1-2-0/



 On Wed, Jul 23, 2014 at 10:05 AM, Alain Farmer alain_far...@yahoo.com
 wrote:

 To Skip Kimpel,
 About: if you intend on digging deep into datagrid, make sure you get the
 Datagrid Helper.
 Question: what is Datagrid Helper ? what is its URL ?
 Thanks,



 On Wednesday, July 23, 2014 7:11:08 AM, Klaus major-k kl...@major-k.de
 wrote:



 Hi Skip,

 Am 23.07.2014 um 12:55 schrieb Skip Kimpel skiplon...@gmail.com:

  Datagrid is a complicated and awesome beast.

 very, very true!

  It is very powerful BUT the documentation for it is all over the place.
 I have yet to find a single concise reference area.

 Get the complete docs as PDF here:
 http://lessons.runrev.com/s/lessons/m/datagrid/

  SKIP

 Best

 Klaus

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



-- 
Zryip TheSlug
http://www.aslugontheroad.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: Naive question 5978

2014-07-23 Thread Magicgate Software - Skip Kimpel
Not a problem well deserved and your customer support is phenomenal!

Also, just so others know, your Excel Library is PRICELESS.  If anybody out
there needs to implement any type of Excel spreadsheet in their project,
they need to consider your library.

SKIP


On Wed, Jul 23, 2014 at 3:20 PM, zryip theSlug zryip.thes...@gmail.com
wrote:

 Hi Richmond,

 I've updated my website with a stack demonstrating how to dragdrop
 rows from a datagrid to another. This is an updated version of an
 example I've already shared in the past.

 The stack is demonstrating:
 - dragging from dg 1 to dg 2 with deleting the row in dg 1
 - dragging from dg 1 to dg 2 by duplicating the row in dg 2 without
 removing it in dg 1
 - column and data binding: the column order in dg 1 is not the same
 than in dg 2. You can play with the column order in the inspector.
 - reordering rows in dg 2


 http://www.aslugontheroad.com/download/category/4-lab?download=25:drag-drop-lines-in-datagrid


 Best Regards,

 On Wed, Jul 23, 2014 at 8:54 AM, Richmond richmondmathew...@gmail.com
 wrote:
  I have a bog-basic data extraction stack that extracts lines from a list
  field and puts them into another list field.
 
  I want to make an equivalent stack using 2 dataGrids . . .
 
  Now when I put something like this:
 
  if line XXX of dataGrid BING contains Socks then
 put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
  end if
 
  I get a really bad attack of the Red Blobs.
 
  I stuck my neck right under the guillotine and tried this:
 
  if column 2 of line XXX of dataGrid BING contains Socks then
 put line XXX of dataGrid BING into line ZZZ of dataGrid Pants
  end if
 
  Head dropped straight into the basket!
 
  As this is my first (Yup: FIRST) foray into DataGrids I would be grateful
  for a few pointers.
 
  The Dictionary (6.6.2) tells me nothing when I look for 'dataGrid and
  nothing when I look for
  'Column' that seems to refer to dataGrids.
 
  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



 --
 Zryip TheSlug
 http://www.aslugontheroad.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: QT in Release 7 dp-7

2014-07-23 Thread stephen barncard
On Wed, Jul 23, 2014 at 12:33 AM, Mark Schonewille 
m.schonewi...@economy-x-talk.com wrote:

 Yeah, ok, but that's not related to Muaadh's problem. You want to use AV
 Foundation on Mac OS X, Muaadh wants to use QuickTime on Windows.


My comment was related to the mysterious AV Foundation LACK OF
DOCUMENTATION of which there is only rumors and conjecture for
documentation.

I'm waiting for a test stack. It appears this feature was not tested.
*--*
*Stephen Barncard - San Francisco Ca. USA - Deeds Not Words*
___
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: QT in Release 7 dp-7

2014-07-23 Thread Mark Schonewille

Then why don't you say so :-p

Since it is all still very new, my guess is that there isn't that much 
to test. However, from the sparse info in the release notes, I conclude 
that the new player control has most, if not all, features that the old 
player control has plus two new features (hiliteColor and foreColor). 
That should allow you to make your own test stack, if you have OSX 10.8 
or later.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 7/23/2014 22:24, stephen barncard wrote:

On Wed, Jul 23, 2014 at 12:33 AM, Mark Schonewille 
m.schonewi...@economy-x-talk.com wrote:


Yeah, ok, but that's not related to Muaadh's problem. You want to use AV
Foundation on Mac OS X, Muaadh wants to use QuickTime on Windows.



My comment was related to the mysterious AV Foundation LACK OF
DOCUMENTATION of which there is only rumors and conjecture for
documentation.

I'm waiting for a test stack. It appears this feature was not tested.
*--*
*Stephen Barncard - San Francisco Ca. USA - Deeds Not Words*
___
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: [ANN] Free update: ChartMaker 3.0 Build 62

2014-07-23 Thread Mark Talluto
On Jul 23, 2014, at 4:38 AM, FlexibleLearning.com ad...@flexiblelearning.com 
wrote:

 Version: 3.0
 Build: 62
 Release type: Maintenance
 Issued: 23 July 2014
 
 What's New in this build?
 
 This is a free maintenance release that addresses the following issues...
 
 Fixed
 . Trend and Aim lines now display correctly when XGridAlign is false
 . Utility: Spurious data pasting when mousewheel is used fixed for LC5.5+
 . Utility: Cell alignment fixed for LC5.5+
 . Utility: Column adjuster fixed for LC5.5+

Thanks Hugh!  Nice work on this very useful tool.


Best regards,

Mark Talluto
CanelaSoftware.com
LiveCloud.io


___
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


[ANN] Emulated button with gradient

2014-07-23 Thread Mark Schonewille

Hi,

For a future project, I want to use a different type of buttons. As a 
test, I have created a horizontally resizable button with a graphic with 
gradient in the background. I think it looks nice and you're free to use 
it in your own projects.


You can download it here (after making a donation)
http://www3.economy-x-talk.com/file.php?node=graphic-gradient-button
or use this short URL: http://qery.us/9w8

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Installer Maker for LiveCode:
http://qery.us/468

Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

___
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: Mobile Camera Orientation?

2014-07-23 Thread Scott Rossi
Anyone have any suggestion for this?  I've tried adjusting the max
dimension values for the camera, but the preview continues to display
rotated 90 degrees.

Thanks in advance for any advice.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 7/17/14 10:40 AM, Scott Rossi sc...@tactilemedia.com wrote:

Is there some way to set the orientation of the camera when capturing a
photo on an iPad?

The app I'm building is in landscape orientation but the camera preview is
showing up as portrait, rotated 90 degrees.  How does one change the
orientation of the preview?

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




___
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: Mobile Camera Orientation?

2014-07-23 Thread Nakia Brewer
HI Scott,

I have a vague memory of someone else asking this question on the forum.
I will see if I can find that topic.

(Note: from memory I don't think a resolution was posted)



Nakia Brewer | Technology  Solutions Manager | Equipment Management Solutions
t: (02) 49645051 | m: 0458 713 547 | i: www.westrac.com.au


  ACN 009 342 572

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of 
Scott Rossi
Sent: Thursday, 24 July 2014 9:11 AM
To: LiveCode Mail List
Subject: Re: Mobile Camera Orientation?

Anyone have any suggestion for this?  I've tried adjusting the max dimension 
values for the camera, but the preview continues to display rotated 90 degrees.

Thanks in advance for any advice.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 7/17/14 10:40 AM, Scott Rossi sc...@tactilemedia.com wrote:

Is there some way to set the orientation of the camera when capturing a
photo on an iPad?

The app I'm building is in landscape orientation but the camera preview
is showing up as portrait, rotated 90 degrees.  How does one change the
orientation of the preview?

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




___
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
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: QT in Release 7 dp-7

2014-07-23 Thread stephen barncard
On Wed, Jul 23, 2014 at 1:41 PM, Mark Schonewille 
m.schonewi...@economy-x-talk.com wrote:

 That should allow you to make your own test stack, if you have OSX 10.8 or
 later.


 I don't want to start over.

I have a completed video record application with hours of work that WORKS
in previous versions. I want an official test stack to understand the
differences in why it is now NOT working and hopefully to see something
more in the new foundation that takes us beyond the 2002 Audio visual
standards. The same old thing is not what I was hoping for , but at least
I'd want to start from a working state.

*--*
*Stephen Barncard - San Francisco Ca. USA - Deeds Not Words*
___
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


Lock screen layering of stacks?

2014-07-23 Thread Charles E Buchwald
I feel like I'm missing something really basic here...
I have 2 stacks.
Stack Second overlaps stack First.
A button in stack First has this script:

on mouseUp
   go stack Second
   go stack First
end mouseUp

If I press the button, it behaves as I expect. There is a bit of a flicker, and 
stack First ends up on top.
If add a line...

on mouseUp
   lock screen
   go stack Second
   go stack First
end mouseUp

... then the flicker disappears, as expected, but stack Second ends up on top.
Is it supposed to work like this?

Cheers,
- Charles

--
Charles E. Buchwald
CEO/Director General
Museografica Digital
http://digital.museografica.com

LC Developer Tools: http://buchwald.ca/developer-tools/

Email Notice: http://wp.me/P3aT4d-33


___
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