home *** CD-ROM | disk | FTP | other *** search
- on RVXDEFAULT
- global RVXNameDrpList, RVXNameSelList
- repeat with t = 1 to count(RVXNameDrpList)
- set the editable of member getAt(RVXNameDrpList, t) to 0
- set the textSize of member getAt(RVXNameDrpList, t) to 12
- set the boxType of member getAt(RVXNameDrpList, t) to #adjust
- if the machineType > 200 then
- set the textFont of member getAt(RVXNameDrpList, t) to "Arial"
- else
- set the textFont of member getAt(RVXNameDrpList, t) to "Geneva"
- end if
- set the textStyle of member getAt(RVXNameDrpList, t) to "bold"
- set thiscastnum to the memberNum of member getAt(RVXNameDrpList, t)
- set the editable of member (thiscastnum + 1) to 0
- set the boxType of member (thiscastnum + 1) to #fixed
- end repeat
- repeat with t = 1 to count(RVXNameSelList)
- set the editable of member getAt(RVXNameSelList, t) to 0
- set the textSize of member getAt(RVXNameSelList, t) to 12
- set the boxType of member getAt(RVXNameSelList, t) to #adjust
- if the machineType > 200 then
- set the textFont of member getAt(RVXNameSelList, t) to "Arial"
- else
- set the textFont of member getAt(RVXNameSelList, t) to "Geneva"
- end if
- set the textStyle of member getAt(RVXNameSelList, t) to "bold"
- put "s" into field getAt(RVXNameSelList, t)
- end repeat
- put EMPTY into field "SelectedFour"
- put EMPTY into field "SelectedEight"
- put "PRODUCT NAME" into field "SelectedOne"
- updateStage()
- set the textStyle of member "SelectedOne" to "bold"
- set the textSize of member "SelectedOne" to 12
- if the machineType > 200 then
- set the textFont of member "SelectedOne" to "Arial"
- else
- set the textFont of member "SelectedOne" to "Geneva"
- end if
- put "contains" into field "SelectedTwo"
- updateStage()
- set the textStyle of member "SelectedTwo" to "bold"
- set the textSize of member "SelectedTwo" to 12
- if the machineType > 200 then
- set the textFont of member "SelectedTwo" to "Arial"
- else
- set the textFont of member "SelectedTwo" to "Geneva"
- end if
- set the editable of member "SelectedThree" to 1
- put EMPTY into field "SelectedThree"
- set the member of sprite 21 to member "SelectedOne"
- set the member of sprite 22 to member "SelectedTwo"
- set the member of sprite 23 to member "SelectedThree"
- set the loc of sprite 23 to point(350, 121)
- set the ink of sprite 23 to 36
- set the loc of sprite 21 to point(96, 122)
- set the ink of sprite 21 to 36
- set the loc of sprite 22 to point(252, 121)
- set the ink of sprite 22 to 36
- cursor(-1)
- updateStage()
- end
-