Re: Int Function
Re: Int Function
- Subject: Re: Int Function
- From: Reinhold Penner <email@hidden>
- Date: Sun, 18 Aug 2002 16:58:38 -1000
On Sunday, August 18, 2002, at 04:36 , Paul Berkowitz wrote:
>
On 8/18/02 7:23 PM, "Christopher Nebel" <email@hidden> wrote:
>
>
>> Can anyone give me an easy way to get the Int of a number, converting,
>
>> for instance, 6.1 into 6?
>
>
>
> "round" from Standard Additions will do what you want.
>
>
Any particular reason why you favor an Addition over the native
>
AppleScript
>
>
div 1
"round" and "div" serve different purposes, they're not equivalent. I
guess it all depends on whether or not you want the number rounded or
just truncated:
set x to 6.7 div 1 --> 6
set x to round 6.7 --> 7
-Reinhold
_______________________________________________
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.