3D text made with variables?

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

  1. #1

    Default 3D text made with variables?

    Hi,

    Can 3D text be created based on a variable instead of a member of the cast?

    So, if the user submits some information with a form, their text can be displayed in 3D?

    lduncalfe Guest

  2. Similar Questions and Discussions

    1. **Touch Up Text Tool in Acrobat Pro 7.0.8 -Won't Embed Font after changes made - Why?**
      After touching up some text in my PDF's, using the Pro Touch up tools, the file re-saves, but a notice appears stating "The font could not be...
    2. Does dynamic scrolling text made in flash work withdreamweaver?
      Help? I'm making a website with flash and dreamweaver. I have two pages that have Dynamic scrolling text with external links to the .txt files. ...
    3. how to split continuous text in a variable into two text-variables...?
      Hi, i have a little problem. i need to split a continuous text-variable into two text-variables but in whole words! so i can show these two...
    4. image with text made by php..
      I have a problem to made an image with a text on it. I have made a tile and if i create a line for example php work properly, but if i try to put a...
    5. Help! Has anyone made the Text Scroll bar widget work?
      When I try using my own images for drag, bar, up and down arrows, it repositions them automatically to an ugly unusable position. Any ideas? ...
  3. #2

    Default Re: 3D text made with variables?

    It's not only possible, it's quite easy :-) You still need a text member to
    create 3D text. Assign the variable to the text member:
    member('text_member').text = string(variable) Next create a model resource with
    this code resource = member('3D_member').extrude3D(member('text_member' )). Set
    the right properties of the resource, like tunnelDepth, bevelType, ... and next
    use the resource to create the actual model. model = =
    member('3D_member').newModel('model_name', resource). Don't forget to set
    shaders and textures, otherwise your model may be invisible. cheers, Reznor

    Reznor Guest

  4. #3

    Default Re: 3D text made with variables?

    Thanks Reznor, I ended up achieving this along the lines you specified, by
    creating text members in the cast, and re-assigning them to strings of
    variables like you mentioned. I then extruded the text members into the
    3Dworld.

    lduncalfe Guest

Posting Permissions

  • You may not post new threads
  • You may not 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