Search found 8 matches

by mdjenkins86
Wed Jan 04, 2006 12:55 pm
Forum: PSP Lua Player Development
Topic: Fading In and out
Replies: 5
Views: 2530

Thanks Josh it works great.
by mdjenkins86
Wed Jan 04, 2006 7:32 am
Forum: PSP Lua Player Development
Topic: Fading In and out
Replies: 5
Views: 2530

okay I think I got you. A png, black square 480x272 (screen}...blit that over an image with varing aplha gradients...is that it?
by mdjenkins86
Tue Jan 03, 2006 8:54 pm
Forum: PSP Lua Player Development
Topic: Fading In and out
Replies: 5
Views: 2530

Fading In and out

Is it possible to adjust the contrast of the screen? To the effect of fading a screen/image in or out.
by mdjenkins86
Fri Nov 11, 2005 11:35 am
Forum: PSP Lua Player Development
Topic: Reading a text file
Replies: 8
Views: 3537

thanks to all. I really appreciate this. Of course, credit will be given where credit its due...Thanks

This and that silly loadstring thing were really giving me the run around. The problem is that I am used to programming C and the same things are done in different ways...
by mdjenkins86
Fri Nov 11, 2005 11:26 am
Forum: PSP Lua Player Development
Topic: Another String Question
Replies: 3
Views: 2265

wow...accept my appologies...for some reason I couldn't find this function on my own. Honestly, I had researched this for weeks before I ever posted. Again, I applolgize.
by mdjenkins86
Fri Nov 11, 2005 10:26 am
Forum: PSP Lua Player Development
Topic: Another String Question
Replies: 3
Views: 2265

Another String Question

Is there a way in LUA to execute a string. I am specifically refering to an indirection string. For example can you execstring("screen:blit,"& stringcordx & ",100," & pngfilestring) or runstring("screen:blit,100,100,picture") or something to that effect. Bax...
by mdjenkins86
Fri Nov 11, 2005 9:51 am
Forum: PSP Lua Player Development
Topic: Reading a text file
Replies: 8
Views: 3537

Okay I will give it a try.

Basically I am making an rpg and want to make it possible to store data in the form of a table into an external file for saving reasons...txt or whatever. This is an awesome idea. I will post my results Friday when I get back home. Anymore ideas are welcome.
by mdjenkins86
Fri Nov 11, 2005 12:54 am
Forum: PSP Lua Player Development
Topic: Reading a text file
Replies: 8
Views: 3537

Reading a text file

Does any know how to read an array (table) from a text file into memory...

For example my table is stored in my.txt as :

[{1,2,3,4,5}]

whey I try to read it in to lua it becomes "[{1,2,3,4,5}]"

is there and way to get to this table without the quotes.