Sperry wrote:
SeptimusHeap wrote:
How would I add:
('save stage area to sprite' #- #grabFromScreen)In the coding box put:
Code:
grabScreen grabFromScreen.I think this should work.
So, is this what it should look like?
blah -
grabScreen
grabFromScreen.
?
Nothing happens. Nothing much happens when I make any block...
Glitch?
Offline
SeptimusHeap wrote:
Sperry wrote:
SeptimusHeap wrote:
How would I add:
('save stage area to sprite' #- #grabFromScreen)In the coding box put:
Code:
grabScreen grabFromScreen.I think this should work.
So, is this what it should look like?
blah -
grabScreen
grabFromScreen.
?
Nothing happens. Nothing much happens when I make any block...
Glitch?
Help?
Offline
Hmm...
I took deleted the old image and popped the new one in, is that OK?
Offline
I've just accidentally got us a lot of publicity. Skystar did a request of a Panther for our site, and her projects always get A LOT of hits, so our view ratings for the site are gonna shoot up, and we're gonna get a lot of people interested
Offline
sparks wrote:
I've just accidentally got us a lot of publicity. Skystar did a request of a Panther for our site, and her projects always get A LOT of hits, so our view ratings for the site are gonna shoot up, and we're gonna get a lot of people interested
![]()
Nice ... XD
Where is nXIII? This is the least active I have ever known him to be.
Offline
*goes and crys in cornner again*
WHY WON'T YOU WORK PASSWORD!! WHYYYYYYYYYY!!!!!!!!!!!
Offline
oh poor you mp. er, he's away, gets back this evening. thing is, evening for him is early morning for me, and I have a physics assesment tomorrow so I won't see what's he has to say till the afternoon :'( hols are over.
Offline
sparks wrote:
oh poor you mp. er, he's away, gets back this evening. thing is, evening for him is early morning for me, and I have a physics assesment tomorrow so I won't see what's he has to say till the afternoon :'( hols are over.
Same here, but iv got a physcis test and a business management test.
Offline
I think something's messed up with my version of 1.2... None of my created blocks work...
Offline
SeptimusHeap wrote:
I think something's messed up with my version of 1.2... None of my created blocks work...
NxIII did that that it wasn't finished and was only Experimental.
Offline
SeptimusHeap wrote:
What are the ()s and selfs for?
self is the receiver of whatever message you are sending (the function). Just putting the message wouldn't work, it would say 'message not understood'. The ()'s are to help with layout, because if you put
self pointToX: self getVar: 'blah' y: 0.
it wouldn't work because 'pointToX:getVar:y:' isn't a message, whereas with
self pointToX: (self getVar: 'blah') y: 0.
the messages are 'pointToX:y:' and 'getVar:'.
@Sep:
You aren't defining a new message (well, you're defining doIt and doitIn:, but let's not get into evaluations and contexts), so don't put the message name at the top. For example, your 'grab patch from screen' block would look like this:
___________________________________
grab from screen | - |
-----------------------------------------------------
grabFromScreen.
^ self (optional, automatically included)
____________________________________
@someone
I don't think it's necessary to add the variable/list exists blocks, please give me a couple scenarios in which this cannot be accomplished with a few other blocks.
Just so people know, I am removing the dev menus and the shift-click file menus from the final public version and making the source available elsewhere. This helps prevent people just hacking and not giving proper credit to the Panther developers in their derivative works.
Last edited by nXIII (2010-04-18 18:48:29)
Offline
nXIII wrote:
@Sep:
You aren't defining a new message (well, you're defining doIt and doitIn:, but let's not get into evaluations and contexts), so don't put the message name at the top. For example, your 'grab patch from screen' block would look like this:
___________________________________
grab from screen | - |
-----------------------------------------------------
grabFromScreen.
^ self (optional, automatically included)
____________________________________
Don't you need 'self' in front of grabFromScreen?
nXIII wrote:
@someone
I don't think it's necessary to add the variable/list exists blocks, please give me a couple scenarios in which this cannot be accomplished with a few other blocks.
Just so people know, I am removing the dev menus and the shift-click file menus from the final public version and making the source available elsewhere. This helps prevent people just hacking and not giving proper credit to the Panther developers in their derivative works.
You could do that but it won't stop people from looking at the source. All they need to do is make a block that turns full screen off...
Offline
You should ask this guy to be on your team for panther: http://scratch.mit.edu/forums/viewtopic.php?id=34152
He looks like he knows what he's doing.
Offline
samurai768 wrote:
You should ask this guy to be on your team for panther: http://scratch.mit.edu/forums/viewtopic.php?id=34152
He looks like he knows what he's doing.
Nah, those are all either no-code blocks, 1-line blocks or other people's hacks.
Offline