Jump to content
Fórum Script Brasil
  • 0

True, False


gbaims

Question

ae galera, eu não to conseguindo fazer o seguinte:

no frame 5 eu boto:

home = true

stop();

e tem um botão com o seguinte:

on (release) {

if (home=true) {

gotoAndPlay(10);

e no frame 11 é o seguinte:

home = false

stop();

mas ae toda hora q eu clico no botao ele faz gotoandplay(10), mesmo tendo passado pelo frame 11, q deixa home = false, o que eu fiz de errado?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

pow, mas tem que ser gotoand play

na minha cabeça era pra ser o seguinte, no frame 5 ele diz que home=true e pára.

tem um botão que quando você clica e home=true, então ele vai pro frame 10.

mas como eu faço pra HOME não ser mais TRUE quando chegar no frame 10??

Link to comment
Share on other sites

  • 0

é por isso mesmo..

1 = significa atribuição, a variavel recebel esse valor

2 == significa comparação, verifica se esse é o valor da variavel

e como você esta usando true e false que são valores do tipo Booleam (o mesmo retornado por comparações) por isso você pode usar apenas

on (release) {

if (home) gotoAndPlay(10);

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...