We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.

how to read out chosen option from menu?

Home Forums Puzzles how to read out chosen option from menu?

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #65992
    vision
    Customer

    I use the engraving selection menu from the jewelry app exmple.
    I want to customize the menu to use it to change the color of my object.

    But how to get the information which color has been chosen from the drop-down menu?
    So I can use it as input for a assign material puzzle.
    In other words, how to read out the menu chosen option?

    Something like html puzzle “get prop option_value from element id: engrave_text”.
    But then it has to get the option value. I don’t know how to set this up in puzzles (or html)

    • This topic was modified 9 months, 1 week ago by vision.
    • This topic was modified 9 months, 1 week ago by vision.
    Attachments:
    You must be logged in to view attached files.
    #65997
    kdv
    Participant

    <option value="#00ff00">Green color</option>

    Puzzles and JS. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of meaning at all.

    #65998
    vision
    Customer

    Hi kvd, good option!
    However I meant more in the manner of puzzles. I have not only colors to assign but also textures. So I like to keep the html to a minimum and build the flexibility in puzzles.

    I think I figured out how to read the outcome of the select menu. So I now am building a structure for assigning material for the choosen color. A lot of if statements..now only with 2 colors for test but there will be a lot more added when it is working.
    What I have right now it this:

    Attachments:
    You must be logged in to view attached files.
    #66002
    kdv
    Participant

    assigning material every frame? :wacko:

    There is a cool puzzle that can add event listeners for different actions
    https://www.soft8soft.com/docs/manual/en/puzzles/HTML.html#event

    Puzzles and JS. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of meaning at all.

    #66003
    vision
    Customer

    You’re right, every frame doesn’t make sense. But it was not working, so I just was trying.

    Now added the on event puzzle, not working at the moment, but this is the better structure.

    Attachments:
    You must be logged in to view attached files.
    #66005
    kdv
    Participant

    In your case options may be represented this way

    <option value="Material.color1">Color1</option>
    <option value="Material.color2">Color2</option>

    Puzzles and JS. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of meaning at all.

    #66008
    vision
    Customer

    This is exactly what I was looking for, also the efficient way. I keep thinking, there must be a more direct manner of assigning the material with the menu value. then al lot of if statements and variable.
    Thank you very much for this!

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.