Saturday, January 15, 2011

How a dll using in vc++

I was trying to learn DLLs and nothing was really explaining anything; it was just code for you to look at and wonder what was going on. For this article, I assume you know how to use the features of your compiler, such as setting directory paths and such. To set up the project, select Win32 Console Application, and on the advanced tab, select DLL...

Monday, January 10, 2011

How To create textfiled and set font in flash as2

Paste this code in to the first frame of your flash movie this.createTextField("mytext",1,100,100,100,100); mytext.multiline = true; mytext.wordWrap = true; mytext.border = true; var myformat:TextFormat = new TextFormat(); myformat.font = "Courier"; mytext.text = "this is my first test field object text"; mytext.setTextFormat(myforma...