Delete button to delete 3D model

Ask a Question related to Macromedia Director 3D, Design and Development.

  1. #1

    Default Delete button to delete 3D model

    Hi all
    I'm new to director and I'm doing a 3D room planner project. For this
    application user can design their room virtually with 3D models of the
    furnitures. User will select the furniture and place in in the room(the 3d
    space). I need to create a delete button so that user can delete furniture (w3d
    models) from the room.

    I found these codes, but im not sure how to apply them.
    member(whichCastmember).deleteModel(whichModel)
    member(whichCastmember).deleteModel(index)


    Your help is greatly appreciated, Thanks! :D

    mindylim Guest

  2. Similar Questions and Discussions

    1. Delete form - Post data to a table and delete uponsubmit.
      I have a delete form that I'd like to post the data to a table (delete_pcn) and delete upon submit, so that all deletions may be kept track of in...
    2. delete button problems in datagrid
      i have a datagrid with a delete button which for some reason quit working, i'm thinking its a problem with the database but here is the code:...
    3. pick n delete 3D model
      I'm doing a 3D room planner project. For this application user can design their room virtually with 3D models of the furnitures. User will select...
    4. Delete key doesn't delete when datagrid is bound to a disconnected table
      (Re: WinForm Datagrid) I manually built a table instead of filling it from a datasource. I bound my datagrid to the table. The datagrid works great....
    5. How do I delete a combo box and a radio button?
      My application involves creating text fields, combo boxes and radio buttons dynamically. There will be instances where I need to delete certain...
  3. #2

    Default Re: Delete button to delete 3D model

    global gModelName -- gModelName is a global variable that could hold the name
    of the previously selected model in the 3D room (use modelsUnderRay() for this)
    on mouseUp me member('3dscene').deleteModel(gModelName) end

    Newt99 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139