Video screen size bigger than the default

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

  1. #1

    Default Video screen size bigger than the default

    Hi everybody,
    I?m having dificults in change the size of the video object size, because its
    pixelated. Its the same effect when I zoom the stage.
    The video object default is 160x120.
    I?ve set the mycam._width = 320 and so on...
    but pixelate..
    Any help is valid
    Thanks

    PedroPetygroo Guest

  2. Similar Questions and Discussions

    1. video full screen and screen savers
      Why does full-screen mode not disable the system screen saver in the flash player but does so for AIR? In the documentation it says "For AIR...
    2. display size on-screen differs from actual size.
      With Illustrator 10 installed on Windows XP Pro with a Viewsonic 21" monitor at 16000 X 1200, the problem I am having is: The image I see on-screen,...
    3. Image::Magick scale smaller makes file size bigger
      Hi, The problem is i'm using Image Magick to create thumbnails smaller images out of large ones. 99% of the time this works great but there's 1%...
    4. importing a jpeg - size appears a lot bigger in director
      I have a .jpeg that is 194 KB. When I import it into director, and look at the property inspector, the size reads 7.5 MB. This has happened for a...
    5. Flash Movie play in 43" screen or bigger.. how?
      Hello, I am new to Flash design. Now, I have a client who want to have a flash design to play in a big screen like 43" tv screen and even bigger...
  3. #2

    Default Re: Video screen size bigger than the default

    You need to use the setMode method of the camera class.

    [url]http://livedocs.macromedia.com/fms/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?href=00000546.html[/url]


    JayCharles Guest

  4. #3

    Default Re: Video screen size bigger than the default

    did?t work man..
    here is the a part of the code
    mycam = Camera.get();
    mycam.setMode(mycam.width, mycam.height);
    mycam._width = 320;
    mycam._height = 240;
    PedroPetygroo 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