gagetman wrote:
please can someone go here and upload the whole thing (you'll be able to download it later)
what exactly is that?
Offline
rookwood101 wrote:
Download the newest scratch_new.swf from the link previously mentioned.
roijac wrote:
paint editor!!!
yeah!!! D
anybody knows how to delete objects?Backspace.
And can someone tell the scratch team that comic sans is NOT trendy:
http://i.imgur.com/RpANB.png
I guess i could. They should allow a dropdown of fonts on the computer.
Offline
rookwood101 wrote:
Download the newest scratch_new.swf from the link previously mentioned.
roijac wrote:
paint editor!!!
yeah!!! D
anybody knows how to delete objects?Backspace.
And can someone tell the scratch team that comic sans is NOT trendy:
http://i.imgur.com/RpANB.png
Are you doing something I'm not? I'm not receiving updates to my editor D:
Offline
slinger wrote:
rookwood101 wrote:
Download the newest scratch_new.swf from the link previously mentioned.
roijac wrote:
paint editor!!!
yeah!!! D
anybody knows how to delete objects?Backspace.
And can someone tell the scratch team that comic sans is NOT trendy:
http://i.imgur.com/RpANB.pngAre you doing something I'm not? I'm not receiving updates to my editor D:
Did you download it again?
Offline
Awesome. I've been using it online, with the editor asset on, but how do you get the editor when it's downloaded?
Offline
rookwood101 wrote:
Download the newest scratch_new.swf from the link previously mentioned
Do you mean that you were able to use the new paint editor? I downloaded the new scratch_new.swf, but I see the paint editor still greyed out.
Offline
s_federici wrote:
rookwood101 wrote:
Download the newest scratch_new.swf from the link previously mentioned
Do you mean that you were able to use the new paint editor? I downloaded the new scratch_new.swf, but I see the paint editor still greyed out.
Try clearing your cache.
Offline
Oh, I dealt with the paint editor issue by modifying the JavaScript to mimic a login...
Offline
bobbybee wrote:
Oh, I dealt with the paint editor issue by modifying the JavaScript to mimic a login...
How would one do that?
Offline
veggieman001 wrote:
bobbybee wrote:
Oh, I dealt with the paint editor issue by modifying the JavaScript to mimic a login...
How would one do that?
The method:
ASsetLoginUser('username', false);
Offline
I wish I had seen this topic earlier. I've been trying to run it ever since it went down.
Offline
How do I edit projects? All I'm getting is an empty viewer. Aurora is my browser, on Windows 7 with EasyPHP.
Offline
samtwheels wrote:
How do I edit projects? All I'm getting is an empty viewer. Aurora is my browser, on Windows 7 with EasyPHP.
Works fine for me with QuickPHP, even run in WINE on Ubuntu.
Offline
bobbybee wrote:
veggieman001 wrote:
bobbybee wrote:
Oh, I dealt with the paint editor issue by modifying the JavaScript to mimic a login...
How would one do that?
The method:
Code:
ASsetLoginUser('username', false);
Sweet, thanks a ton!
Offline
ftf841 wrote:
ftf841 wrote:
ftf841 wrote:
what is the code for the project editor?
Uh... it's in the thread if you read it.
Offline
If someone is having problems, then you need to change this bit of code:
setTimeout(function () {
document.getElementById('editor').ASsetEditMode(true);
}, 1000);
setTimeout(function () {
document.getElementById('editor').ASsetEditMode(true);
}, 5000);
It will give you an error because the flash file takes longer to load than 1 second (depending on what host you use. I use dropbox). So, basically, the javascript executes when there is nothing it can work with, giving it an error!
Offline
Servine wrote:
If someone is having problems, then you need to change this bit of code:
setTimeout(function () {
document.getElementById('editor').ASsetEditMode(true);
}, 1000);setTimeout(function () {
document.getElementById('editor').ASsetEditMode(true);
}, 5000);It will give you an error because the flash file takes longer to load than 1 second (depending on what host you use. I use dropbox). So, basically, the javascript executes when there is nothing it can work with, giving it an error!
or you could put
<p onclick="document.getElementById('editor').ASsetEditMode(true);">open editor </p> <p onclick="document.getElementById('editor').ASsetEditMode(false);">close editor </p>
in body
Offline
TRocket wrote:
Servine wrote:
If someone is having problems, then you need to change this bit of code:
setTimeout(function () {
document.getElementById('editor').ASsetEditMode(true);
}, 1000);setTimeout(function () {
document.getElementById('editor').ASsetEditMode(true);
}, 5000);It will give you an error because the flash file takes longer to load than 1 second (depending on what host you use. I use dropbox). So, basically, the javascript executes when there is nothing it can work with, giving it an error!
or you could put
Code:
<p onclick="document.getElementById('editor').ASsetEditMode(true);">open editor </p> <p onclick="document.getElementById('editor').ASsetEditMode(false);">close editor </p>in body
Well, yes, but people generally people want it fullscreen, text would make it a bit smaller.
Offline