# Problem with window size

**URL:** https://discourse.processing.org/t/problem-with-window-size/13664
**Category:** Coding Questions
**Created:** [August 28, 2019, 7:09am UTC](https://discourse.processing.org/t/problem-with-window-size/13664 "2019-08-28T07:09:44Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![newt](https://avatars.discourse-cdn.com/v4/letter/n/c68b51/32.png) [@newt](https://discourse.processing.org/u/newt)
#### Post date: [August 28, 2019, 7:09am UTC](https://discourse.processing.org/t/problem-with-window-size/13664/1 "2019-08-28T07:09:44Z")

</div>

So I’m new in processing but I have a problem  
Every time I start a sketch the size il almost full screen even if I use size (500,300) or (50,30)  
For clarify I write

```auto
Void setup(){
Size(500,300);
}
Void draw() {
Background (190);
} 

```

But the window is always big as the screen, am I writing something wrong?

---

<div class="post-metadata">

### Author: ![kll](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/kll/32/964_2.png) [@kll](https://discourse.processing.org/u/kll)
#### Post date: [August 28, 2019, 7:29am UTC](https://discourse.processing.org/t/problem-with-window-size/13664/2 "2019-08-28T07:29:02Z")

</div>

your posted code give me a error here ( Win 10 / Processing 3.5.3 ), and not a fullscreen Canvas window,

```auto
void setup() {
  size(500, 300);
}
void draw() {
  background (190);
  translate( width/2,height/2);
  circle(0,0,50);
}

```

this version runs, please note the changed Capital letters

but basically, the very first start using the Processing IDE 3.5.3  
should actually not be typing code,  
go  
/ File / Examples / and play
