Giacomo Alessandroni
Giacomo Alessandroni

Reputation: 696

How to use large Stage in Scratch

I have to write a simple program in Scratch.

It is a tourist guide of the city of my Institute (Urbino, Italy). This is the map in Openstreetmap.org:

Urbino, Italy

Scratch has a fixed size for the Stage of 480x360.

QUESTION: There is a way to use a more large Stage without charging thousand of Stages?

Upvotes: 0

Views: 1633

Answers (3)

Aetinx
Aetinx

Reputation: 51

Why not just make it scroll. Have two variables, called "scrollX" and "scrollY". Then show them and make them sliders. (You might need to change their ranges.)

Then use this:

when greenFlag clicked
forever
  go to x:(scrollX) y:(scrollY)
end

Upvotes: 0

Nerp
Nerp

Reputation: 1

Use a vector graphics program like InkScape to trace it and turn it into a vector image before you load it into Scratch. Only then will it retain its size and acuity.

Upvotes: 0

Linus
Linus

Reputation: 96

If I understood you right, you need a larger stage to see more details of the map, right?

You can try to import the bitmap image in the vector editor, and add an ability to zoom into the map (Example for Zoom).

To find out more about using vector images in Scratch, visit this link: https://en.scratch-wiki.info/wiki/Vector_Graphics

Upvotes: 2

Related Questions