To make a code.org applab project fullscreen, do I have to make it entirely out of HTML?

    no but it definitely helps with the layout as not all screens or browsers will have the same dimensions

    code

    example

      Letti42 It does go fullscreen but how do I make it so that it goes off of the "screen" for example, if I set the y value to 500 it just disappears off of the screen

        Letti42 Like this?

        var url = getAttribute("divApplab", "baseURI");
        if(!url.includes("edit") && !url.includes("view"))setStyle('divApplab', "position: fixed; top: 0; left:0; width: 100vw; height: 100vh; z-index: 1000000;");
        button('hi', "lol");
        setPosition("hi", 500, 500, 100, 40);
        hideElement("hi");

        it doesn't seem to be working for me.

        I'm confused, what do you want it to do? It's hiding the element so it doesn't show

          you have to add another setStyle to the screen you use, just copy the one for divApplab and paste it in the same if statement but replace divApplab with screen1.

            Chat