Fabioisonfire
total a-hole
inTBT:
inTBT; my newest, latest, greatest project. This thing is really big and has taken me forever, and it's almost ready to be released. I'm really excited for this. I'll only give you little information at a time, until I feel it's ready for release.
inTBT is an OS-like program JUST for TBT. It'll contain all things any great user program would do; icons, windows, options, and much more. You'll be able to have quick-links around TBT, and be able to PM members with the click of a button. You'll be able to write your own inTBT programs, upload, save, and share them! There is a lot done, and a lot planned; I'm hoping it'll serve TBT justice.
News:
07/16/07: Topic Posted, Screenshot + Userbars added
Screenshots:
#1 - #2 - #3
Userbars:
#1 (inTBT User) - #2 (inTBT Supporter) - #3 (inTBT)
Downloads:
Version 1.0:
.RAR: http://www.savefile.com/files/898676
.ZIP: http://www.savefile.com/files/898691
inTBT Creation:
inTBT has the unique ability to create custom programs that you can make. And all in Notepad. This is a tutorial on how to create your own inTBT program.
First, open up Notepad. The first thing needed in the program is the title and a name. So, type:
Now, if you want a simple program, for things like announcements, you'll need a body. To create a body, type:
So, an example of a simple announcement program would be:
Next, we'll learn how to add buttons to your windows.
This line of inTBT code will add a button to your window. Now, to customize it.
The 'btext' code is what will appear on the button. The 'blink' is what the button will link to.
So here's our custom inTBT Program so far:
Next, we'll work on creating a custom icon for our program.
First, you'll need to make the actual icon for your program. Be sure to save it as a .GIF. We'll save ours as 'newicon.gif'. Next, add this code to your document:
The 'iconchange' code signifies we want the icon changed. Then, we signify our .GIF file's name in the 'newicon' section.
That's all for now. More coming soon.
inTBT; my newest, latest, greatest project. This thing is really big and has taken me forever, and it's almost ready to be released. I'm really excited for this. I'll only give you little information at a time, until I feel it's ready for release.
inTBT is an OS-like program JUST for TBT. It'll contain all things any great user program would do; icons, windows, options, and much more. You'll be able to have quick-links around TBT, and be able to PM members with the click of a button. You'll be able to write your own inTBT programs, upload, save, and share them! There is a lot done, and a lot planned; I'm hoping it'll serve TBT justice.
News:
07/16/07: Topic Posted, Screenshot + Userbars added
Screenshots:
#1 - #2 - #3
Userbars:
#1 (inTBT User) - #2 (inTBT Supporter) - #3 (inTBT)
Downloads:
Version 1.0:
.RAR: http://www.savefile.com/files/898676
.ZIP: http://www.savefile.com/files/898691
inTBT Creation:
inTBT has the unique ability to create custom programs that you can make. And all in Notepad. This is a tutorial on how to create your own inTBT program.
First, open up Notepad. The first thing needed in the program is the title and a name. So, type:
Code:
objcustomicon.name="(Program's name here)"
objcustomicon.title="(Your title here)"
Now, if you want a simple program, for things like announcements, you'll need a body. To create a body, type:
Code:
objcustomicon.text="(Your text here)"
So, an example of a simple announcement program would be:
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
Next, we'll learn how to add buttons to your windows.
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
This line of inTBT code will add a button to your window. Now, to customize it.
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
objcustomicon.btext="Click Here"
objcustomicon.blink="http://www.clickhere.com"
The 'btext' code is what will appear on the button. The 'blink' is what the button will link to.
So here's our custom inTBT Program so far:
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
objcustomicon.btext="Click Here"
objcustomicon.blink="http://www.clickhere.com"
Next, we'll work on creating a custom icon for our program.
First, you'll need to make the actual icon for your program. Be sure to save it as a .GIF. We'll save ours as 'newicon.gif'. Next, add this code to your document:
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
objcustomicon.btext="Click Here"
objcustomicon.blink="http://www.clickhere.com"
objcustomicon.iconchange=true
ocjcustomicon.newicon="newicon.gif"
The 'iconchange' code signifies we want the icon changed. Then, we signify our .GIF file's name in the 'newicon' section.
That's all for now. More coming soon.