If Mods want to move this to Web Design & Development, go right ahead. May be out of place here, but that is what I get for posting while going on 24 hours awake.
Not sure if this will make since just seeing code, but I am stumped.
Right now Button B is hittable even if Button A has not been hit.
I want Button B to ONLY be hittable AFTER Button A is pressed. Button B will then act like Button A for another dynamic Text Box.
Essentially I want Button A (frame 10) to reveal Button B (frame 20) to reveal Text C (frame 30).
This code is on Button A
on (release) {
door = "this is a clue"
doorvar = door
}
It reveals text in dynamic TextBox A with Var = doorvar
TextBox A is the Up/Over/Down state of Button B.
Code on Button B
on (release) {
door2 = "this is a clue"
doorvar2 = door2
}
Not sure if this will make since just seeing code, but I am stumped.
Right now Button B is hittable even if Button A has not been hit.
I want Button B to ONLY be hittable AFTER Button A is pressed. Button B will then act like Button A for another dynamic Text Box.
Essentially I want Button A (frame 10) to reveal Button B (frame 20) to reveal Text C (frame 30).
This code is on Button A
on (release) {
door = "this is a clue"
doorvar = door
}
It reveals text in dynamic TextBox A with Var = doorvar
TextBox A is the Up/Over/Down state of Button B.
Code on Button B
on (release) {
door2 = "this is a clue"
doorvar2 = door2
}