binfile and custom properties

Roger.E.Eller at sealedair.com Roger.E.Eller at sealedair.com
Tue Apr 15 09:29:01 EDT 2003


Thank you to Richard and Jeanne!  Both of these solutions worked
beautifully. My project is on it's way to completion.

Roger Eller
roger.e.eller at sealedair.com

Richard Gaskin wrote:

> Try:
>
> on mouseUp
>   set the uPDFs[masterPDFform] of stack "MyStack" \
>     to URL ("binfile:"C:/PDF_Files/masterForm.pdf)
>   save stack "MyStack"
>   answer the uPDFs[masterPDFform] of stack "MyStack"
> end mouseUp


Jeanne A. E. DeVoto wrote:

> This will do fine:
>
> on mouseUp
>   put "C:/PDF_Files/masterForm.pdf" into masterPDFpath
>   put URL ("binfile:"&masterPDFpath) into masterPDFvariable
>   set the myPDFs["masterPDFform"] of this stack to masterPDFvariable
>   save this stack
>   answer the myPDFs["masterPDFform"] of this stack
> end mouseUp






More information about the use-livecode mailing list