; Section 4 -- Taxes ; Answer 2 ; "I'm concerned about getting audited. What are some things I should know?" [taxes] <-- guide seed for this answer ; Indicate that we want to count by frames FF (count by frames) ; Load in some bitmaps. BLoad 1 T14bk01.bmp BLoad 3 T14bk02.bmp ; ; All the bitmaps go in the same place. ; BMove 1 205 67 BMove 3 205 67 ; ; bitmap number 2 will depend on your adjusted gross income. ; ; ; Find out user's AGI LD 1 0 UProfile 1 ann_adj_inc ; ; ; load the movies HOst 1 1 420 HOst 2 2 420 ; If AGI is less than $30,000 or more than $500,000 then jump to Label 7 JLt 7 1 30000 JGt 7 1 500000 ; ; Load and play Marshall's intro BPlay 1 1 MPart 2 1 678 ; ; Jane gives RIA data based on user's adjusted gross income ; The data is in bitmap 2, based on jumps above. ; AGI 30,000 to 40,000 JGt 2 1 40000 BLoad 2 T14bk02a.bmp JUmp 8 ; ; AGI 40,000 to 50,000 LAbel 2 JGt 3 1 50000 BLoad 2 T14bk02b.bmp JUmp 8 ; ; AGI 50,000 to 75,000 LAbel 3 JGt 4 1 75000 BLoad 2 T14bk02c.bmp JUmp 8 ; ; AGI 75,000 to 100,000 LAbel 4 JGt 5 1 100000 BLoad 2 T14bk02d.bmp JUmp 8 ; ; AGI 100,000 to 200,000 LAbel 5 JGt 6 1 200000 BLoad 2 T14bk02e.bmp JUmp 8 ; ; AGI 200,000 to 500,000 LAbel 6 BLoad 2 T14bk02f.bmp JUmp 8 ; LAbel 7 ; Since AGI is out of range, we play Marshall's segment B, which is a ; combination of A and D. We then skip to label 9 rather than play D again BPlay 1 1 MPart 2 2434 3459 JUmp 9 ; LAbel 8 ; BMove 2 205 67 BPlay 2 1 MPart 1 1 1202 ; ; Marshall segment D: "Generally, high-income people..." BPlay 1 1 MPart 2 738 1108 ; LAbel 9 ; Jane talks about deductions IRS likes to scrutinize BPlay 3 1 MPart 1 1276 1679 ; ; Marhsall finishes with comforting words about audits MPart 2 1180 2380 ; EXit