Photoshop Tutorials
I’ve been looking into building interfaces for some game ideas lately. Links to some decent tutorial sites follows.
I’ve been looking into building interfaces for some game ideas lately. Links to some decent tutorial sites follows.
As I’ve undergone the transition from HTML to XHTML I’ve collected various bits of information that I found useful. The following items provide an overview of the some of the more nagging issues that came up.
Anchor - target=”" attribute
Since the target=”" attribute is not valid in strict XHTML 1.0, the following allows the target to be used with a minimum of JavaScript.
The onclick=”" atttribute is valid XHTML. For those users with Javascript turned off, the link simply loads in the same frame.
<a xhref=”http://www.site.com/path_to_page.html” mce_href=”http://www.site.com/path_to_page.html” onclick=”target=’_blank’”>My Link<a>
TD - nowrap attribute
nowrap is not XHTML compliant since it doesn’t have the required quotes. However, transitionally it is legal to put nowrap=”nowrap”.
For a purer version use the style=”white-space:nowrap” css mark-up. Or, put it in an external stylesheet.
IMG - align=”" attribute
Since the align attribute is not valid in XHTML 1.0 we need to find the css equivalents. Instead of one css equivalent, however, there are a couple to consider. For horizontal aligning, use the “float” attribute. For vertical alignment use the “vertical-align” attribute.
Valid _float_ values: float:left or float:right
Valid _vertical-align_ values: top, bottom, middle, text-top, text-bottom, baseline.
<
p>
In my current study of wxWindows I found it extremely useful to use the built in wxLog classes. However, I was a little confused as to how they were to be implemented. After a few trials, I came up with the basic boilerplate steps below:
<
This entry begins a new series to catalogue knowledge I obtain while working with the wxWidgets C++ Framework. I’ll be posting my thoughts on TrollTech QT versus wxWindows frameworks shortly. Both are fantastic, but I went with wxWindows for reasons I’ll describe in a different article. For now…Bitmaps.
<
An ongoing set of links to various assembly language related sites on the internet.
<
p>
I found a great reference of named colors for HTML browsers. I’ve included the HTML in the “extended entry” of this post. The original source is at http://halflife.ukrpack.net/csfiles/help/colors.shtml
The full table of web-colors is in the extended portion of this entry.
<
p>
An ongoing list of mathematic related sites that I’ve found to be worthy of keeping in my bookmarks.
<
p>
Here’s a quick little class I wrote to encrypt text files from a web-server using GnuPG. I’ll post updates to it as the code improves, but this was a simple and useful start that helped me encrypt messages and then send them via email from the webserver.
Some uses could be:
<