Re: picture boxes
Re: picture boxes
- Subject: Re: picture boxes
- From: Dave Glass <email@hidden>
- Date: Fri, 24 May 2002 09:11:25 -0700
On 05/24/02 08:54, "Marichal, Patrick" <email@hidden> wrote:
>
Hi,
>
how can i create x pictures boxes on a document quark. I can create one, but
>
if I want to create another boxes, on the same document, how could I do.
>
Thanks
>
>
TT
>
-------oooo-- \:/ --oooo------
>
Patrick Marichal
>
Tech. Support Informatique
>
La Presse Ltie.
>
@: email@hidden
>
_______________________________________________
>
applescript-users mailing list | email@hidden
>
Help/Unsubscribe/Archives:
>
http://www.lists.apple.com/mailman/listinfo/applescript-users
>
Do not post admin requests to the list. They will be ignored.
This makes new picture boxes, all with the same bounds (one on top of the
other). In practice you'd probably want to change some of the bounds
numbers to move the boxes around on the page.
repeat with x from 1 to 5
make new picture box at beginning with properties {bounds:+data
FRMS0040800000D00000009D800001C30000;}
end repeat
The goofy bounds data came from the result window; I think it is a
Classic/OS X issue because in 9.2.2 it normally returns a bounds rectangle.
Watch the line wraps.
Regards,
Dave Glass
email@hidden
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
References: | |
| >picture boxes (From: "Maréchal, Patrick" <email@hidden>) |