Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!apple!voder!pyramid!infmx!robertw From: robertw@informix.com (Rob Weinberg) Newsgroups: comp.sys.mac.hypercard Subject: Re: hypercard questions Message-ID: <1990Dec28.201726.14217@informix.com> Date: 28 Dec 90 20:17:26 GMT References: <556@valideast.COM> Sender: news@informix.com (Usenet News) Distribution: comp Organization: Informix Software, Inc. Lines: 19 In article <556@valideast.COM> grs@valideast.UUCP (Gregory Smith) writes: >I want to divide the numbers in two fields: > > on mouseUp > add bg field "foo" to bg field "fa" > divide bg field "fa" into bg field "fum" > end mouseUp > >What's the right syntax for the divide? {divide fld "fa" by fld "fum" } will end up with fa/fum in field fa. >Is multiply the same? {multiply fld "fa" by fld "fum" } will end up with fa*fum in field fa. > >Greg