Movie problems in LiveCode

2015-03-23 Thread stgoldb...@aol.com


I  confirm bug 14435 reported by Devin Asay regarding the current problem with 
creating movies on Macintosh using LiveCode versions in the LC6-7 series. This 
is a significant problem since it appears impossible at this point to create 
standalones on the Mac that will display player movies on Windows. This is 
because in the  LC 6-7 versions for Mac (preliminary version 8, too) once a 
relative path is placed in the Property Inspector filename window of a movie 
player on Mac it immediately reverts to the absolute path on closing the 
Inspector.  I could not assign a relative path by script either.  This makes it 
impossible with LC 6-7 versions to create a standalone on a Macintosh for 
Windows that contains a functioning player movie, since there is no relative 
path in the player Property Inspector, and Windows therefore doesn’t recognize 
the movie.

There an additional problem: The later Mac versions of LC apparently will not 
display a Quicktime VR movie on the Mac. Can anyone display a Quicktime VR 
movie in the Mac LC 6-7 series?

 I use a lot of movies, and therefore have stayed with Mac LC version 5.5.3, 
which works fine.

Interestingly, these problems do not exist with LiveCode for Windows. The movie 
player in Windows (Vista) with  LC 7.0 remembers the relative path. Also in the 
Windows version there is no difficulty in displaying a Quicktime VR movie.  

And yet another movie problem: Trying to change the loc of a movieClip in its 
Property Inspector does not work (for me) on Mac or Windows in Mac versions 
5.5.3 or later or in Windows 7.0 (the only Windows version I have tested); the 
movieClip always appears in the same location on the screen regardless of where 
the loc is set in the movieClip inspector.

There is thus a triple  whammy regarding movies, involving Quicktime player 
movies, Quicktime VR movies, and videoClips. I hope these problems are 
corrected soon, as movies are an important feature of LiveCode, particularly 
for educators.

Stephen Goldberg, President
Medmaster Publishing Co.
Professor Emeritus
Univ of Miami Miller School of Medicine
www.medmaster.net
stgoldb...@aol.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: [OT} Why Computer Color Is Broken

2015-03-23 Thread Walt Brown
Interesting, thank you.
Walt

On Sun, Mar 22, 2015 at 9:34 PM, Peter Haworth p...@lcsql.com wrote:


 http://digg.com/video/why-computer-color-is-broken?utm_source=diggutm_medium=email
 ___
 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: API

2015-03-23 Thread Peter W A Wood
Thanks, Peter

 On 23 Mar 2015, at 18:30, Peter TB Brett peter.br...@livecode.com wrote:
 
 On 2015-03-22 22:59, Peter W A Wood wrote:
 Richmond
 I believe that Richard’s “providing OS API access” is a
 simplification, probably an over simplification, of “providing the
 ability to access the OS API”. As I understand, LiveCode Builder will
 allow us to write code which can directly call an OS API but, of
 course, we will need to define the OS API function in LiveCode
 Builder.
 I had a quick scan of the LiveCode Builder files in Github but didn’t
 see any examples so the facility may not even be in the current
 release .
 
 https://github.com/runrev/livecode/blob/develop/tests/lcb/_testrunner.lcb#L44
 
 It's in there.
 
  Peter
 
 -- 
 Dr Peter Brett
 LiveCode Engine Development Team
 
 
 ___
 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: [OT} Why Computer Color Is Broken

2015-03-23 Thread jbv
I love the last sentence :
shouldn't beauty just be the default ?

 http://digg.com/video/why-computer-color-is-broken?utm_source=diggutm_medium=email
 ___
 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: Toggling a Single Radio Button

2015-03-23 Thread Bob Sneidar
I’ve seen radio buttons set up to work like checkboxes before, mostly in web 
browser built into appliances, and thought what an odd way to use a checkbox! I 
agree that single on/off choices should be checkboxes, and multiple choice 
should be a group of radio buttons. 

Bob S


 On Mar 9, 2015, at 12:02 , Klaus major-k kl...@major-k.de wrote:
 
 Hi Ray,
 
 Am 09.03.2015 um 19:58 schrieb Ray r...@linkit.com:
 
 Does anybody know how to toggle a single radio button so it behaves like a 
 check box?  That is, if it's highlighted when you click it the button 
 becomes dehighlighted and vice versa?
 This does not work:
 on mouseUp
  if the hilite of me = true then
 set the hilite of me to false
  else set the hilite of me to true
 end mouseUp
 
 Any ideas for this simple task?
 
 yep :-)
 
 1. UNCHECK autohilite for your lonesome radio button!
 2. Now your script should work, or just use this one-liner:
 
 on mouseUp
   set the hilite of me to NOT (the hilite of me)
 end mouseUp
 :-)
 
 
 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: Data Grid graphics buttons

2015-03-23 Thread Bob Sneidar
It’s my understanding that if you want to do anything fancy with a data grid, 
forms are the way to go. A simple checkbox is one thing. Displaying different 
results depending on content is another.

Bob S


On Mar 8, 2015, at 23:06 , JB 
sund...@pacifier.commailto:sund...@pacifier.com wrote:

Maybe I need to leant the Forms example
first.  Is that required to work on tables or
am I just doing something really stupid?

John Balgenorth


On Mar 8, 2015, at 8:39 PM, JB 
sund...@pacifier.commailto:sund...@pacifier.com wrote:

Thanks for the link, Mike!

John Balgenorth


On Mar 8, 2015, at 8:27 AM, Mike Bonner 
bonnm...@gmail.commailto:bonnm...@gmail.com wrote:

Look here:
http://lessons.runrev.com/m/datagrid/l/7311-how-do-i-customize-a-table-s-columns


On Sat, Mar 7, 2015 at 10:54 PM, JB sund...@pacifier.com wrote:

Is there a way to set a graphic or button in
a data grid table column using a script?

So if I want line 12 of column name to be
a graphic can I change the behavior like
I can with Haken’s script that modifies the
number format and instead of displaying a
different value for the number display either
a graphic or button instead?

John Balgenorth







___
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.commailto: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: xmlerr, can't parse xml, Extra content at the end of the document

2015-03-23 Thread kee nethery
Are you confusing data with labels?
kee


Normally you’d do something like this where the data is not part of the labels 
(the indents are just for readability):

?xml version=1.0 encoding=UTF-8”?
myLiveCodeXml
user id=2
usernameTiemo Hollmann/username
emailtoolb...@kestner.de/email
/user
user id=6
usernameKee Nethery/username
emailk...@ieee.org/email
/user
/myLiveCodeXml




 On Mar 23, 2015, at 3:11 AM, Tiemo Hollmann TB toolb...@kestner.de wrote:
 
 Hello,
 
 I am using since some time successfully XML files with LC 6.5.2. Now I
 wanted to allow the user to enter spaces in their names like “Tiemo
 Hollmann”, which I am using as tag names in my xml file. Because spaces are
 not allowed characters in XML tag name I replace the spaces by “$” before
 creating and saving the xml file and vice versa after reading the xml file.
 When trying to read such a xml file I get the error: “xmlerr, can't parse
 xml, Extra content at the end of the document” though “$” is a valid
 character for tag names in the xml spec. I tried the same with other chars
 like “§” or “%” with the same error. The xml file looks like this:
 
 ?xml version=1.0 encoding=UTF-8?
 
 My$Name
 
 ...
 
 /My$Name
 
 The LC line is: put revXMLCreateTreeFromFile(tXMLFile,true,true,true)  into
 tID
 
 When deleting the “$” signs from the tag names, I can import the file
 without error. I also tried it without encoding=UTF-8, but with the same
 error. There is no trailing char after the last tag name.
 
 Any idea what I am doing wrong?
 
 Thanks
 
 Tiemo
 
 
 
 
 
 
 
 ___
 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: Movie problems in LiveCode

2015-03-23 Thread J. Landman Gay

On 3/23/2015 6:09 AM, stgoldb...@aol.com wrote:

This is because in the  LC 6-7 versions for Mac (preliminary version
8, too) once a relative path is placed in the Property Inspector
filename window of a movie player on Mac it immediately reverts to
the absolute path on closing the Inspector.


Check the preferences setting in the Files and Memory pane. If you have 
set the preference to always use absolute file paths for images it may 
apply to movies too.


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


[OT] Pixar's Renderman

2015-03-23 Thread Richmond

http://renderman.pixar.com/view/non-commercial-renderman

Free.

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: [OT] Pixar's Renderman

2015-03-23 Thread Colin Holgate
Way OT, but of great interest. Thanks!


 On Mar 23, 2015, at 3:22 PM, Richmond richmondmathew...@gmail.com wrote:
 
 http://renderman.pixar.com/view/non-commercial-renderman
 
 Free.
 
 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: API

2015-03-23 Thread Richmond

On 23/03/15 12:30, Peter TB Brett wrote:

On 2015-03-22 22:59, Peter W A Wood wrote:

Richmond

I believe that Richard’s “providing OS API access” is a
simplification, probably an over simplification, of “providing the
ability to access the OS API”. As I understand, LiveCode Builder will
allow us to write code which can directly call an OS API but, of
course, we will need to define the OS API function in LiveCode
Builder.

I had a quick scan of the LiveCode Builder files in Github but didn’t
see any examples so the facility may not even be in the current
release .


https://github.com/runrev/livecode/blob/develop/tests/lcb/_testrunner.lcb#L44 



It's in there.

  Peter



Obviously there is a socking great hole in my education as I cannot for 
the life of me

see how I can use that information:

foreign handler __system(in Command as ZStringNative) returns CInt 
binds to system

handler Shell(in pCommand as String) returns Number
variable tExitStatus as Number
put __system(pCommand) into tExitStatus
if tExitStatus is in [0, -1] then
return tExitStatus
end if
if the operating system is linux then
-- Basically the WEXITSTATUS macro from C...
return tExitStatus shifted right by 8 bitwise
else
return tExitStatus
end if
end handler

to hook onto an API . . .

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

[ANN]SoCal LUG Mtg - NEW LOCATION - Apr 2, Pasadena

2015-03-23 Thread Richard Gaskin
The next meeting of the SoCal LiveCode User Group is coming up on 
Thursday, April 2 in Pasadena at 7PM.


IMPORTANT: The meeting is being held at a new location, Du-par's 
Restaurant, on S. Lake Avenue near Cordova Street:


Du-par's Pasadena
214 S. Lake Ave.
Pasadena, CA 91101
http://www.du-pars.com/dupars_locations.html

Du-par's management is giving us the back room for our meeting.

Meeting details in the forum:
http://forums.livecode.com/viewtopic.php?f=50t=23557

Hope to see you there -

--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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


xmlerr, can't parse xml, Extra content at the end of the document

2015-03-23 Thread Tiemo Hollmann TB
Hello,

I am using since some time successfully XML files with LC 6.5.2. Now I
wanted to allow the user to enter spaces in their names like “Tiemo
Hollmann”, which I am using as tag names in my xml file. Because spaces are
not allowed characters in XML tag name I replace the spaces by “$” before
creating and saving the xml file and vice versa after reading the xml file.
When trying to read such a xml file I get the error: “xmlerr, can't parse
xml, Extra content at the end of the document” though “$” is a valid
character for tag names in the xml spec. I tried the same with other chars
like “§” or “%” with the same error. The xml file looks like this:

?xml version=1.0 encoding=UTF-8?

My$Name

...

/My$Name

The LC line is: put revXMLCreateTreeFromFile(tXMLFile,true,true,true)  into
tID

When deleting the “$” signs from the tag names, I can import the file
without error. I also tried it without encoding=UTF-8, but with the same
error. There is no trailing char after the last tag name.

Any idea what I am doing wrong?

Thanks

Tiemo

 

 

 

___
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: printPaperRectangle LC7

2015-03-23 Thread Terence Heaford

 On 22 Mar 2015, at 22:08, Paul Hibbert p...@livecode.org wrote:
 
 I really can't see why anybody would want the formatting printer to be 
 different from the destination printer, but that's probably just me.


What seems to happen is that when you select a printer via. the print dialogue 
box subsequent visits to the page setup dialogue box now has the same printer 
selected.

A lot of apps only provide access to the Page Setup in the menu. Those apps 
that provide access to printing from a Toolbar only seem to provide access to 
the Print Dialogue box from the Toolbar and not the Page Setup Dialogue box.

I agree that it would be better if LC provided access to the new style Print 
Dialogue Box which also provides the Page Setup.

Have you requested LC provide this?



All the best

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

2015-03-23 Thread Peter TB Brett

On 2015-03-22 22:59, Peter W A Wood wrote:

Richmond

I believe that Richard’s “providing OS API access” is a
simplification, probably an over simplification, of “providing the
ability to access the OS API”. As I understand, LiveCode Builder will
allow us to write code which can directly call an OS API but, of
course, we will need to define the OS API function in LiveCode
Builder.

I had a quick scan of the LiveCode Builder files in Github but didn’t
see any examples so the facility may not even be in the current
release .


https://github.com/runrev/livecode/blob/develop/tests/lcb/_testrunner.lcb#L44

It's in there.

  Peter

--
Dr Peter Brett
LiveCode Engine Development Team


___
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: printPaperRectangle LC7

2015-03-23 Thread Terence Heaford
Paul,

I think I’ve figured out how to make the settings stick and with the correct 
dimensions:

There is some poor dialogue box design from Apple involved so please be patient 
while I try to explain.

Firstly open a Page Setup Dialogue Box.

There is a pop up menu at the top titled Settings which has 2 items in it.

1. Page Attributes
2. Save as Default

Select all the settings you require:

Orientation
Paper Size
Scale

and choose your printer in Format For:

DO NOT PRESS OK YET

Now go to the popup menu titled Settings and select “Save as Default”

Now Press OK.

You can now quit LiveCode.

Reopen LiveCode and print using something like:

on mouseUp
   
   answer printer as sheet
   if the result = cancel then
  exit mouseUp
   end if

   send printChart to group generalChart
   
end mouseUp

I have found that LC/Printer has maintained it’s settings from the previous 
session.

I suspect that using the Page Setup Dialogue Box to apply settings to different 
printers will result in those being applied if you select a different printer 
in the answer printer dialogue box.


Hope this helps


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

2015-03-23 Thread Michael Doub

Richmond,

This maybe the blind leading the blind, but here is my take. Hopefully 
someone will correct me.


Take a look at ~/livecode/libscript/src/foreign.mlc.   Here is where 
foreign types are defined.


Now take a look at ~/livecode/libscript/src/math.mlcNote that use 
com.livecode.foreign pulls in the type definitions


Just after the use com.livecode.foreign statement you can see where 
the foreign handlers are being defined and their arguments are being 
associated with data types.  I have not quite figured out the details of 
the bind directive, but I think it is providing direction to the 
compiler as to where to find the foreign code.


So line 38 sets up the arguments and data types for 
MCMathEvalSinNumber.  Now look at line 123.  This looks like where the 
sin operator  syntax is being defined for the LCB compiler. Line 129 
looks like where the _LCS_ interface for the sin function is being 
defined.   131 is where the native binding is happening between LCS and 
the native function MCMathEvalSinNumber.   Between all of these pieces 
is where the magic happen.


So if you assume that i am even remotely close to being correct, let's 
go look at ~/livecode/tests/lcb/_testrunner.lcb


line 20 is pulling in the type definitions
line 44 is defining the mapping of the parameter for the __system 
function.  Note that the binding is different.

line 46 is defining the Shell command for LCS
line 48 is where the magic is taking place.

I am still trying to figure out how the bind to ...  works. Some where 
there has to be a linkage between this bind step and the OS level 
library,  So at run time, the library is loaded into memory and the 
final address resolution takes place.


I hope that someone will confirm/correct/ or otherwise educate.

Regards,
Mike




On 3/23/15 3:19 PM, Richmond wrote:

On 23/03/15 12:30, Peter TB Brett wrote:

On 2015-03-22 22:59, Peter W A Wood wrote:

Richmond

I believe that Richard’s “providing OS API access” is a
simplification, probably an over simplification, of “providing the
ability to access the OS API”. As I understand, LiveCode Builder will
allow us to write code which can directly call an OS API but, of
course, we will need to define the OS API function in LiveCode
Builder.

I had a quick scan of the LiveCode Builder files in Github but didn’t
see any examples so the facility may not even be in the current
release .


https://github.com/runrev/livecode/blob/develop/tests/lcb/_testrunner.lcb#L44 



It's in there.

  Peter



Obviously there is a socking great hole in my education as I cannot 
for the life of me

see how I can use that information:

foreign handler __system(in Command as ZStringNative) returns CInt 
binds to system

handler Shell(in pCommand as String) returns Number
variable tExitStatus as Number
put __system(pCommand) into tExitStatus
if tExitStatus is in [0, -1] then
return tExitStatus
end if
if the operating system is linux then
-- Basically the WEXITSTATUS macro from C...
return tExitStatus shifted right by 8 bitwise
else
return tExitStatus
end if
end handler

to hook onto an API . . .

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

[JOB] SetupBuilder

2015-03-23 Thread FlexibleLearning.com
If anyone has experience of setupBuilder installer software or similar,
please contact me off-list... I have an on-going job for you!

Best regards

Hugh Senior
FLCo


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [OT] Pixar's Renderman

2015-03-23 Thread Colin Holgate
Yes, Unreal is free, but you owe them 5% of your royalties if you make over 
$3k. Unity 5 is free if you make less than $100k.



 On Mar 23, 2015, at 8:01 PM, Scott Rossi sc...@tactilemedia.com wrote:
 
 Colin, I¹m guessing you¹ve already seen this other OT news, but for those
 that haven¹t:
 
 Unreal Engine 4 is now available to everyone for free
 
 https://www.unrealengine.com/blog/ue4-is-free
 
 
 Corona SDK is now completely free
 
 https://coronalabs.com/
 
 
 Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX/UI Design
 
 
 
 
 On 3/23/15, 1:08 PM, Colin Holgate colinholg...@gmail.com wrote:
 
 Way OT, but of great interest. Thanks!
 
 
 On Mar 23, 2015, at 3:22 PM, Richmond richmondmathew...@gmail.com
 wrote:
 
 http://renderman.pixar.com/view/non-commercial-renderman
 
 Free.
 
 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


___
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


Question re large project organization

2015-03-23 Thread William Prothero
I have a bunch of stacks that make up a larger application that I’m setting up 
to be easily expandable. There is a splash stack that loads an index stack, 
which then loads various other stacks as needed.

When I make the standalone, it only encrypts the splash stack. The other stacks 
are in raw livecode unprotected format. Do I have to encrypt each of these 
separately? This is starting to look very cumbersome.

Any advice would be appreciated.
Best,
Bill

William A. Prothero
http://es.earthednet.org/

___
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: [OT] Pixar's Renderman

2015-03-23 Thread Scott Rossi
Colin, I¹m guessing you¹ve already seen this other OT news, but for those
that haven¹t:

Unreal Engine 4 is now available to everyone for free

https://www.unrealengine.com/blog/ue4-is-free


Corona SDK is now completely free

https://coronalabs.com/


Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




On 3/23/15, 1:08 PM, Colin Holgate colinholg...@gmail.com wrote:

Way OT, but of great interest. Thanks!


 On Mar 23, 2015, at 3:22 PM, Richmond richmondmathew...@gmail.com
wrote:
 
 http://renderman.pixar.com/view/non-commercial-renderman
 
 Free.
 
 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


mergExt iOS 8.2 support, mergAV update, new free externals

2015-03-23 Thread Monte Goulding
Hi LiveCoders

Today I have updated all my externals to support building against the iOS 8.2 
SDK in Xcode 6.2. 

mergAV has a few new features
 - the ability to list and choose other audio and video inputs rather than just 
the front and rear camera
 - mergAVPick will now save the image metadata if you are picking an image. 
This is something you can't do with the command in the engine for picking a 
photo.
 - mergAVPick now has an extra parameter so you can get the original file data. 
This uses the Photos framework so is iOS 8+
 - There's a new command for saving an image to the image library so that it 
retains it's metadata. Also not possible with the command in the engine.

There is also to new externals in the free section:
 - mergDevice - just one function to get the device name
 - mergScreen - get and set the screen brightness

Cheers

Monte

--
M E R Goulding 
Software development services
Bespoke application development for vertical markets

mergExt - There's an external for that!

___
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: printPaperRectangle LC7

2015-03-23 Thread Paul Hibbert
Thank you for the notes, I have tried setting the defaults, but unfortunately 
it still can't do what I need, I have 5 different printers and all but two have 
very different paper margins.

I realise now that it's not LC's fault when things go awry, but at least I 
found an odd workaround for the current problem by calling the Page Setup after 
the Print dialogue, it's a bit klunky, but at least everything lines up 
correctly that way.

I've had notice today that the print card… 'into pageRect' should be fixed in 
LC7.0.4-rc-3 which is currently awaiting build.

Paul

 On Mar 23, 2015, at 1:39 PM, Terence Heaford t.heaf...@icloud.com wrote:
 
 Paul,
 
 I think I’ve figured out how to make the settings stick and with the correct 
 dimensions:
 
 There is some poor dialogue box design from Apple involved so please be 
 patient while I try to explain.
 
 Firstly open a Page Setup Dialogue Box.
 
 There is a pop up menu at the top titled Settings which has 2 items in it.
 
 1. Page Attributes
 2. Save as Default
 
 Select all the settings you require:
 
 Orientation
 Paper Size
 Scale
 
 and choose your printer in Format For:
 
 DO NOT PRESS OK YET
 
 Now go to the popup menu titled Settings and select “Save as Default”
 
 Now Press OK.
 
 You can now quit LiveCode.
 
 Reopen LiveCode and print using something like:
 
 on mouseUp
 
   answer printer as sheet
   if the result = cancel then
  exit mouseUp
   end if
 
   send printChart to group generalChart
 
 end mouseUp
 
 I have found that LC/Printer has maintained it’s settings from the previous 
 session.
 
 I suspect that using the Page Setup Dialogue Box to apply settings to 
 different printers will result in those being applied if you select a 
 different printer in the answer printer dialogue box.
 
 
 Hope this helps
 
 
 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


___
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