IT WORKS! (sorry, not the solution/workaround Duoas gave me:P)
YAY, well, now you wanna know how huh?
Well, you need to make a file in your libraryfolder: called "Console.h".
Then paste this text in it:
http://svn.kju-app.org/trunk/qemu/qemu/console.h
(You can download it too! Doesnt matter how..)
Well, then you can do colors in all kinds, try this:
#include <iostream>
#include <stdio.h>
#include "Console.h"
using namespace std;
int main(){
namespace con = JadedHoboConsole;
cout << con::clr;
cout << con::fg_green << con::bg_black << "Hello Green World!";
}
|
---------------------EXTRA------------------------:
well, then download my header: jetibest_objects.h
include it and you will be able to:
call: int puttext_xy(int x, int y, string text)
so you can put text on a x,y location
call: string select_option(string arr[], int x, int y, int aantal)
array, needs to have the buttonvalues with their actions
x,y is location
aantal=dutch for count. so how much buttons the array contains..
call: string textarea(int left, int top, int cols, int rows, string id, string text)
with that you make a textarea!
id is id, text is innerText, rows cols etc is width height.. left and top is x,y coords..
If you are interested, mail me on jeti2121@hotmail.com and ask me to mail it you!