Skip to main content
Participant
January 12, 2007
Answered

Video screen size bigger than the default

  • January 12, 2007
  • 2 replies
  • 306 views
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
    This topic has been closed for replies.
    Correct answer
    mycam = Camera.get();
    mycam.setMode(320, 240, 15); // 320x240 video at 15fps

    2 replies

    Participant
    January 12, 2007
    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;
    Correct answer
    January 12, 2007
    mycam = Camera.get();
    mycam.setMode(320, 240, 15); // 320x240 video at 15fps
    January 12, 2007