Scratch, a free program

Next
 From:  bemfarmer
4975.1 
This program seemed worthy of sharing.

http://info.scratch.mit.edu/About_Scratch

Just have to figure out how to copy MoI files to it...
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
4975.2 
Seems very funny !

---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  BurrMan
4975.3 In reply to 4975.1 
""""""""Just have to figure out how to copy MoI files to it...""""""""""""

It appears to be a bitmap editing/animation app, so this script will do it:

code:
script:var img = moi.view.screenshot( 'viewpanel', false ); var name = img.getSaveFileName(); if ( name != '' ) img.save( name );


PS, Michael, what is wrong with this forum code tag please?

EDITED: 1 Mar 2012 by MICHAEL GIBSON

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
4975.4 In reply to 4975.3 
Hi Burr, use HTML style <> brackets for the tag, so like this:

<code> .... <code>

I tweaked it for you.

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  bemfarmer
4975.5 
Thank you Burr & Michael.
Like other scripts, the scripts will work 2 ways:
1. Tab paste return.
or 2. Make an Option Shortcut key. I used Ctrl+Shift+S.

Was going to make a spherical spiral script, but no need, forgot about twist.
Here is half an ellipse, with twist, and sweep:




Picture is very large... :-)

EDITED: 2 Apr 2015 by BEMFARMER

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  BurrMan
4975.6 In reply to 4975.4 
Got it! Thanks Michael.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  BurrMan
4975.7 In reply to 4975.5 
Hi Bemfarmer,
Here is another script. This one will allow you to capture the viewport to the clipboard, at a specified size (Set in the script here as 2560x2560). You can then paste the image into any app that accepts the paste. So modify the numbers to get an image of a desired size, or make a progressive set to use.

code:
script: /* render view to clipboard */ var v = moi.ui.getActiveViewport(); if ( v != null ) { moi.view.lineWidth = 4; v.renderToClipboard( 2560, 2560 ); moi.view.lineWidth = 1; }


Remember that your video card will limit the size you are able to capture. So you wont be able to capture a 6000x6000 pixal image unless you have some good video power.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  bemfarmer
4975.8 In reply to 4975.7 
Thank You.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
4975.9 
http://byob.berkeley.edu/ With BYOB you can new Bricks of instructions if Scratch is not sufficient ;)


  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Frenchy Pilou (PILOU)
4975.10 
You can make an exe from a scratch project!
http://scratch.mit.edu/forums/viewtopic.php?id=46159

cut the sound ;)
---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  Frenchy Pilou (PILOU)
4975.11 
---
Pilou
Is beautiful that please without concept!
My Gallery
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All