Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default hitTest with true

    I'd like to create a hitTest betweeen two irregularly shaped mc's - To use the actusl pixels rasther than a bounding bov I need to put True as a parameter. To use true I need to put x and y parameters in . There are two things I don't understand.
    1) what the x and y parmeters should be ...
    2) How do I make sure that actual pixels are used for both movie clips involved
    onClipEvent (enterFrame){
    if(hitTest(_root.mc_name(x,y,true)){
    trace("hit");
    }
    }
    thanks for any help


    bhg webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. #26232 [Opn->Bgs]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: jay@php.net Reported By: me at my dot house -Status: Open +Status: Bogus Bug...
    2. #26232 [Bgs->Opn]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: helly@php.net Reported By: me at my dot house -Status: Bogus +Status: Open...
    3. #26232 [Ver->Bgs]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: iliaa@php.net Reported By: me at my dot house -Status: Verified +Status: Bogus...
    4. #26232 [Ver]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: jay@php.net Reported By: me at my dot house Status: Verified Bug Type: Arrays...
    5. #26232 [Opn->Ver]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: helly@php.net Reported By: me at my dot house -Status: Open +Status: Verified...
  3. #2

    Default Re: hitTest with true

    this is an old problem. Hittest can be used to 1) detect MC to MC collision, using bounding box for both or 2) detect point(x,y) to MC collision, using bounding box OR pixels.

    In other words, you can only use bounding box with MC to MC hittests.

    Too bad that's how it works, but it is.

    -beally-
    -------------------------
    "Senior Member" - experienced at messing things up
    CurrentProject - feedback appreciated
    abeall webforumsuser@macromedia.com 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