Re: Nested Repeat loops

2014-06-20 Thread Richmond

On 21/06/14 04:34, Dr. Hawkins wrote:

On Fri, Jun 20, 2014 at 6:18 PM, Peter Haworth  wrote:


Wondering if anyone has an elegant way of exiting all the way out of a set
of nested repeat loops., e.g:


It's a badly needed language addition, and one of the things I want from
Fortran.

Then again, I actually used a GOTO in the software for my dissertation,
after realizing it was the rare case one was called for, and had spent
hours making parallel sets of code to avoid it.  (not to mention what I did
with a trailing preposition in that last sentence!)




This is where some sort of "get out quickly" phrase is needed.

Yesterday one of my 12 year old 'victims'  was getting her feet wet with 
her first SWITCH statement,

and got badly bogged down, and we found that

exit switch

seemed to work a bit better than

break

the 'funny' thing is that the Dictionary (err: "Hitch Hiker's Guide to 
the Galaxy") says they are synonymous; but, as we linguists say 'no 2 
words are ever completely synonymous'.


I suppose a GOTO statement would be really good; especially as, although 
Livecode scripts
supposedly don't have line numbers, there are those numbers down the 
left-hand side :/


The only bother about those numbers is that every time one pops a bit of 
code into one's script they will refer to different places.


This sort of thing might not be bad:


put 1 into XX
repeat until XX>7
  do something
put 1 into ZZ
repeat until ZZ>7
  do something else
 put 1 into YY
repeat until YY>7
ask "What colour are you socks?"
   if it contains "purple" then
   goto %%%
   end if
   add 1 to YY
 end repeat
  add 1 to ZZ
  end repeat
   add 1 to XX
end repeat
%%%

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: Nested Repeat loops

2014-06-20 Thread jbv
In some cases I managed to replace "repeat for" with
"repeat while" and thus eliminating the flag and the
test on it since the condition is in the repeat loop itself.

jbv

> Wondering if anyone has an elegant way of exiting all the way out of a set
> of nested repeat loops., e.g:
>
> repeat for...
>repeat for...
>   repeat for
>  repeat for
> if . then  here>
>  end repeat
>  
>   end repeat
>   
>end repeat
>
> end repeat
>
> Right now, I set a flag to true when the exit condition is met then test
> it
> in the  stuff.  Works fine but feels a little kludgy.
>
> Pete
> lcSQL Software 
> Home of lcStackBrowser  and
> SQLiteAdmin 
> ___
> 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: Nested Repeat loops

2014-06-20 Thread Geoff Canyon
It's hard to say without context, but one way to handle things like this is
to fold it all into a function/handler. Then if you want to exit you can
exit/return.


On Fri, Jun 20, 2014 at 8:55 PM, J. Landman Gay 
wrote:

> I've needed that too occasionally but I've always had to set a flag like
> you do. We need an "exit all repeats" command.
>
> On June 20, 2014 8:18:59 PM CDT, Peter Haworth  wrote:
> >Wondering if anyone has an elegant way of exiting all the way out of a
> >set
> >of nested repeat loops.
> --
> 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: Nested Repeat loops

2014-06-20 Thread Warren Samples

On 06/20/2014 08:18 PM, Peter Haworth wrote:

Wondering if anyone has an elegant way of exiting all the way out of a set
of nested repeat loops., e.g:

repeat for...
repeat for...
   repeat for
  repeat for
 if . then 
  end repeat
  
   end repeat
   
end repeat

end repeat

Right now, I set a flag to true when the exit condition is met then test it
in the  stuff.  Works fine but feels a little kludgy.

Pete


Maybe I've completely failed to understand what it is you don't like 
about your current method, but...


Would it be practical and feel cleaner to wrap your nested repeats 
inside a command, say,'doLoop'. When your 'if' condition in the nth 
repeat is met, you 'exit doLoop'. You only have to reference and check a 
condition once this way and you cleanly exit the entire nested structure 
exactly when and where the condition is found.


A useless example that works:

Create a card with four fields and a button. Put this script in the button:


 on mouseUp
   doLoop
   answer "exited loop"
end mouseUp

on doLoop
   repeat 10 times
  add 1 to field 1
  repeat 10 times
 add 1 to field 2
 repeat 10 times
add 1 to field 3
repeat 10 times
   if field 3 is 3 then exit doLoop
   add 1 to field 4
end repeat
 end repeat
  end repeat
   end repeat
end doLoop

Warren

___
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: Nested Repeat loops

2014-06-20 Thread Jerry Jensen
Its not always easy, or worth the trouble, but putting the whole nested 
structure in a separate handler lets you use the exit command.
.Jerry

On Jun 20, 2014, at 6:55 PM, J. Landman Gay  wrote:

> I've needed that too occasionally but I've always had to set a flag like you 
> do. We need an "exit all repeats" command. 
> 
> On June 20, 2014 8:18:59 PM CDT, Peter Haworth  wrote:
>> Wondering if anyone has an elegant way of exiting all the way out of a
>> set
>> of nested repeat loops.
> -- 
> 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: Nested Repeat loops

2014-06-20 Thread J. Landman Gay
I've needed that too occasionally but I've always had to set a flag like you 
do. We need an "exit all repeats" command. 

On June 20, 2014 8:18:59 PM CDT, Peter Haworth  wrote:
>Wondering if anyone has an elegant way of exiting all the way out of a
>set
>of nested repeat loops.
-- 
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


Re: Nested Repeat loops

2014-06-20 Thread Dr. Hawkins
On Fri, Jun 20, 2014 at 6:18 PM, Peter Haworth  wrote:

> Wondering if anyone has an elegant way of exiting all the way out of a set
> of nested repeat loops., e.g:
>

It's a badly needed language addition, and one of the things I want from
Fortran.

Then again, I actually used a GOTO in the software for my dissertation,
after realizing it was the rare case one was called for, and had spent
hours making parallel sets of code to avoid it.  (not to mention what I did
with a trailing preposition in that last sentence!)


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


Nested Repeat loops

2014-06-20 Thread Peter Haworth
Wondering if anyone has an elegant way of exiting all the way out of a set
of nested repeat loops., e.g:

repeat for...
   repeat for...
  repeat for
 repeat for
if . then 
 end repeat
 
  end repeat
  
   end repeat
   
end repeat

Right now, I set a flag to true when the exit condition is met then test it
in the  stuff.  Works fine but feels a little kludgy.

Pete
lcSQL Software 
Home of lcStackBrowser  and
SQLiteAdmin 
___
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 pathing question

2014-06-20 Thread Bill Vlahos
I want to sent a command line command to a Windows executable to pass 
information and a command to it so that the application dials the phone number 
I send it (it is a telephony application). The command works fine if I specify 
the complete path.

Is there a way I can issue the command without explicitly defining the path or 
asking the user to find the navigate to the application and I store the path?

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.
lcTaskList: (http://www.infowallet.com/lctasklist/index.htm)
RunRev lcTaskList Forum: (http://forums.runrev.com/viewforum.php?f=61)

___
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: Image control in a Background

2014-06-20 Thread Vaughn Clement
Hi

Thanks for the help, my dyslectic eyes are subject to misspelling and not
even able to see the error. Great for scripting right! I've lived with it
all my life?

Thank you

Vaughn Clement

Apps by Vaughn Clement (Support)
*http://www.appsbyvaughnclement.com/tools/home-page/
*
Skype: vaughn.clement
https://secure.join.me/appsbyvclement
FaceTime: vclem...@gmail.com
LogMeIn also avaialble
Call on "ooVoo" at address:  vaughnclement or 9282549062
Ph. 928-254-9062



On Fri, Jun 20, 2014 at 12:16 PM, Simon  wrote:

> Hi Vaughn,
> Aside from a spelling mistake just add parentheses around all the folder
> paths
> e.g.
>  put (specialFolderPath("documents") & "/photos/" & the short ID of this
> card) into thePath
>
> and then delete the current filename
> on mouseUp
>--/ the image from mobilePickPhoto uses the template image construct
>--set it off screen so we don't see ift flash /
>set the loc of the templateImage to -1,-1
> set the filename of image "imageField1" of this card to  ""
>
> Simon
>
>
>
> --
> View this message in context:
> http://runtime-revolution.278305.n4.nabble.com/Image-control-in-a-Background-tp4680553p4680559.html
> Sent from the Revolution - User mailing list archive at Nabble.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: Compile IOS Externals

2014-06-20 Thread Mark Wilcox
Hi,

This external is only a couple of lines of code - I very much doubt it
doesn't compile, you probably have a linking problem.

If you post the errors then maybe it'll be easy to solve and it might
also provide valuable learning for other externals.

-- 
  Mark Wilcox
  m...@sorcery-ltd.co.uk

On Thu, Jun 19, 2014, at 04:58 PM, Nakia Brewer wrote:
> Hi,
> 
> In the past (Before xCode5) I have been able to compile and use the
> following external without issue but in xCode5 I get errors that are way
> beyond my understanding.
> https://github.com/trevordevore/iosclipboard
> 
> Would any of the external builders perhaps be interested in getting this
> to compile for a fee?
> 
> 
> 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

___
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: Image control in a Background

2014-06-20 Thread Simon
Hi Vaughn,
Aside from a spelling mistake just add parentheses around all the folder
paths
e.g.
 put (specialFolderPath("documents") & "/photos/" & the short ID of this
card) into thePath 

and then delete the current filename
on mouseUp 
   --/ the image from mobilePickPhoto uses the template image construct 
   --set it off screen so we don't see ift flash / 
   set the loc of the templateImage to -1,-1 
set the filename of image "imageField1" of this card to  ""

Simon



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Image-control-in-a-Background-tp4680553p4680559.html
Sent from the Revolution - User mailing list archive at Nabble.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: Image control in a Background

2014-06-20 Thread J. Landman Gay

On 6/20/2014, 10:23 AM, Vaughn Clement wrote:


The image control is supposed load when the card opens and the last photo
is to be displayed?

>

*on*  openCard

*set*  the defaultfolder to specialFolderPath ("documents") & "/photos/"

*--answer the files*

*if*  the number of this card >1*then*

   *set*  the defaultfolder to specialFolderPath ("documents") &
"/photos/"*then*

  *if*  there is a file the short id of this card*then*

 *put*  specialFolderPath ("documents") & "/photos/" & the short
ID of this card into thePath

 *set*  the filename of image "imegeField1" of this card to
thepath

  *end*  *if*

   *end*  *if*

*end*  openCard



Is this a direct copy/paste? This line is malformed:

 set the defaultfolder to specialFolderPath ("documents") & "/photos/" 
then <--


Remove the trailing "then". Also, the image name is misspelled as 
"imegeField1" ("e" rather than "a") which is more likely the reason for 
the problem.


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


Re: Check for running application in Windows

2014-06-20 Thread Mark Wieder
Paul-

Friday, June 20, 2014, 9:14:09 AM, you wrote:

> Use the function below to return a cr delimited list of running programs
> and then filter the list to see if the app you are interested is on it
> or not.

Nice.
Note that the OSX shell command should actually be

put shell("ps xcw") into myList

(without the "-") and it works on linux as well.

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


Re: Check for running application in Windows

2014-06-20 Thread Magicgate Software - Skip Kimpel
Paul, you are the BEST!

Thank you... it works perfectly.

SKIP


On Fri, Jun 20, 2014 at 12:14 PM, Paul Dupuis  wrote:

> On 6/20/2014 12:09 PM, Magicgate Software - Skip Kimpel wrote:
> > Good afternoon!
> >
> > Is there a way to check to see if there is a program currently running
> on a
> > Windows machine?  For instance, I want to verify that a 3rd party piece
> of
> > software is currently running (not just installed) before proceeding with
> > my LC script.
> >
> > As usual, your comments and suggestions are always appreciated!
> >
> > SKIP
>
> Use the function below to return a cr delimited list of running programs
> and then filter the list to see if the app you are interested is on it
> or not.
>
> function runningPrograms
>   local myList, myColPos, myNewList
>   switch platform()
> case "MacOS" -- OSX Only
>   put shell("ps -xcw") into myList
>   put offset("COMMAND",myList) into myColPos
>   repeat for each line myLine in myList
> put char myColPos to -1 of myLine & cr after myNewList
>   end repeat
>   filter myNewList without "(*"
>   return line 2 to -1 of myNewList
>   break
> case "Win32"
>   set the hideConsoleWindows to true
>   put shell("tasklist /V /FO ""e&"CSV""e) into myList -- or
> use the pv command
>   set the hideConsoleWindows to false
>   delete first line of myList -- remove header
>   repeat for each line myLine in myList
> put item 1 of myLine & cr after myNewList -- item 1 =
> "programname.exe"
>   end repeat
>   return myNewList
>   break
> default
>   return empty
>   end switch
> end runningPrograms
>
>
> ___
> 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: Check for running application in Windows

2014-06-20 Thread Paul Dupuis
On 6/20/2014 12:09 PM, Magicgate Software - Skip Kimpel wrote:
> Good afternoon!
>
> Is there a way to check to see if there is a program currently running on a
> Windows machine?  For instance, I want to verify that a 3rd party piece of
> software is currently running (not just installed) before proceeding with
> my LC script.
>
> As usual, your comments and suggestions are always appreciated!
>
> SKIP

Use the function below to return a cr delimited list of running programs
and then filter the list to see if the app you are interested is on it
or not.

function runningPrograms
  local myList, myColPos, myNewList
  switch platform()
case "MacOS" -- OSX Only
  put shell("ps -xcw") into myList
  put offset("COMMAND",myList) into myColPos
  repeat for each line myLine in myList
put char myColPos to -1 of myLine & cr after myNewList
  end repeat
  filter myNewList without "(*"
  return line 2 to -1 of myNewList
  break
case "Win32"
  set the hideConsoleWindows to true
  put shell("tasklist /V /FO ""e&"CSV""e) into myList -- or
use the pv command
  set the hideConsoleWindows to false
  delete first line of myList -- remove header
  repeat for each line myLine in myList
put item 1 of myLine & cr after myNewList -- item 1 =
"programname.exe"
  end repeat
  return myNewList
  break
default
  return empty
  end switch
end runningPrograms


___
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


Check for running application in Windows

2014-06-20 Thread Magicgate Software - Skip Kimpel
Good afternoon!

Is there a way to check to see if there is a program currently running on a
Windows machine?  For instance, I want to verify that a 3rd party piece of
software is currently running (not just installed) before proceeding with
my LC script.

As usual, your comments and suggestions are always appreciated!

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


Image control in a Background

2014-06-20 Thread Vaughn Clement
Hi All

I asked this question recently and I did not get any responses.

I have a substack with a background group where there is an Image Control
is being populated using the

mobilePickPhoto "library"

The image is added to the control correctly and displays, but if I leave
the card and return the image is gone.

To solve this the image is stored in the folder on in the app as per this
script:


*on* mouseUp

   /* the image from mobilePickPhoto uses the template image construct

   set it off screen so we don't see ift flash */

   *set* the loc of the templateImage to -1,-1

   /*choose a photo*/

   mobilePickPhoto "library"

   *lock* screen

   *if* the result <> "cancel" *then*

  /* make the filepath to save the chosen image*/

  *put* specialFolderPath("documents") & "/photos/" & the short ID of
this card into thePath

  /* put the image into a file in the photos folder */

  *put* the text of the last image of this card into URL("binfile:" &
thePath)

  /*set the loc of image 1 to the loc of group "picgroup' so it will
align*/

  *--set the loc of  image "imageField1" to the loc of group "picgroup"*

  /* show the image on the card */

  *set* the filename of image "ImageField1" of this card to thePath

  /* destroy the image imported from the library */

  *delete* the last image of this card

   *end* *if*

*end* mouseUp

The image control is supposed load when the card opens and the last photo
is to be displayed?


*on* openCard

   *set* the defaultfolder to specialFolderPath ("documents") & "/photos/"

   *--answer the files*

   *if* the number of this card >1 *then*

  *set* the defaultfolder to specialFolderPath ("documents") &
"/photos/" *then*

 *if* there is a file the short id of this card *then*

*put* specialFolderPath ("documents") & "/photos/" & the short
ID of this card into thePath

*set* the filename of image "imegeField1" of this card to
thepath

 *end* *if*

  *end* *if*

*end* openCard

Several different changes were tried and the image still will not load into
the card as scripted above.


Can anyone reference the information or see what might cause this issue?


Thank you

Vaughn Clement

Apps by Vaughn Clement (Support)
*http://www.appsbyvaughnclement.com/tools/home-page/
*
Skype: vaughn.clement
https://secure.join.me/appsbyvclement
FaceTime: vclem...@gmail.com
LogMeIn also avaialble
Call on "ooVoo" at address:  vaughnclement or 9282549062
Ph. 928-254-9062
___
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: Diagnosing server error 400

2014-06-20 Thread Trevor DeVore
On Thu, Jun 19, 2014 at 3:26 PM, J. Landman Gay 
wrote:

>
> I have to thank you for this, Trevor. You were absolutely right. The XML
> told me that the request was rejected because it had expired. We're using
> signed URLs set for 15 minutes duration, but this user must have the wrong
> time zone set on their computer clock because the request was "expiring"
> hours and hours before they sent it.
>

You're welcome.

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


Achieving highest resolution output

2014-06-20 Thread dfepstein


I hope someone can help me understand printing resolution. 

If I use LiveCode to generate a PDF that will be printed at 300 dpi, how do I 
achieve the best output? For vectors, I assume that it makes no difference at 
what scale I compose the picture. (Is that true?) But suppose I want to print a 
bit map 1 inch wide. I would tell LiveCode to "print into rect 0,72,0,72" (for 
example) to indicate that it should be 1 inch square. Will this work better if 
the original bit map is 300 pixels wide (to match the intended 300 dpi 
resolution)? Or if it's a multiple of 72, like 288, pixels wide? 

Further suppose that I want some 9 point text on my 1 inch square. For the case 
where I'm printing 288 pixels of width into a rectangle that is 72 wide, it 
seems clear I can compose with 36 point text. But if I'm printing 300 pixels 
into that 72 wide rectangle, will 36 be slightly too small? Should I use 37 
point text? 

Is composing at 300 pixels better for the bit map quality but 288 pixels better 
for getting the right the text size? 

Thanks for any guidance. 

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