Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!rutgers!sri-spam!mordor!lll-tis!ptsfa!pbhyf!pjc From: pjc@pbhyf.UUCP (Paul Condie) Newsgroups: comp.sys.att Subject: Re: Help with 3b1 track(3T) Message-ID: <2220@pbhyf.UUCP> Date: Mon, 19-Oct-87 11:49:30 EDT Article-I.D.: pbhyf.2220 Posted: Mon Oct 19 11:49:30 1987 Date-Received: Tue, 20-Oct-87 20:27:21 EDT References: <1163@vu-vlsi.UUCP> Reply-To: pjc@pbhyf.UUCP (Paul Condie) Organization: Pacific * Bell, San Ramon, CA Lines: 20 In article <1163@vu-vlsi.UUCP> elh@vu-vlsi.UUCP (Edward L. Hepler) writes: > >I have been trying to figure out how track(3T) works all evening! > >track_t screen_map; > >tkitem_t track_items[] = { > {0, 0, 100, 100, (struct icon *)0, 1}, > {0, 100, 100, 100, (struct icon *)0, 2}, > {0, 200, 100, 100, (struct icon *)0, 3}, ^^^^^ The window you created 24x80 is only 288 pixels by 720 pixels. Your rectangle is going outside the bounds of the window. Track does not work right if any of the retangles go outside the window. > {100, 0, 300, 300, (struct icon *)0, 4}, ^^^^^^ Same with this one. > {0,0,0,0,(struct icon *)0,0} > }; >