Re: In Defense of PDFs

Subject: Re: In Defense of PDFs
From: "Wing, Michael J" <mjwing -at- INGR -dot- COM>
Date: Fri, 6 Mar 1998 10:45:42 -0600

> -----Original Message-----
> From: Michael Johnson [SMTP:michaelj -at- oecmed -dot- com]
> Sent: Friday, March 06, 1998 10:23 AM
> To: TECHWR-L -at- LISTSERV -dot- OKSTATE -dot- EDU
> Subject: In Defense of PDFs
>
> One thing I really like about PDF images is that they are scalable. You =
> can zoom in and really see the details - even on a laptop. It is a =
> great way to put B-sized schematics on line. I can't imagine how I'd do =
> that with HTML or anything else for that matter.
>
> Happy Friday from a snowy Salt Lake City!
>
> Mike Johnson
> OEC Medical Systems
> Michaelj -at- oecmed -dot- com
>
Ok, here's how. The following increases the size of the schematic GIF by a
factor of 1.5 every time it (the image) is clicked. It decreases the size
by a factor of 1.5 whenever the image is double-clicked.

<img id="MyImage" src="Schematic.gif" alt="My Schematic" WIDTH="40"
HEIGHT="40">

<script language=VBScript>

Sub MyImage_onclick()
MyImage.Width = MyImage.Width * 1.5
MyImage.Height = MyImage.Height * 1.5
End Sub

Sub MyImage_dblclick()
MyImage.Width = MyImage.Width */1.5
MyImage.Height = MyImage.Height / 1.5
End Sub

</script>


Mike

Michael Wing (mailto:mjwing -at- ingr -dot- com)
Principal Technical Writer
Intergraph Corporation; Huntsville, Alabama
http://www.ingr.com/iss/products/mapping/

"Humpty was pushed!"




Previous by Author: Re: Foreign tech writers
Next by Author: Re: Resizing GIFs for HTML?
Previous by Thread: In Defense of PDFs
Next by Thread: Re: In Defense of PDFs


What this post helpful? Share it with friends and colleagues:


Sponsored Ads