home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / hc / timekeep.sit / Disbursements / background_3711.txt < prev    next >
Text File  |  1987-11-07  |  19KB  |  824 lines

  1. -- background: 3711 from stack: in
  2. -- bmap block id: 4270
  3. -- flags: 4000
  4. -- background id: 0
  5. -- name: Disbursements Bkgnd
  6. ----- HyperTalk script -----
  7. on newCard
  8.   put .15 into field 6 -- charge per page for photocopies
  9.   put 0.00 into field 17 -- total of charges for card
  10.  
  11.   repeat with x = 7 to 16
  12.     set hilite of bkgnd button x to false -- unselect all radio buttons
  13.   end repeat
  14.   click at 26,121 -- select "Client Account" field
  15. end newCard
  16.  
  17. on openCard -- sets hilite of selected button to previous state
  18.   put .15 into field 6 -- charge per page for photocopies
  19.   repeat with y = 7 to 16
  20.     if field y is not empty then
  21.       set lockText of field y to false -- field is opened
  22.       set hilite of bkgnd button y to true -- button is hilited
  23.       exit repeat -- only one per card can be selected, so end here
  24.     end if
  25.   end repeat
  26.  
  27.   hide field "Sort"
  28.   get field "Date"
  29.   convert it to seconds
  30.   put it into field "Sort"
  31. end openCard
  32.  
  33. on closeCard
  34.   repeat with x = 7 to 16
  35.     set hilite of bkgnd button x to false
  36.   end repeat
  37. end closeCard
  38.  
  39.  
  40. -- part 52 (field)
  41. -- low flags: 01
  42. -- high flags: 4000
  43. -- rect: left=44 top=36 right=50 bottom=206
  44. -- title width / last selected line: 0
  45. -- icon id / first selected line: 0 / 0
  46. -- text alignment: 0
  47. -- font id: 3
  48. -- text size: 10
  49. -- style flags: 0
  50. -- line height: 13
  51. -- part name: Date
  52.  
  53.  
  54. -- part 53 (field)
  55. -- low flags: 00
  56. -- high flags: 4000
  57. -- rect: left=25 top=171 right=198 bottom=233
  58. -- title width / last selected line: 0
  59. -- icon id / first selected line: 0 / 0
  60. -- text alignment: 0
  61. -- font id: 3
  62. -- text size: 10
  63. -- style flags: 0
  64. -- line height: 13
  65. -- part name: Client Name
  66. ----- HyperTalk script -----
  67. on closeField
  68.   put the long date into field "Date"
  69.   put field "Client Name" into clName
  70.   push card
  71.   set cursor to 4
  72.   set lockMessages to true
  73.   go to stack "Master Client List"
  74.   repeat with x = 2 to the number of cards
  75.     go to card x
  76.     if field "Client Name" contains clName then
  77.       answer "Use this client account number?" with "No" or "Yes"
  78.       if it is "Yes" then
  79.         put field "Client Name" && "-" && field "Matter" into clName
  80.         put field "Client Number" into clNumber
  81.         pop card
  82.         put clName into field "Client Name"
  83.         put clNumber into field "Client Number"
  84.         set lockMessages to false
  85.         click at 276,103
  86.         exit closeField
  87.       else next repeat
  88.     end if
  89.   end repeat
  90.   pop card
  91.   set lockMessages to false
  92.   put "You don't have an account under that name. Please check your typing."
  93. end closeField
  94.  
  95.  
  96. -- part 54 (field)
  97. -- low flags: 00
  98. -- high flags: 4000
  99. -- rect: left=25 top=109 right=123 bottom=115
  100. -- title width / last selected line: 0
  101. -- icon id / first selected line: 0 / 0
  102. -- text alignment: 0
  103. -- font id: 3
  104. -- text size: 10
  105. -- style flags: 0
  106. -- line height: 13
  107. -- part name: Client Number
  108. ----- HyperTalk script -----
  109. on closeField
  110.   put the long date into field "Date"
  111.   put field "Client Number" into clNum
  112.   push card
  113.   set lockScreen to true
  114.   set lockMessages to true
  115.   set cursor to 4
  116.   go to card clNum in stack "Master Client List"
  117.   put line 1 of field "Client Name" && "-" && field "Matter" into clNme
  118.   pop card
  119.   put clNme into field "Client Name"
  120.   set lockScreen to false
  121.   set lockMessages to false
  122.   click at 276,103
  123. end closeField
  124.  
  125.  
  126. -- part 55 (field)
  127. -- low flags: 00
  128. -- high flags: 4000
  129. -- rect: left=269 top=91 right=145 bottom=498
  130. -- title width / last selected line: 0
  131. -- icon id / first selected line: 0 / 0
  132. -- text alignment: 0
  133. -- font id: 3
  134. -- text size: 10
  135. -- style flags: 0
  136. -- line height: 13
  137. -- part name: Description
  138.  
  139.  
  140. -- part 56 (field)
  141. -- low flags: 01
  142. -- high flags: 0002
  143. -- rect: left=351 top=156 right=169 bottom=388
  144. -- title width / last selected line: 0
  145. -- icon id / first selected line: 0 / 0
  146. -- text alignment: 65535
  147. -- font id: 3
  148. -- text size: 9
  149. -- style flags: 0
  150. -- line height: 12
  151. -- part name: 
  152. ----- HyperTalk script -----
  153. on closefield
  154.   set numberFormat to 0.00
  155.   put field 5 * field 6 into field 7
  156.   put 0 into accum
  157.   repeat with x = 7 to 16
  158.     add field x to accum
  159.   end repeat
  160.   put accum into field 17
  161. end closeField
  162.  
  163.  
  164. -- part 57 (field)
  165. -- low flags: 01
  166. -- high flags: 0002
  167. -- rect: left=409 top=156 right=169 bottom=433
  168. -- title width / last selected line: 0
  169. -- icon id / first selected line: 0 / 0
  170. -- text alignment: 65535
  171. -- font id: 3
  172. -- text size: 9
  173. -- style flags: 0
  174. -- line height: 12
  175. -- part name: 
  176.  
  177.  
  178. -- part 58 (field)
  179. -- low flags: 00
  180. -- high flags: 0002
  181. -- rect: left=450 top=156 right=169 bottom=498
  182. -- title width / last selected line: 0
  183. -- icon id / first selected line: 0 / 0
  184. -- text alignment: 65535
  185. -- font id: 3
  186. -- text size: 9
  187. -- style flags: 0
  188. -- line height: 12
  189. -- part name: 
  190.  
  191.  
  192. -- part 70 (button)
  193. -- low flags: 00
  194. -- high flags: 2000
  195. -- rect: left=7 top=25 right=43 bottom=32
  196. -- title width / last selected line: 0
  197. -- icon id / first selected line: 15420 / 15420
  198. -- text alignment: 1
  199. -- font id: 0
  200. -- text size: 12
  201. -- style flags: 0
  202. -- line height: 16
  203. -- part name: Prev
  204. ----- HyperTalk script -----
  205. on mouseUp
  206.   visual effect wipe right
  207.   go to previous card
  208. end mouseUp
  209.  
  210.  
  211. -- part 71 (button)
  212. -- low flags: 00
  213. -- high flags: 2000
  214. -- rect: left=479 top=24 right=43 bottom=504
  215. -- title width / last selected line: 0
  216. -- icon id / first selected line: 16560 / 16560
  217. -- text alignment: 1
  218. -- font id: 0
  219. -- text size: 12
  220. -- style flags: 0
  221. -- line height: 16
  222. -- part name: Next
  223. ----- HyperTalk script -----
  224. on mouseUp
  225.   visual effect wipe left
  226.   go to next card
  227. end mouseUp
  228.  
  229.  
  230. -- part 72 (button)
  231. -- low flags: 00
  232. -- high flags: A003
  233. -- rect: left=278 top=38 right=53 bottom=325
  234. -- title width / last selected line: 0
  235. -- icon id / first selected line: 0 / 0
  236. -- text alignment: 1
  237. -- font id: 3
  238. -- text size: 10
  239. -- style flags: 0
  240. -- line height: 13
  241. -- part name: Sort
  242. ----- HyperTalk script -----
  243. on mouseUp
  244.   sort by field "Sort"
  245. end mouseUp
  246.  
  247.  
  248.  
  249. -- part 73 (button)
  250. -- low flags: 00
  251. -- high flags: A003
  252. -- rect: left=433 top=39 right=54 bottom=476
  253. -- title width / last selected line: 0
  254. -- icon id / first selected line: 0 / 0
  255. -- text alignment: 1
  256. -- font id: 3
  257. -- text size: 10
  258. -- style flags: 0
  259. -- line height: 13
  260. -- part name: New
  261. ----- HyperTalk script -----
  262. on mouseUp
  263.   go to last card
  264.   doMenu New Card
  265. end mouseUp
  266.  
  267.  
  268.  
  269. -- part 74 (button)
  270. -- low flags: 00
  271. -- high flags: A003
  272. -- rect: left=334 top=38 right=53 bottom=374
  273. -- title width / last selected line: 0
  274. -- icon id / first selected line: 0 / 0
  275. -- text alignment: 1
  276. -- font id: 3
  277. -- text size: 10
  278. -- style flags: 0
  279. -- line height: 13
  280. -- part name: Date
  281. ----- HyperTalk script -----
  282. on mouseUp
  283.   put the long date into field "Date"
  284. end mouseUp
  285.  
  286.  
  287.  
  288. -- part 75 (button)
  289. -- low flags: 00
  290. -- high flags: A003
  291. -- rect: left=45 top=319 right=335 bottom=187
  292. -- title width / last selected line: 0
  293. -- icon id / first selected line: 0 / 0
  294. -- text alignment: 1
  295. -- font id: 3
  296. -- text size: 10
  297. -- style flags: 0
  298. -- line height: 13
  299. -- part name: Master Client List
  300. ----- HyperTalk script -----
  301. on mouseUp
  302.   go stack "Master Client List"
  303. end mouseUp
  304.  
  305.  
  306.  
  307. -- part 76 (button)
  308. -- low flags: 00
  309. -- high flags: A006
  310. -- rect: left=269 top=153 right=169 bottom=352
  311. -- title width / last selected line: 0
  312. -- icon id / first selected line: 0 / 0
  313. -- text alignment: 1
  314. -- font id: 3
  315. -- text size: 10
  316. -- style flags: 0
  317. -- line height: 13
  318. -- part name: Photocopies
  319. ----- HyperTalk script -----
  320. on mouseUp
  321.   repeat with x = 7 to 16
  322.     set hilite of bkgnd button x to false
  323.     put empty into field x
  324.     set lockText of field x to true
  325.   end repeat
  326.   set hilite of me to true
  327.   set lockText of field 5 to false
  328.   put "Photocopies" into field "Description"
  329. end mouseUp
  330.  
  331.  
  332.  
  333. -- part 77 (button)
  334. -- low flags: 00
  335. -- high flags: A006
  336. -- rect: left=269 top=168 right=184 bottom=447
  337. -- title width / last selected line: 0
  338. -- icon id / first selected line: 0 / 0
  339. -- text alignment: 1
  340. -- font id: 3
  341. -- text size: 10
  342. -- style flags: 0
  343. -- line height: 13
  344. -- part name: Long-distance telephone charges
  345. ----- HyperTalk script -----
  346. on mouseUp
  347.   repeat with x = 7 to 16
  348.     set hilite of bkgnd button x to false
  349.     put empty into field x
  350.     set lockText of field x to true
  351.   end repeat
  352.   put empty into field 5
  353.   set hilite of me to true
  354.   set lockText of field 5 to true
  355.   set lockText of field 8 to false
  356.   put "Long-distance telephone charges" into field "Description"
  357. end mouseUp
  358.  
  359.  
  360.  
  361. -- part 78 (button)
  362. -- low flags: 00
  363. -- high flags: A006
  364. -- rect: left=269 top=183 right=199 bottom=447
  365. -- title width / last selected line: 0
  366. -- icon id / first selected line: 0 / 0
  367. -- text alignment: 1
  368. -- font id: 3
  369. -- text size: 10
  370. -- style flags: 0
  371. -- line height: 13
  372. -- part name: Delivery Charges
  373. ----- HyperTalk script -----
  374. on mouseUp
  375.   repeat with x = 7 to 16
  376.     set hilite of bkgnd button x to false
  377.     put empty into field x
  378.     set lockText of field x to true
  379.   end repeat
  380.   put empty into field 5
  381.   set hilite of me to true
  382.   set lockText of field 5 to true
  383.   set lockText of field 9 to false
  384.   put "Delivery Charges - Courier Service" into field "Description"
  385. end mouseUp
  386.  
  387.  
  388.  
  389. -- part 79 (button)
  390. -- low flags: 00
  391. -- high flags: A006
  392. -- rect: left=269 top=198 right=214 bottom=447
  393. -- title width / last selected line: 0
  394. -- icon id / first selected line: 0 / 0
  395. -- text alignment: 1
  396. -- font id: 3
  397. -- text size: 10
  398. -- style flags: 0
  399. -- line height: 13
  400. -- part name: Court filing fees
  401. ----- HyperTalk script -----
  402. on mouseUp
  403.   repeat with x = 7 to 16
  404.     set hilite of bkgnd button x to false
  405.     put empty into field x
  406.     set lockText of field x to true
  407.   end repeat
  408.   put empty into field 5
  409.   set hilite of me to true
  410.   set lockText of field 5 to true
  411.   set lockText of field 10 to false
  412.   put "Court filing fees" into field "Description"
  413. end mouseUp
  414.  
  415.  
  416.  
  417. -- part 80 (button)
  418. -- low flags: 00
  419. -- high flags: A006
  420. -- rect: left=269 top=213 right=229 bottom=447
  421. -- title width / last selected line: 0
  422. -- icon id / first selected line: 0 / 0
  423. -- text alignment: 1
  424. -- font id: 3
  425. -- text size: 10
  426. -- style flags: 0
  427. -- line height: 13
  428. -- part name: Filing Fees, other
  429. ----- HyperTalk script -----
  430. on mouseUp
  431.   repeat with x = 7 to 16
  432.     set hilite of bkgnd button x to false
  433.     put empty into field x
  434.     set lockText of field x to true
  435.   end repeat
  436.   put empty into field 5
  437.   set hilite of me to true
  438.   set lockText of field 5 to true
  439.   set lockText of field 11 to false
  440.   put "Filing fees" into field "Description"
  441. end mouseUp
  442.  
  443.  
  444.  
  445. -- part 81 (button)
  446. -- low flags: 00
  447. -- high flags: A006
  448. -- rect: left=269 top=228 right=244 bottom=447
  449. -- title width / last selected line: 0
  450. -- icon id / first selected line: 0 / 0
  451. -- text alignment: 1
  452. -- font id: 3
  453. -- text size: 10
  454. -- style flags: 0
  455. -- line height: 13
  456. -- part name: Computer assisted research
  457. ----- HyperTalk script -----
  458. on mouseUp
  459.   repeat with x = 7 to 16
  460.     set hilite of bkgnd button x to false
  461.     put empty into field x
  462.     set lockText of field x to true
  463.   end repeat
  464.   put empty into field 5
  465.   set hilite of me to true
  466.   set lockText of field 5 to true
  467.   set lockText of field 12 to false
  468.   put "Computer assisted research" into field "Description"
  469. end mouseUp
  470.  
  471.  
  472.  
  473. -- part 82 (button)
  474. -- low flags: 00
  475. -- high flags: A006
  476. -- rect: left=269 top=243 right=259 bottom=447
  477. -- title width / last selected line: 0
  478. -- icon id / first selected line: 0 / 0
  479. -- text alignment: 1
  480. -- font id: 3
  481. -- text size: 10
  482. -- style flags: 0
  483. -- line height: 13
  484. -- part name: Travel Expenses
  485. ----- HyperTalk script -----
  486. on mouseUp
  487.   repeat with x = 7 to 16
  488.     set hilite of bkgnd button x to false
  489.     put empty into field x
  490.     set lockText of field x to true
  491.   end repeat
  492.   put empty into field 5
  493.   set hilite of me to true
  494.   set lockText of field 5 to true
  495.   set lockText of field 13 to false
  496.   put "Travel Expenses" into field "Description"
  497. end mouseUp
  498.  
  499.  
  500.  
  501. -- part 83 (button)
  502. -- low flags: 00
  503. -- high flags: A006
  504. -- rect: left=269 top=258 right=274 bottom=447
  505. -- title width / last selected line: 0
  506. -- icon id / first selected line: 0 / 0
  507. -- text alignment: 1
  508. -- font id: 3
  509. -- text size: 10
  510. -- style flags: 0
  511. -- line height: 13
  512. -- part name: Miscellaneous
  513. ----- HyperTalk script -----
  514. on mouseUp
  515.   repeat with x = 7 to 16
  516.     set hilite of bkgnd button x to false
  517.     put empty into field x
  518.     set lockText of field x to true
  519.   end repeat
  520.   put empty into field 5
  521.   set hilite of me to true
  522.   set lockText of field 5 to true
  523.   set lockText of field 14 to false
  524.   put "Miscellaneous Expenses" into field "Description"
  525. end mouseUp
  526.  
  527.  
  528.  
  529. -- part 84 (button)
  530. -- low flags: 00
  531. -- high flags: 8006
  532. -- rect: left=269 top=273 right=289 bottom=447
  533. -- title width / last selected line: 0
  534. -- icon id / first selected line: 0 / 0
  535. -- text alignment: 1
  536. -- font id: 3
  537. -- text size: 9
  538. -- style flags: 0
  539. -- line height: 12
  540. -- part name: not yet installed
  541. ----- HyperTalk script -----
  542. on mouseUp
  543.   beep
  544. end mouseUp
  545.  
  546.  
  547.  
  548. -- part 85 (button)
  549. -- low flags: 00
  550. -- high flags: 8006
  551. -- rect: left=269 top=288 right=304 bottom=447
  552. -- title width / last selected line: 0
  553. -- icon id / first selected line: 0 / 0
  554. -- text alignment: 1
  555. -- font id: 3
  556. -- text size: 9
  557. -- style flags: 0
  558. -- line height: 12
  559. -- part name: not yet installed
  560. ----- HyperTalk script -----
  561. on mouseUp
  562.   beep
  563. end mouseUp
  564.  
  565.  
  566.  
  567. -- part 86 (button)
  568. -- low flags: 00
  569. -- high flags: A003
  570. -- rect: left=383 top=38 right=53 bottom=425
  571. -- title width / last selected line: 0
  572. -- icon id / first selected line: 0 / 0
  573. -- text alignment: 1
  574. -- font id: 3
  575. -- text size: 10
  576. -- style flags: 0
  577. -- line height: 13
  578. -- part name: Clear
  579. ----- HyperTalk script -----
  580. on mouseUp
  581.   repeat with x = 1 to the number of fields
  582.     put empty into field x
  583.   end repeat
  584.   repeat with x = 1 to the number of bkgnd buttons
  585.     set hilite of bkgnd button x to false
  586.   end repeat
  587. end mouseUp
  588.  
  589.  
  590.  
  591. -- part 87 (field)
  592. -- low flags: 00
  593. -- high flags: 0002
  594. -- rect: left=450 top=171 right=184 bottom=498
  595. -- title width / last selected line: 0
  596. -- icon id / first selected line: 0 / 0
  597. -- text alignment: 65535
  598. -- font id: 3
  599. -- text size: 9
  600. -- style flags: 0
  601. -- line height: 12
  602. -- part name: 
  603. ----- HyperTalk script -----
  604. on closefield
  605.   set numberFormat to 0.00
  606.   put 0 into accum
  607.   repeat with x = 7 to 16
  608.     add field x to accum
  609.   end repeat
  610.   put accum into field 17
  611. end closeField
  612.  
  613.  
  614. -- part 88 (field)
  615. -- low flags: 01
  616. -- high flags: 0002
  617. -- rect: left=450 top=186 right=199 bottom=498
  618. -- title width / last selected line: 0
  619. -- icon id / first selected line: 0 / 0
  620. -- text alignment: 65535
  621. -- font id: 3
  622. -- text size: 9
  623. -- style flags: 0
  624. -- line height: 12
  625. -- part name: 
  626. ----- HyperTalk script -----
  627. on closefield
  628.   set numberFormat to 0.00
  629.   put 0 into accum
  630.   repeat with x = 7 to 16
  631.     add field x to accum
  632.   end repeat
  633.   put accum into field 17
  634. end closeField
  635.  
  636.  
  637. -- part 89 (field)
  638. -- low flags: 01
  639. -- high flags: 0002
  640. -- rect: left=450 top=201 right=214 bottom=498
  641. -- title width / last selected line: 0
  642. -- icon id / first selected line: 0 / 0
  643. -- text alignment: 65535
  644. -- font id: 3
  645. -- text size: 9
  646. -- style flags: 0
  647. -- line height: 12
  648. -- part name: 
  649. ----- HyperTalk script -----
  650. on closefield
  651.   set numberFormat to 0.00
  652.   put 0 into accum
  653.   repeat with x = 7 to 16
  654.     add field x to accum
  655.   end repeat
  656.   put accum into field 17
  657. end closeField
  658.  
  659.  
  660. -- part 90 (field)
  661. -- low flags: 00
  662. -- high flags: 0002
  663. -- rect: left=450 top=216 right=229 bottom=498
  664. -- title width / last selected line: 0
  665. -- icon id / first selected line: 0 / 0
  666. -- text alignment: 65535
  667. -- font id: 3
  668. -- text size: 9
  669. -- style flags: 0
  670. -- line height: 12
  671. -- part name: 
  672. ----- HyperTalk script -----
  673. on closefield
  674.   set numberFormat to 0.00
  675.   put 0 into accum
  676.   repeat with x = 7 to 16
  677.     add field x to accum
  678.   end repeat
  679.   put accum into field 17
  680. end closeField
  681.  
  682.  
  683. -- part 91 (field)
  684. -- low flags: 01
  685. -- high flags: 0002
  686. -- rect: left=450 top=231 right=244 bottom=498
  687. -- title width / last selected line: 0
  688. -- icon id / first selected line: 0 / 0
  689. -- text alignment: 65535
  690. -- font id: 3
  691. -- text size: 9
  692. -- style flags: 0
  693. -- line height: 12
  694. -- part name: 
  695. ----- HyperTalk script -----
  696. on closefield
  697.   set numberFormat to 0.00
  698.   put 0 into accum
  699.   repeat with x = 7 to 16
  700.     add field x to accum
  701.   end repeat
  702.   put accum into field 17
  703. end closeField
  704.  
  705.  
  706. -- part 92 (field)
  707. -- low flags: 01
  708. -- high flags: 0002
  709. -- rect: left=450 top=246 right=259 bottom=498
  710. -- title width / last selected line: 0
  711. -- icon id / first selected line: 0 / 0
  712. -- text alignment: 65535
  713. -- font id: 3
  714. -- text size: 9
  715. -- style flags: 0
  716. -- line height: 12
  717. -- part name: 
  718. ----- HyperTalk script -----
  719. on closefield
  720.   set numberFormat to 0.00
  721.   put 0 into accum
  722.   repeat with x = 7 to 16
  723.     add field x to accum
  724.   end repeat
  725.   put accum into field 17
  726. end closeField
  727.  
  728.  
  729. -- part 93 (field)
  730. -- low flags: 00
  731. -- high flags: 0002
  732. -- rect: left=450 top=261 right=274 bottom=498
  733. -- title width / last selected line: 0
  734. -- icon id / first selected line: 0 / 0
  735. -- text alignment: 65535
  736. -- font id: 3
  737. -- text size: 9
  738. -- style flags: 0
  739. -- line height: 12
  740. -- part name: 
  741. ----- HyperTalk script -----
  742. on closefield
  743.   set numberFormat to 0.00
  744.   put 0 into accum
  745.   repeat with x = 7 to 16
  746.     add field x to accum
  747.   end repeat
  748.   put accum into field 17
  749. end closeField
  750.  
  751.  
  752. -- part 94 (field)
  753. -- low flags: 01
  754. -- high flags: 0002
  755. -- rect: left=450 top=276 right=289 bottom=498
  756. -- title width / last selected line: 0
  757. -- icon id / first selected line: 0 / 0
  758. -- text alignment: 65535
  759. -- font id: 3
  760. -- text size: 9
  761. -- style flags: 0
  762. -- line height: 12
  763. -- part name: 
  764. ----- HyperTalk script -----
  765. on closefield
  766.   set numberFormat to 0.00
  767.   put 0 into accum
  768.   repeat with x = 7 to 16
  769.     add field x to accum
  770.   end repeat
  771.   put accum into field 17
  772. end closeField
  773.  
  774.  
  775. -- part 95 (field)
  776. -- low flags: 01
  777. -- high flags: 0002
  778. -- rect: left=450 top=291 right=304 bottom=498
  779. -- title width / last selected line: 0
  780. -- icon id / first selected line: 0 / 0
  781. -- text alignment: 65535
  782. -- font id: 3
  783. -- text size: 9
  784. -- style flags: 0
  785. -- line height: 12
  786. -- part name: 
  787. ----- HyperTalk script -----
  788. on closefield
  789.   set numberFormat to 0.00
  790.   put 0 into accum
  791.   repeat with x = 7 to 16
  792.     add field x to accum
  793.   end repeat
  794.   put accum into field 17
  795. end closeField
  796.  
  797.  
  798. -- part 96 (field)
  799. -- low flags: 00
  800. -- high flags: 0002
  801. -- rect: left=450 top=319 right=332 bottom=498
  802. -- title width / last selected line: 0
  803. -- icon id / first selected line: 0 / 0
  804. -- text alignment: 65535
  805. -- font id: 3
  806. -- text size: 9
  807. -- style flags: 0
  808. -- line height: 12
  809. -- part name: Total Disb
  810.  
  811.  
  812. -- part 97 (field)
  813. -- low flags: 80
  814. -- high flags: 0002
  815. -- rect: left=211 top=34 right=46 bottom=239
  816. -- title width / last selected line: 0
  817. -- icon id / first selected line: 0 / 0
  818. -- text alignment: 0
  819. -- font id: 3
  820. -- text size: 9
  821. -- style flags: 0
  822. -- line height: 12
  823. -- part name: Sort
  824.