Search found 384 matches

by Santos
Mon Apr 02, 2012 7:30 am
Forum: Libraries and Tools
Topic: Image viewer/manager prototype
Replies: 7
Views: 3413

Image viewer/manager prototype

I'd like to use an image viewer that has a: Simple interface with no visual distractions Fast tag-based navigation system Here is a protoype of my dream image viewer. Features include... Quasimodal text input: hold the modifier key in while typing and release it to enter the text Tagging images, wit...
by Santos
Mon Apr 02, 2012 1:31 am
Forum: Support and Development
Topic: ICON HELP!!!
Replies: 5
Views: 4554

Re: ICON HELP!!!

To change the icon of the .exe file, you can use Resource Hacker.
by Santos
Sat Mar 31, 2012 8:47 am
Forum: Games and Creations
Topic: Zipperippers Showcase
Replies: 60
Views: 35745

Re: Zipperippers Showcase

Thanks for reuploading these, they're really cool! :awesome:
by Santos
Sat Mar 31, 2012 8:26 am
Forum: Support and Development
Topic: "Rubber Piggy"-Problem ^^
Replies: 5
Views: 3508

Re: "Rubber Piggy"-Problem ^^

Be sure you're renaming a zip file to .love, rather than a rar file etc.
by Santos
Fri Mar 30, 2012 2:14 am
Forum: General
Topic: 3d engines?
Replies: 28
Views: 10223

Re: 3d engines?

I've yet to try it, but Polycode might be interesting to look at.
by Santos
Tue Mar 20, 2012 8:24 am
Forum: Support and Development
Topic: Bullets[again]
Replies: 1
Views: 745

Re: Bullets[again]

Is...

Code: Select all

zombie.vhealth = zombiev.health - steve.damage
supposed to be...

Code: Select all

zombiev.health = zombiev.health - steve.damage
?
by Santos
Fri Mar 16, 2012 9:33 am
Forum: Libraries and Tools
Topic: [Video Tutorial] Love Tutorial ~45min
Replies: 20
Views: 36011

Re: [Video Tutorial] Love Tutorial ~45min

Ah, I see! Thank you! ^^
by Santos
Fri Mar 16, 2012 7:05 am
Forum: Libraries and Tools
Topic: [Video Tutorial] Love Tutorial ~45min
Replies: 20
Views: 36011

Re: [Video Tutorial] Love Tutorial ~45min

This is awesome! Thanks so much for making this. Highly subjective and not-very-useful critique time, woo! :awesome: I saw "Ogg" and assumed it was audio. :oops: Perhaps renaming it "Ogg video" or something might help people who didn't read the first post very well. Like me. :P T...
by Santos
Wed Mar 14, 2012 12:12 pm
Forum: General
Topic: Inventing on Principle
Replies: 1
Views: 1232

Inventing on Principle

I just watched this talk and found it incredibly interesting. Sharing it here in the hopes that you do too! ^^ The presenter shows some very cool examples of highly interactive programming, and the overall topic of the talk which is inventing things on "principle" is very interesting too. ...
by Santos
Wed Mar 14, 2012 12:07 pm
Forum: Libraries and Tools
Topic: beholder.lua - event observation in Lua
Replies: 37
Views: 20816

Re: beholder.lua - event observation in Lua

Thanks for the enlightening post kikito! I finally get why one would use an event library like this, much like how your posts in this topic helped me understand the usefulness of functions and subclassing.