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

  1. #1

    Default Printing Cast Text

    I want to be able to print the info in the cast window list view. I tried
    printing CAST TEXT in the print dialog popmenu but nothing happens. Am I
    doing something wrong? I selected ALL so its not as though there is nothing
    to print.

    Jeff Friedman Guest

  2. Similar Questions and Discussions

    1. AI CS Mac Printing Problem (Pinkish cast halfway down the page)
      I apologize if this has been answered before - I've tried every search term I can think of and read topic headers for a while but couldn't find an...
    2. Magenta cast when printing from CS
      I am having trouble printing from Illustrator CS. No matter whether I have color management on or off in AI, on or off in the print dialogue box,...
    3. preload text cast .dcr
      Hi, I have a very stupid problem : I try to change a textfield's content with Lingo. The different texts affected to this textfield are as many...
    4. Printing a external text file or printing a text field cast member...
      use BuddyApi Xtra to use external app. for print a file like MSWord,
    5. Printing a externat text file or printing a text field cast member...
      Try searching the NG archives. Search on 'Print O Matic' (that's the Xtra..the lite version comes with Director). hth, doug "PrEnt"...
  3. #2

    Default Re: Printing Cast Text

    The built in printFrom function is limited to printing an image of the
    stage.

    Use the printomatic xtra for any serious printing, check for a light
    version (once distributed with director)

    The Flash print function is available for flash members.
    JB Guest

  4. #3

    Default Re: Printing Cast Text

    I'm just interested in printing it for myself in the authoring environment



    in article [email]lingoguy-61C9F6.15432528102003@forums.macromedia.com[/email], JB at
    [email]lingoguy@sbcglobal.net[/email] wrote on 10/28/03 6:43 PM:
    > The built in printFrom function is limited to printing an image of the
    > stage.
    >
    > Use the printomatic xtra for any serious printing, check for a light
    > version (once distributed with director)
    >
    > The Flash print function is available for flash members.
    Jeff Friedman Guest

  5. #4

    Default Re: Printing Cast Text

    On 28 Oct 2003, Jeff Friedman <jfriedman@interactiveinventions.com> wrote:
    > I want to be able to print the info in the cast window list view.
    I don't think Director provides a way to do that. It would be handy,
    though. FWIW, many of those items can be obtained through Lingo so you can
    roll your own. I didn't figure out how to get the creation/modified Time
    this morning, but here's what I found in a quick test:

    put member(2,1).creationDate
    -- date( 2003, 10, 28 )
    put member(2,1).modifiedDate
    -- date( 2003, 10, 29 )
    put member(2,1).creationTime
    put member(2,1).type
    -- #script
    put member(2,1).scriptType
    -- #score
    put member(2,1).comments
    -- "This is a comment I wrote."

    I just looked at the Property Inspector in List View while looking for
    these properties.


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd Guest

  6. #5

    Default Re: Printing Cast Text

    > I didn't figure out how to get the creation/modified Time this morning

    More coffee would have reminded you that date objects have a seconds property:-

    put framesToHMS(member(1).modifieddate.seconds, 1,0,0)
    -- " 12:26:07.00 "

    Yes, that does agree with the property inspector.

    Andrew
    Andrew Morton Guest

  7. #6

    Default Re: Printing Cast Text

    Will this work with filename (linked file)? Thanks....


    in article Xns94233A5334C83mblistssanDotrrcom@65.57.83.209, Mark A. Boyd at
    [email]mblist@sanDotrr.com[/email] wrote on 10/29/03 8:46 AM:
    > On 28 Oct 2003, Jeff Friedman <jfriedman@interactiveinventions.com> wrote:
    >
    >> I want to be able to print the info in the cast window list view.
    >
    > I don't think Director provides a way to do that. It would be handy,
    > though. FWIW, many of those items can be obtained through Lingo so you can
    > roll your own. I didn't figure out how to get the creation/modified Time
    > this morning, but here's what I found in a quick test:
    >
    > put member(2,1).creationDate
    > -- date( 2003, 10, 28 )
    > put member(2,1).modifiedDate
    > -- date( 2003, 10, 29 )
    > put member(2,1).creationTime
    > put member(2,1).type
    > -- #script
    > put member(2,1).scriptType
    > -- #score
    > put member(2,1).comments
    > -- "This is a comment I wrote."
    >
    > I just looked at the Property Inspector in List View while looking for
    > these properties.
    >
    Jeff Friedman Guest

  8. #7

    Default Re: Printing Cast Text

    On 29 Oct 2003, "Andrew Morton" <akm@in-press.co.uk.invalid> wrote:
    > More coffee would have reminded you that date objects have a seconds
    > property:-
    I MUST start waiting for the coffee to finish brewing! You're right on both
    counts.


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd Guest

  9. #8

    Default Re: Printing Cast Text

    On 29 Oct 2003, Jeff Friedman <jfriedman@interactiveinventions.com> wrote:
    > Will this work with filename (linked file)? Thanks....
    Yes. Just check the .linked property and if true, get the .fileName
    property.


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd Guest

  10. #9

    Default Re: Printing Cast Text

    Hey! You can even the the .thumbnail property, though it is a <picture> and
    not an <image>. If it has no thumbnail it returns 0.

    put member(1,1).thumbnail
    -- 0
    put member(3,1).thumbnail
    -- <Picture:223744>

    member("TempBitmap").picture = member(3,1).thumbnail

    You could even print the thumbnails if you create some #bitmap members to
    print with PrintOMatic. Of course, you would want your script to exclude
    these members since they're not actually part of the project.


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd 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