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

#1 2012-11-22 13:40:09

christian2000
Scratcher
Registered: 2010-11-01
Posts: 100+

BYOB Development.BAT

If this has already been answered, please delete this. Thanks, mods.  big_smile

I didn't know where to post this, but some users found that BYOB development.bat
didn't work for them, and i have found a simple solution.


Copy BYOB.exe to your desktop

open notepad.


Paste this

Code:

 start C:\Users\YOUR USER NAME\Desktop\BYOB.exe BYOB.image %1 dev
pause

Replace YOUR USER NAME with your actual user name.
Save it as BYOB.bat or whatever you want, just remember to end it as .bat

Run it

When it asks for an image, chose BYOB.image

Now you can turn BYOB's fill screen off!
Note that Program Data is hidden by default

Last edited by christian2000 (2012-11-22 13:41:32)


blerp......
http://obscureinternet.com/wp-content/uploads/Fail-at-Life-Funny-Cards.png

Offline

 

#2 2012-11-22 13:45:38

dvd4
Scratcher
Registered: 2010-06-30
Posts: 1000+

Re: BYOB Development.BAT

Here is the code for the shell version:

Code:

#! /bin/sh
rundir=`dirname "$0"`
userdir=`pwd`
cd "${rundir}"
if [[ "x$1" == "x" ]]; then arg="dev" ; elif [[ "${1:0:1}" == "/" || \
       "${1:0:1}" == "~" ]] ; then \
     arg="$1" ; else arg="${userdir}/$1" ; fi
if [[ "${arg}" != "dev" && \
      `basename "${arg}"` == `basename "${arg}" .ypr` && \
      `basename "${arg}"` == `basename "${arg}" .sb` ]]; then \
   arg="${arg}.ypr" ; fi
BYOB.app/Contents/MacOS/BYOB BYOB.image "${arg}" dev "${arg}" 2> /dev/null &

I made a mod  big_smile  It's called blook!
http://i49.tinypic.com/16ia63p.png

Offline

 

#3 2012-11-22 13:46:16

christian2000
Scratcher
Registered: 2010-11-01
Posts: 100+

Re: BYOB Development.BAT

Cool


blerp......
http://obscureinternet.com/wp-content/uploads/Fail-at-Life-Funny-Cards.png

Offline

 

#4 2012-11-22 16:32:53

DigiTechs
Scratcher
Registered: 2011-04-30
Posts: 500+

Re: BYOB Development.BAT

BYOB Development.bat doesn't work? That's odd... Well if that happened, I would check if it's got the right contents.


I'm back.
Maybe.

Offline

 

#5 2012-11-24 20:02:31

christian2000
Scratcher
Registered: 2010-11-01
Posts: 100+

Re: BYOB Development.BAT

Well, this works.  tongue


blerp......
http://obscureinternet.com/wp-content/uploads/Fail-at-Life-Funny-Cards.png

Offline

 

Board footer