This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#4601 2013-04-01 18:54:30

transparent
Scratcher
Registered: 2011-04-19
Posts: 1000+

Re: ITopic: New Members...introduce yourself here!

Hey, dtrevhypemusic


yes, yes i do.

Offline

 

#4602 2013-04-03 17:40:15

qwerts9000
Scratcher
Registered: 2011-02-21
Posts: 100+

Re: ITopic: New Members...introduce yourself here!

Welcome!

Offline

 

#4603 2013-04-03 23:25:57

mlcg123456789
Scratcher
Registered: 2013-02-10
Posts: 6

Re: ITopic: New Members...introduce yourself here!

Hi, I just started using Scratch about 2 months ago, and so far it has been going really well. Scratch is awesome!

Offline

 

#4604 2013-04-04 07:04:19

bookworm7214
New Scratcher
Registered: 2013-04-04
Posts: 23

Re: ITopic: New Members...introduce yourself here!

Hi!
At the moment i'm building a platform game, but having trouble @ switching backgrounds when u have completed level. can anyone help?
love the idea of scratch online ps check out that mario game it's SUPER cool!

zombie drummer<eat flesh!> smile

Offline

 

#4605 2013-04-04 15:14:46

XndrK
New Scratcher
Registered: 2013-04-04
Posts: 2

Re: ITopic: New Members...introduce yourself here!

Hola! Hi! How's it going?

Thanks for letting me in. I am far from advanced, obviously. I don't really know where to start.

Offline

 

#4606 2013-04-04 19:06:32

rflivinloud
New Scratcher
Registered: 2013-03-01
Posts: 3

Re: ITopic: New Members...introduce yourself here!

Hi I'm new just started using Scratch recently.  I have one project uploaded its a keyboarding type game for lower grade levels would love for others to check it out and give tips on improvements on my code.  thanks in advance

Offline

 

#4607 2013-04-04 19:18:55

superstel
New Scratcher
Registered: 2013-04-02
Posts: 1

Re: ITopic: New Members...introduce yourself here!

hiya!!!!!!! im new!!!!!!!!!!!!!!1

Offline

 

#4608 2013-04-05 04:55:09

topazdragonlord
Scratcher
Registered: 2013-02-22
Posts: 500+

Re: ITopic: New Members...introduce yourself here!

superstel wrote:

hiya!!!!!!! im new!!!!!!!!!!!!!!1

Hi  smile , Welcome to scratch I'm sure you'll have a great time here  smile


http://i45.tinypic.com/idumbk.png

Offline

 

#4609 2013-04-05 06:08:49

Ferrok
New Scratcher
Registered: 2013-04-04
Posts: 1

Re: ITopic: New Members...introduce yourself here!

Hello! I'm Ferrok (Character in Beast Quest), and I joined 3 days ago. I have 7 projects on scratch, and that number is going to rise!  smile

Offline

 

#4610 2013-04-05 06:12:36

topazdragonlord
Scratcher
Registered: 2013-02-22
Posts: 500+

Re: ITopic: New Members...introduce yourself here!

Ferrok wrote:

Hello! I'm Ferrok (Character in Beast Quest), and I joined 3 days ago. I have 7 projects on scratch, and that number is going to rise!  smile

Welcome to scratch, Ferrok  smile


http://i45.tinypic.com/idumbk.png

Offline

 

#4611 2013-04-05 07:50:04

bookworm7214
New Scratcher
Registered: 2013-04-04
Posts: 23

Re: ITopic: New Members...introduce yourself here!

hey guys, have u seen my new project?in this forum 4 writers editors artists who r new and want fun laughter and a li'l book on Scratch. CHECK IT OUT!

Join if u want:D smile  wink

Offline

 

#4612 2013-04-05 08:23:01

Emerald15
New Scratcher
Registered: 2013-04-05
Posts: 3

Re: ITopic: New Members...introduce yourself here!

Hello! I just joined Scratch a few days ago. I haven't uploaded anything yet, but I'm working on two projects  smile

Offline

 

#4613 2013-04-05 08:33:44

topazdragonlord
Scratcher
Registered: 2013-02-22
Posts: 500+

Re: ITopic: New Members...introduce yourself here!

Emerald15 wrote:

Hello! I just joined Scratch a few days ago. I haven't uploaded anything yet, but I'm working on two projects  smile

Hi, Welcome to scratch  smile  - good-luck on your projects

Last edited by topazdragonlord (2013-04-05 08:33:56)


http://i45.tinypic.com/idumbk.png

Offline

 

#4614 2013-04-05 09:12:55

topazdragonlord
Scratcher
Registered: 2013-02-22
Posts: 500+

Re: ITopic: New Members...introduce yourself here!

bookworm7214 wrote:

Hi!
At the moment i'm building a platform game, but having trouble @ switching backgrounds when u have completed level. can anyone help?
love the idea of scratch online ps check out that mario game it's SUPER cool!

zombie drummer<eat flesh!> smile

This should be in help with scripts but I'll help anyway  smile
try the following:


once that level has been beaten you could use a variable but it's simpler to use broadcasts but I'll do both  smile

broadcast:

when gf clicked//replace this with the level complete scripts
broadcast [next level v]
variables:
when gf clicked//replace this with the level complete scripts
set [level v] to [2]//if they had just beaten level 1 set the level to the next level
ignore this block//number - i.e. if they had just beaten level 1 then you would
ignore this block//set 'level' to 2
back to broadcast:
when I receive [next level v]
next background//you can replace this with 'switch to background...'
back to variables:
when gf clicked
forever
  if <(level) = [1]>
    switch to background [1]
    end
  if <(level) = [2]>
    switch to background [2]
    end
  if <(level) = [3]>
    switch to background [3]
    end
  if <(level) = [4]>
    switch to background [4]
    end
etc...If you have a title screen you can just modify that so it works  smile
(and btw the ignore this block's are just there so I can do the notes  smile  )
Hope this helps,

topazdragonlord

Last edited by topazdragonlord (2013-04-05 09:16:22)


http://i45.tinypic.com/idumbk.png

Offline

 

#4615 2013-04-05 18:11:25

jimmystar889
Scratcher
Registered: 2013-01-19
Posts: 1

Re: ITopic: New Members...introduce yourself here!

hi people i am kinda new to scratch and i want to know how to do gravity and jumping.
Please let me know how thx,
jimmystar889

Offline

 

#4616 2013-04-05 18:50:35

dracae
New Scratcher
Registered: 2013-04-05
Posts: 42

Re: ITopic: New Members...introduce yourself here!

Hello, Scratchers! I'm new to the forums, but I've been using scratch for a long time-ish.

Feel free to check out my project! Thanks!

~Dracae

Offline

 

#4617 2013-04-06 01:55:39

Catnipsum
New Scratcher
Registered: 2013-04-06
Posts: 1

Re: ITopic: New Members...introduce yourself here!

Hello  smile  I'm new here, just thought I'd pop in and say hello before I went off to learn to play with Scratch. I'm a graphic designer, I like to dabble. My pet project is [link removed by moderator - please no advertising] which is a filler text generator for cats if you happen to need any for your projects anytime. Meow.

Last edited by Paddle2See (2013-04-06 05:30:22)

Offline

 

#4618 2013-04-06 01:57:34

Waffle27
Scratcher
Registered: 2012-03-21
Posts: 1000+

Re: ITopic: New Members...introduce yourself here!

Welcome, Catnipsum. Good luck on Scratch! Its good that your so excited about it already  smile

Offline

 

#4619 2013-04-06 09:43:56

12CTyHa6114
New Scratcher
Registered: 2013-04-06
Posts: 1

Re: ITopic: New Members...introduce yourself here!

HI!!!!!have a good time scratch is AWESOME!WOOOOOOOOOOOOOOOOOOOOOOOO

Offline

 

#4620 2013-04-06 13:01:46

sadiaprincess98
New Scratcher
Registered: 2013-04-06
Posts: 2

Re: ITopic: New Members...introduce yourself here!

I am aqibaslam123 big sister

Offline

 

#4621 2013-04-06 13:10:45

sadiaprincess98
New Scratcher
Registered: 2013-04-06
Posts: 2

Re: ITopic: New Members...introduce yourself here!

please everyone check out my games one game I am going to share scratch's girlfriend pleasesssssssssssseeeeeeeeeeeesssssseeeeeeeeeeee!

Offline

 

#4622 2013-04-06 19:45:56

Malik88
New Scratcher
Registered: 2013-04-06
Posts: 1

Re: ITopic: New Members...introduce yourself here!

Hello everyone
My name is Ali Malik, and I am a Cardiology research fellow at Cleveland Clinic.
A teacher, introduced me to scratch. I plan to make programs on scratch explaining basic concepts of medicine, especially cardiology.....

Offline

 

#4623 2013-04-06 20:21:25

qwerts9000
Scratcher
Registered: 2011-02-21
Posts: 100+

Re: ITopic: New Members...introduce yourself here!

Malik88 wrote:

Hello everyone
My name is Ali Malik, and I am a Cardiology research fellow at Cleveland Clinic.
A teacher, introduced me to scratch. I plan to make programs on scratch explaining basic concepts of medicine, especially cardiology.....

Welcome to scratch! Hope your enjoy!

Offline

 

#4624 2013-04-07 18:23:09

Grimalkin
New Scratcher
Registered: 2012-03-03
Posts: 1

Re: ITopic: New Members...introduce yourself here!

Hi everybody,

I'm Allie. I have a background in anatomy and physiology and I'm hoping to use Scratch to construct interactive maps of the human body.

By following some excellent tutorials on the use of ScrollX, I have created a detailed XY scrolling background (5 'terrains' across by 7 'terrains' down. It works beautifully.

I am now trying to position sprites at various points on the map. When clicked, these 'location sprites' show a photograph and/or text.

I understand that I need to 'fix' the 'location sprites' in position so that they stay in place when the player scrolls across the map. This is an example of the code I am using to make a sprite stay in one position:

go to x: ((X) - ((1 * 4go to x: ((X) - ((1 * 480) - 100)) y: ((Y) + ((0 * 360) - 140))80) - 100)) y: ((Y) + ((0 * 360) - 140))

This works (sort of!). The sprite appears on the appropriate terrain and I am able to run the next script to show a photo. However, as the player scrolls across the map, the 'location' sprite is just visible on the edge of the screen.

I suspect there is a better way to code a stationary sprite on a scrolling platform. Can anyone help?

Please be aware that I am a complete novice. I can follow instructions, but I am also keen to understand what's going on.

Many thanks.

Offline

 

#4625 2013-04-08 05:58:29

xamthonenature
New Scratcher
Registered: 2013-04-08
Posts: 3

Re: ITopic: New Members...introduce yourself here!

i'm new

Offline

 

Board footer