Thread: Question: .swf libraries?

  1. #1
    Registered User
    Join Date
    Dec 2006
    Posts
    2

    Question: .swf libraries?

    Hello everyone, I am a newbie here and I am new to C and C++ to a degree, I've been studying C and C++ for 2years now and I'm getting a little be better with it.

    My question is, with adding libraries to your program, I found a library similiar to flash written in C for .swf files, Is this even possible to be done for create a GUI interface like form?

    (example: ming c library for create .swf files)

  2. #2
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    You mean, can you write a C program that uses .swf [flash] files via this library? Probably.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  3. #3
    Registered User
    Join Date
    Dec 2006
    Posts
    2

    Unhappy

    Yes if I apply or include the library files in the code

  4. #4
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    That's generally how you use libraries . . . .

    So what is your question?

    For information on how to use the library, check its documentation. You'll more likely than not have to link with the library, and probably add an include directory to your compiler's include search path. For GCC, this means using -l (lowercase L) and -I (uppercase i) respectively.
    Code:
    gcc -c main.c -lSDL -I /usr/include/SDL
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Building with libraries
    By Opel_Corsa in forum C++ Programming
    Replies: 5
    Last Post: 01-22-2007, 10:50 PM
  2. Libraries and headers
    By darksaidin in forum C++ Programming
    Replies: 10
    Last Post: 07-23-2003, 06:24 AM
  3. Question about allegro and other graphics libraries....
    By o0obruceleeo0o in forum Game Programming
    Replies: 2
    Last Post: 06-11-2003, 11:02 PM
  4. Self regiserting DLLs question and libraries question.
    By ApocalypticTime in forum Windows Programming
    Replies: 2
    Last Post: 03-22-2003, 02:02 PM
  5. opengl DC question
    By SAMSAM in forum Game Programming
    Replies: 6
    Last Post: 02-26-2003, 09:22 PM