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

#626 2009-11-28 13:45:47

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

Re: Emerald

Small basic is MS?

that's weird. to think that I've never heard of it.


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

Offline

 

#627 2009-11-28 14:01:05

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

Re: Emerald

.

Scratch is actually like C#.


Converting my Scratch projects to Python!

Offline

 

#628 2009-11-28 14:06:45

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

Re: Emerald

filo5 wrote:

.

Scratch is actually like C#.

The more I think about it, it actually kind of is.


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

Offline

 

#629 2009-11-28 14:14:31

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

Re: Emerald

Well, C# is actually among the easy languages (like VB or... Java...Script?)


Converting my Scratch projects to Python!

Offline

 

#630 2009-11-28 14:22:48

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

Re: Emerald

I should go learn C# shouldn't I? Do you have the source of "Diamond"? I would like to actually try it for once. xD

Last edited by Magnie (2009-11-28 14:23:13)

Offline

 

#631 2009-11-28 14:29:45

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

Re: Emerald

An interesting discovery

http://www.codeplex.com/IronPythonStudio

Python Visual Studio.


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

Offline

 

#632 2009-11-28 14:52:44

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

Re: Emerald

Magnie wrote:

I should go learn C# shouldn't I? Do you have the source of "Diamond"? I would like to actually try it for once. xD

Sources available - check on Emerald Forums.


Converting my Scratch projects to Python!

Offline

 

#633 2009-11-28 18:29:21

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

Re: Emerald

I'm learning C# offa C# station. but my Visual C# is throwing a weird error when i have more than two classes not contained within a namespace.

and it crashed when I tried to add a namespace.
lol. C# is soo easy compared to C++, even though the syntax is quite similar


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

Offline

 

#634 2009-11-28 19:00:06

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

Re: Emerald

well, proper classes look like this:

Code:

namespace MyNamespace
{
  public class Class1 { /* class stuff */ }
  public class Class2 { /* class stuff */ }
}

And also, you can't just copy and paste C# station code in one file. You'll always have to delete some code before adding a new thing.


Converting my Scratch projects to Python!

Offline

 

#635 2009-11-28 19:26:42

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

Re: Emerald

I find the best way to speed up learning a language, is to write all the code down manually, instead of copy and pasting. which is why I wrote down the Emerald source code on a completely different file.
It took a while, but it helped understand the code a lot.

I'm not really new at programming and yes, thats how i wrote my classes except in blocks like:

Code:

namespace all
{
  public class class1
  {
     //code stuff
   }
   public class class1
    {
    //class stuff
    }
}

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

Offline

 

#636 2009-11-29 03:59:42

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

Re: Emerald

And what's in error list?


Converting my Scratch projects to Python!

Offline

 

#637 2009-11-29 08:49:15

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

Re: Emerald

what are we actualy using to program emerald in? is it python or C#, C++what are we using?


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

 

#638 2009-11-29 09:12:31

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

Re: Emerald

Py-thon. I use C# for "Diamond".


Converting my Scratch projects to Python!

Offline

 

#639 2009-11-29 09:37:52

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

Re: Emerald

Do .py files made in IronPythonStudio still require .NET framework???


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

Offline

 

#640 2009-11-29 13:37:32

The-Whiz
Scratcher
Registered: 2007-07-09
Posts: 1000+

Re: Emerald

I can't get it to open in python...

Offline

 

#641 2009-11-29 14:35:42

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

Re: Emerald

IronPython is more like Python.NET - it's pure python, but uses .NET framework.

The-Whiz: Which version are you using? Maybe you'll need the following modules: TK, Tkinter, PyGame


Converting my Scratch projects to Python!

Offline

 

#642 2009-11-29 15:11:28

The-Whiz
Scratcher
Registered: 2007-07-09
Posts: 1000+

Re: Emerald

I don't have PyGame.

Offline

 

#643 2009-11-29 16:18:13

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

Re: Emerald

The-Whiz wrote:

I don't have PyGame.

The current Emerald only uses Tkinter.


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

Offline

 

#644 2009-11-29 16:18:47

The-Whiz
Scratcher
Registered: 2007-07-09
Posts: 1000+

Re: Emerald

Where can I get Python 2.6?

Offline

 

#645 2009-11-29 16:24:03

jacool
Scratcher
Registered: 2008-01-25
Posts: 1000+

Re: Emerald

The-Whiz wrote:

Where can I get Python 2.6?

http://www.python.org/download/releases/2.6.4/


http://i571.photobucket.com/albums/ss159/JacobKar/svensktiger-1.png

Offline

 

#646 2009-11-29 20:35:54

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

Re: Emerald

http://www.punbb-hosting.com/forums/Emerald/viewtopic.php?pid=666#p666


Finally. A py2exe. So easy, though.

I even gave the EXE markyparky's ICO file. (icon)


The link has a download.


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

Offline

 

#647 2009-11-30 14:58:51

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

Re: Emerald

Iv now got the emerald 0.3 on my desktop, ill need to update it though when we get 0.4 up. hows it doing and whats excpected of it?


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

 

#648 2009-11-30 22:41:55

The-Whiz
Scratcher
Registered: 2007-07-09
Posts: 1000+

Re: Emerald

I posted an entry to the Emerald Team in the forums, could someone please look at it?

Offline

 

#649 2009-11-30 22:47:23

TommyAGBoy
Scratcher
Registered: 2009-11-30
Posts: 10

Re: Emerald

cds56 wrote:

Small basic is MS?

that's weird. to think that I've never heard of it.

Small Basic is a Kid-friendly version of Visual Basic. It only includes 14 sub-commands, but is very functional. Search it up on Google. You'll find it. Yes it is for Microsoft Operating Systems. Hope that helps!  big_smile

Offline

 

#650 2009-12-01 10:04:06

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

Re: Emerald

The-Whiz: We look at our forums 3+ times a day, I'm sure any topic you post will get replied within 12 hours ( or less ) by the entire team.  tongue

Offline

 

Board footer