Other than UniSciTE?

I want to run 2 or more unity script editor.

But script editor runs just 1 when I run 2 unity and run 2 project at the same time,

but script editor’s maximum capacity is 10.

Then, how can I see 10 more scripts at the same time?

Notepad++
http://www.unifycommunity.com/wiki/index.php?title=Using_Notepad_Plus_Plus_as_a_script_editor

OR

UnityDevelop
http://technology.blurst.com/unitydevelop-javascript-editor

Enjoy

If you open more then one script from Unity, the different scripts opens tabbed in a singe instance of UniScite.
Is this not what you want?

I recently started to use Monodevelop in Unity3 Beta and I noticed that for each script it opens another instance.
Kinda odd, but maybe there is a good reason, don’t know.

Kind regards, Robert

Go to your Unity folder and open:
Unity/Data/Tools/UniSciTE/SciTEGlobal.properties

It has a setting somewhere (I believe something called buffers) which you can increase from 10.

To solve the even worse problem of non mono spaced fonts, search for the comment line in the next code segment and replace the font stuff after it by the stuff here:

# Give symbolic names to the set of fonts used in the standard styles.
if PLAT_WIN
    font.base=font:Courier New,size:10
    font.small=font:Courier New,size:10
    font.comment=font:Courier New,size:10
    font.code.comment.box=$(font.comment)
    font.code.comment.line=$(font.comment)
    font.code.comment.doc=$(font.comment)
    font.code.comment.nested=$(font.comment)
    font.text=font:Courier New,size:10
    font.text.comment=font:Courier New,size:10
    font.embedded.base=font:Courier New,size:10
    font.embedded.comment=font:Courier New,size:10
    font.monospace=font:Courier New,size:10
    font.vbs=font:Courier New,size:10

This will change the font for non-monospace to courier, which means you always have monospaced fonts.

Thanks man!!

I increased to 100. :smile:

But more good solution is run more UniSciTE, so that I can easily see comparing with 2 or more scripts.

I don’t know why change font and what is exactly you means, so I will consider that later.

Very helpful thread!

Thanks Tom, this helps a lot!

Hello Robert; the same happens to me and i am sure that is not for Unity’s version because i have 2.6 .
Open the solution from Monodevelop is annoying but it works fine.

Thanks Kokumo,

When I wrote that comment I had no experience with MonoDevelop,
in the meantime I have figured the way you described out. But thanks for mentioning it.
I’m still experiencing one problem with Monodevelop; I am unable to write quotation marks.
I’m pretty sure it must be a setting somewhere, or maybe I need to use some shortcut.
If anyone can advice me…please!

Regards, Robert

I remembered to have seen an option to change “character encoding”… so i look up over internet and i found this. I’m at work, so i can’t test it by myself.

Greets.

Thanks. This is useful info.