How to do a dashed line in actionscript ?

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

  1. #1

    Default How to do a dashed line in actionscript ?

    Hello,

    Every thing is in the subject.

    Thanks.
    Cédric.

    Cedric Guest

  2. Similar Questions and Discussions

    1. Could i show the dashed-line of Tree Control in Flex 1.5
      For example, there is dashed-lines between folder and folder in the Windows Explorer.I wonder whether i can set a property to let the tree control...
    2. dashed line, with perspective
      I think I once saw the answer to this question a long time ago; now is when I need it (of course). I want a dashed line (on a highway) to go into...
    3. Expanding dashed line
      I have a dashed line that I'd like to bring into Photoshop as a shape layer. Copying and pasting brings the line in solid, as does "expand" in...
    4. Help with a dashed stroke
      How do I retain dashes when expanding a dashed stroke? When I choose Expand Appearances, Expand Stroke and Fill, or Outline Stroke, the dashed...
    5. drawing line with actionscript
      Can someone tell me please how I can draw a line with actionscript that grows longer but not wider. For example from coordinate 0,0 to 200,400.
  3. #2

    Default Re: How to do a dashed line in actionscript ?

    > Every thing is in the subject. Thanks. Cédric.

    First read this article and download the ActionScript files here:
    [url]http://www.macromedia.com/devnet/mx/flash/articles/adv_draw_methods.html[/url]

    Then you can do something like this:

    #include "dashTo.as"
    _root.lineStyle(2, 0x6688AA);
    _root.dashTo(0, 0, 100, 100, 4, 8);

    Best wishes, Martin ;) * [url]http://birdy1976.com/[/url] * ICQ# 237743398
    Martin Voegeli, vom 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