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

#601 2009-11-24 11:38:51

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

for gershmer (regarding EmeraldEasy): Nice try, but it's not proper programming, is it? Just playing around with Visual C#. I started from that. But anyway, can you give me the sources, please? I'll see what I can do.

for Everyone: My internet connection is now working, so I'll be there more often.


Converting my Scratch projects to Python!

Offline

 

#602 2009-11-24 11:53:18

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

ok, im asking for a: Python for dummies, a J# for dummies and a Perl for dummies, for christmas, so after them i should be able to help after then. No garruntee though that'll get them.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#603 2009-11-24 12:03:15

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

marky, J# is well outdated since Microsoft removed it from VS. Try C# - it's simpler and easier. And more widely used. I use mostly C#.


Converting my Scratch projects to Python!

Offline

 

#604 2009-11-24 14:11:39

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

filo5 wrote:

for gershmer (regarding EmeraldEasy): Nice try, but it's not proper programming, is it? Just playing around with Visual C#. I started from that. But anyway, can you give me the sources, please? I'll see what I can do.

for Everyone: My internet connection is now working, so I'll be there more often.

It was pretty much playing around in VisualStudio.

I played with the code, a little.

A question for you:

If I make an AboutBox, how do I attach that to the about button in a menu/on a toolbar?


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

#605 2009-11-24 15:33:13

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

When you have a menu item open in the design mode, double-click your About item. The editor will go to the code. Then, when you're there, type in:

Code:

aboutBox1 o = new aboutBox1();   // Create an object we'll gonna start with
o.ShowModal(this);  // Show as a modal box, that if you click on the main window, it will blink and refuse focus.
  // Otherwise, use o.Show(this);

That's the easy way. The other way, which saves much memory, is to put the

Code:

aboutBox1 oAboutBox;

below the class opening bracket '{', and then, below the line which says InitializeComponent();, put this:

Code:

oAboutBox = new aboutBox1 ();

Then, in the event handler (the function with object sender, EventArgs e arguments, usually called aboutMenuStripItem1_Click or something), write:

Code:

oAboutBox.ShowModal(this);  //or oAboutBox.Show(this);

That's because all the objects created on-the-fly must be cleaned after the function quits, which makes garbage collector work a lot (therefore take system resources).

Is that clear?


Converting my Scratch projects to Python!

Offline

 

#606 2009-11-25 11:53:12

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

woot! im in! i found out what was wrong, i was using sftp not ftp. ok, i just need to make my webpage.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#607 2009-11-25 12:29:08

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

Why can't I open any file from your FTP server in my Visual Studio, Gersh?

I was trying to edit the Emerald website, when VS came up with "Unable to get file '[name here' from the Web server". Is it something with your config?


Converting my Scratch projects to Python!

Offline

 

#608 2009-11-25 15:01:27

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

It seems you can't get to it, try downloading the file, edit there, then re-upload it.

Offline

 

#609 2009-11-25 15:19:04

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

ok... what do i need to save the webpages as? if it helps, im using Serif WebPlus X2.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#610 2009-11-25 15:53:59

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

markyparky56 wrote:

ok... what do i need to save the webpages as? if it helps, im using Serif WebPlus X2.

HTML would be best.

.asp works, too.


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

#611 2009-11-25 16:41:22

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

filo5 wrote:

Why can't I open any file from your FTP server in my Visual Studio, Gersh?

I was trying to edit the Emerald website, when VS came up with "Unable to get file '[name here' from the Web server". Is it something with your config?

I can...


Are you using 97.74.144.1 as your address, or are you using gershmer.net?

Also, what exactly are you using, I am:

-Microsoft Visual Web Developer 2008 Express Edition
-(in Visual C#)


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

#612 2009-11-26 11:47:00

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

The IP address. I'll try again...


Converting my Scratch projects to Python!

Offline

 

#613 2009-11-26 11:48:30

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

i cant only save as wpp's (webpluspages) how do i do html? do i have to learn it and type it up in notepad or something? ans whats asp?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#614 2009-11-26 12:26:30

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Try renaming it to [name].html

Offline

 

#615 2009-11-26 12:32:48

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

Noop. I'm working on Diamond. I'll make it multi-window, OK? I mean, the MDI thing.


Converting my Scratch projects to Python!

Offline

 

#616 2009-11-26 12:33:27

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

asp and aspx are ASP.NET web pages.


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

#617 2009-11-26 13:40:58

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

how do i make them?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#618 2009-11-26 13:52:28

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

markyparky56 wrote:

how do i make them?

With a simple text editor or with Microsoft Visual Web Developer.


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

#619 2009-11-28 06:03:28

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

I recommend Web Developer.


Converting my Scratch projects to Python!

Offline

 

#620 2009-11-28 10:58:37

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

9000+ views.  big_smile  I can't wait till 10,000 views.  tongue  We should get it quite soon.  big_smile

Offline

 

#621 2009-11-28 11:00:28

DawnLight
Scratcher
Registered: 2009-04-25
Posts: 500+

Re: Emerald

Magnie wrote:

9000+ views.  big_smile  I can't wait till 10,000 views.  tongue  We should get it quite soon.  big_smile

Wow Magnie, I am proud of you!  big_smile

Offline

 

#622 2009-11-28 12:18:09

cds56
Scratcher
Registered: 2008-05-02
Posts: 500+

Re: Emerald

Oh wow. 9000 views. That is epic.


http://img192.imageshack.us/img192/909/meowdevlogo.pnghttp://i32.tinypic.com/pucti.png

Offline

 

#623 2009-11-28 12:23:16

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

^ We've been getting around 800 views/week, approx.


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

#624 2009-11-28 12:25:45

DawnLight
Scratcher
Registered: 2009-04-25
Posts: 500+

Re: Emerald

gershmer wrote:

filo5 wrote:

Why can't I open any file from your FTP server in my Visual Studio, Gersh?

I was trying to edit the Emerald website, when VS came up with "Unable to get file '[name here' from the Web server". Is it something with your config?

I can...


Are you using 97.74.144.1 as your address, or are you using gershmer.net?

Also, what exactly are you using, I am:

-Microsoft Visual Web Developer 2008 Express Edition
-(in Visual C#)

Small Basic is a great program for kids! It is like a simplified version (For Kids) of Visual Basic.
Analogy:
Scratch......C++
Small Basic......Visual Basic

Offline

 

#625 2009-11-28 12:54:38

gershmer
Scratcher
Registered: 2009-02-12
Posts: 1000+

Re: Emerald

DawnLight wrote:

Small Basic is a great program for kids! It is like a simplified version (For Kids) of Visual Basic.
Analogy:
Scratch......C++
Small Basic......Visual Basic

That's interesting... I'll take a look.


Visit my site, Gershmer.net
Leave me a voicemail at my Google Voice number, [removed]

Offline

 

Board footer