Results 1 to 5 of 5

Thread: Fonting...

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Feb 2000
    Location
    Israel
    Posts
    636

    Arrow Fonting...

    Hi!

    I want to ask something...
    When I use some font in my game, how do I get to be
    sure that in all computers it'll work fine as in my computer?

    Should I use fonts? how can I make an image multi-selection
    menu, for many options in my game?

    How should I make a simple graphical menu?
    Anyone...

    Thank you,
    Arie.

  2. #2
    Good Ol' Platypus Sastraxi's Avatar
    Join Date
    Jan 2000
    Location
    Ontario, Canada
    Posts
    5,134
    Simple graphical menus aren't all that simple. They're easy with 2-3 top-level menus, but when you get to 5-10, it gets hectic. In a while you can see an example of a DHTML menu I made here:
    http://crystal-rain.cjb.net/. Perhaps you can learn from the VBScript I have used here (would've used javascript but NS is obsolete, so...!)
    All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
    (Just a heads-up)

  3. #3
    Zaei
    Guest
    Probably the best way to make your game's menus look the same on all computers is to create a bitmap image, and place each character in it, according to it's ASCII code. Make it one really long rectangle, perhaps 32 pixels tall, and 32*256 pixels long. Place each character you want in the correct slot. At X pixel 0, nothing, at 32 (the next character slot), nothing. At, say, X Pixel 32*65, put an "A". Then, you can use BitBlt, or whatever, to print out each character to the screen, by taking the ASCII character, and multiplying by 32, and you have the correct X value to Blt.

    As for menus, you can cheat a bit, and use a series of ImageBoxes (the transparent ones), and arrange them correctly. When a User clicks on a top level menu, a couple more images are set to "Visible = True", and they can continue clicking. It works fairly well, as long as all of your menu items look right =).

    Z.

  4. #4
    Addicted Member
    Join Date
    Jul 2001
    Location
    Germany, BW
    Posts
    157

    Exclamation Packing Programm

    hy,
    you also can use a packing programm for VB-Projekts ...

    in my VB-Version (Prof.) one is included

    (Verpackungs & Weitergabeassistent) = Germ.
    (Packing & release Assistant) = ??

    there u can choose if u want do have any other files within your installation-pack ( u have 2 put in there your font ...)

    cu

    Old enough to know better,
    but young enough to don't give a ****!

  5. #5
    Fanatic Member PsychoMark's Avatar
    Join Date
    Feb 2001
    Location
    Netherlands
    Posts
    540
    "Package & Deployment Wizard"?

    You can just put the font with your setup package, but I don't know if the font will need installing (and if PDW is capable of doing that without modifications)...

    But that requires yet ANOTHER thing to be installed, and I hate things which dive into your system never to be seen again... so I would stick with the bitmap fonts, or completely pre-drawn menu items...
    Teaudirenopossum.Musasapientumfixaestinaure.
    (I can't hear you. There's a banana in my ear)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width