Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Abakada

Pages: [1]
1
General / extlibs...
« on: June 25, 2010, 12:23:27 pm »
So actually, i did "install" it properly..! That's a 110% fluke..! SCORE...!

Thanks..!

2
General / extlibs...
« on: June 24, 2010, 11:17:46 pm »
I have tried to "install" the extlibs by copying the *.dll files of the bin folder to windows/system32, copying the *.lib files to the lib folder, and copying the entire headers folder to the include folder.... (that's a lot of copying...! lol...)

However, with this piece of code...
Code: [Select]
// Load a music to play
sf::Music Music;
if (!Music.OpenFromFile("Kalimba.mp3"))
     return EXIT_FAILURE;

// Play the music
Music.Play();

It gives me "Failed to open "Kalimba.mp3" for reading" in the black screen.
The Kalimba.mp3 is with the main.cpp...

Did I do it right..? (of course not....:?) What are my mistakes..?

Thanks for the help :D

3
General / Needs Help for Installing SFML
« on: June 23, 2010, 11:07:54 pm »
nvm my last post... graphics lib works... i just misspelled it... tnx..!

4
General / Needs Help for Installing SFML
« on: June 23, 2010, 10:33:59 pm »
ok then... i'm blind again...

when i try to run this...
Code: [Select]
#include <SFML/System.hpp>
#include <iostream>

int main()
{
    sf::Clock Clock;
    while (Clock.GetElapsedTime() < 5.f)
    {
        std::cout << Clock.GetElapsedTime() << std::endl;
        sf::Sleep(0.5f);
    }

    return 0;
}

it runs...!

however, when i try to add the sfml-graphics-s-d.lib in Additional Dependencies, it cannot be opened...

any ideas..?  :?:

5
General / Needs Help for Installing SFML
« on: June 23, 2010, 09:48:10 pm »
MY EYES ARE FINALLY CURED..! i think it's my brain....

I finally installed this library..!

Thanks!

6
General / Needs Help for Installing SFML
« on: June 23, 2010, 05:07:07 pm »
I have seen it. (http://www.sfml-dev.org/tutorials/1.6/start-vc.php)

However, since I do not have VC++ Directories for C++ 2010 Express, I'm trying the Option#1 (Copy the SFML development files to your Visual Studio installation directory). I just cannot find VC\include directory... For the Step#2, do I also need to copy the *.dll files..?

A version of option #2 for C++ 2010 Express would also be nice.

Thank you for helping me  :D

BTW, i'm NOT BLIND..! I'm just ..... yeah... i'm blind.... lol

7
General / Needs Help for Installing SFML
« on: June 23, 2010, 02:41:48 pm »
How can i install SFML..? Is there a tutorial which i cannot find..? Is the installation too easy that a tutorial is unnecessary..?

I really need help in installing this library...

I currently have windows 7 and C++ 2010 Express...

thank you for help  :D

Pages: [1]
anything