Discuss Scratch

Poemon1_REMIX
New Scratcher
100+ posts

Scratch Resources 2.0 (Alpha is out!)

firedrake969_test wrote:

Woah… whiteboards are so high-tech!

So I take it that I'm a tester now.
Ya, IKR! Computers are so 2 days ago XP
QuillzToxic
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

Poemon1_REMIX wrote:

firedrake969_test wrote:

Woah… whiteboards are so high-tech!

So I take it that I'm a tester now.
Ya, IKR! Computers are so 2 days ago XP
But you cant play mc on a whiteboard

yay 7th page
EpicScratchInc
Scratcher
16 posts

Scratch Resources 2.0 (Alpha is out!)

We need a Scratch Minecraft mod.
QuillzToxic
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

EpicScratchInc wrote:

We need a Scratch Minecraft mod.
?? ????????????????????
Poemon1_REMIX
New Scratcher
100+ posts

Scratch Resources 2.0 (Alpha is out!)

QuillzToxic wrote:

EpicScratchInc wrote:

We need a Scratch Minecraft mod.
?? ????????????????????
I think EpicScratchInc is saying we need a MC mod in Scratch. If he/she means like a 3D graphics game, no. It'll be to laggy, otherwise, yes.
MrFlash67
Scratcher
500+ posts

Scratch Resources 2.0 (Alpha is out!)

While loading Sucky Stickfigure it came up with this error:
This page contains the following errors:
error on line 58 at column 22: Failed to parse QName 'max-width:'
Below is a rendering of the page up to the first error.

Also, while logging in Firefox detects that it will redirect endlessly.
jvvg
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

MrFlash67 wrote:

While loading Sucky Stickfigure it came up with this error:
This page contains the following errors:
error on line 58 at column 22: Failed to parse QName 'max-width:'
Below is a rendering of the page up to the first error.

Also, while logging in Firefox detects that it will redirect endlessly.
Those are now on my whiteboard. I will address them ASAP, but that may mean not until Saturday.
MrFlash67
Scratcher
500+ posts

Scratch Resources 2.0 (Alpha is out!)

jvvg wrote:

MrFlash67 wrote:

While loading Sucky Stickfigure it came up with this error:
This page contains the following errors:
error on line 58 at column 22: Failed to parse QName 'max-width:'
Below is a rendering of the page up to the first error.

Also, while logging in Firefox detects that it will redirect endlessly.
Those are now on my whiteboard. I will address them ASAP, but that may mean not until Saturday.
Cool.
Rumanti
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

Can you upload images yet? Because I'm trying to, but my image files would not show up in the “browse” window.
jvvg
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

Rumanti wrote:

Can you upload images yet? Because I'm trying to, but my image files would not show up in the “browse” window.
A few other people have successfully uploaded images.
I'll try to diagnose the problem.
MrFlash67
Scratcher
500+ posts

Scratch Resources 2.0 (Alpha is out!)

jvvg wrote:

Rumanti wrote:

Can you upload images yet? Because I'm trying to, but my image files would not show up in the “browse” window.
A few other people have successfully uploaded images.
I'll try to diagnose the problem.
It seems to default to looking for sounds in the upload menu, even for images.
jvvg
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

MrFlash67 wrote:

jvvg wrote:

Rumanti wrote:

Can you upload images yet? Because I'm trying to, but my image files would not show up in the “browse” window.
A few other people have successfully uploaded images.
I'll try to diagnose the problem.
It seems to default to looking for sounds in the upload menu, even for images.
Oh. That's just caused by a PBKAC (problem between keyboard and chair) on my end. I copy-pasted the code for sounds to make it work with images, and I forgot to change the file type to look for when uploading images.

The fix will be live in a few minutes.

Last edited by jvvg (Sept. 26, 2013 23:18:02)

nathanprocks
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

jvvg wrote:

Oh. That's just caused by a PBKAC (problem between keyboard and chair) on my end. I copy-pasted the code for sounds to make it work with images, and I forgot to change the file type to look for when uploading images.
I always do stuff like that and spend hours trying to figure out why my code isn't working properly.
Rumanti
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

jvvg wrote:

MrFlash67 wrote:

jvvg wrote:

Rumanti wrote:

Can you upload images yet? Because I'm trying to, but my image files would not show up in the “browse” window.
A few other people have successfully uploaded images.
I'll try to diagnose the problem.
It seems to default to looking for sounds in the upload menu, even for images.
Oh. That's just caused by a PBKAC (problem between keyboard and chair) on my end. I copy-pasted the code for sounds to make it work with images, and I forgot to change the file type to look for when uploading images.

The fix will be live in a few minutes.
Oh, I see.
MrFlash67
Scratcher
500+ posts

Scratch Resources 2.0 (Alpha is out!)

I think I see your problem!

Right now your code is this:
<p><img src="/static/resources/4.png" max-width:"400px" max-height="400px" /></p>
You need it to be this:
<p><img src="/static/resources/4.png" max-width="400px" max-height="400px" /></p>

Now I don't know HTML or XML or anything, but Firefox tells me this.
It should just take 1 line changed in a PHP file or whatever.

Last edited by MrFlash67 (Sept. 27, 2013 05:19:02)

jvvg
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

MrFlash67 wrote:

I think I see your problem!

Right now your code is this:
<p><img src="/static/resources/4.png" max-width:"400px" max-height="400px" /></p>
You need it to be this:
<p><img src="/static/resources/4.png" max-width="400px" max-height="400px" /></p>

Now I don't know HTML or XML or anything, but Firefox tells me this.
It should just take 1 line changed in a PHP file or whatever.
Oh, oops. Unfortunately, I won't be able to fix it until tonight.
ssss
Scratcher
500+ posts

Scratch Resources 2.0 (Alpha is out!)

jvvg wrote:

MrFlash67 wrote:

I think I see your problem!

Right now your code is this:
<p><img src="/static/resources/4.png" max-width:"400px" max-height="400px" /></p>
You need it to be this:
<p><img src="/static/resources/4.png" max-width="400px" max-height="400px" /></p>

Now I don't know HTML or XML or anything, but Firefox tells me this.
It should just take 1 line changed in a PHP file or whatever.
Oh, oops. Unfortunately, I won't be able to fix it until tonight.
Hahaha. It is night for me
coolgem923
Scratcher
100+ posts

Scratch Resources 2.0 (Alpha is out!)

May I test Scratch Resources 2.0? I never got a chance to try out the original old site, as I never knew what it even was until Scratch 2.0 came out and it broke.
jvvg
Scratcher
1000+ posts

Scratch Resources 2.0 (Alpha is out!)

coolgem923 wrote:

May I test Scratch Resources 2.0? I never got a chance to try out the original old site, as I never knew what it even was until Scratch 2.0 came out and it broke.
I stopped this project a long time ago. Please don't post on old topics.

Powered by DjangoBB