Graphical Vote Table PSP: Difference between revisions
From GameBrew
More actions
Created page with "{{Infobox PSP Homebrews |title=Graphical Vote Table |image=votetablepsp.png |description=A vote table demo program made in Lua. |author=Kenny Lindahl (HaxxBlaster) |lastupdated=2006/07/31 |type=Demos |format= |version=Bug fix |license=Mixed |download=https://dlhb.gamebrew.org/psphomebrew/votetablepsp.7z |website=http://forums.qj.net/psp-development-forum/62591-release-vote-tabel-real-time.html#post892812 |source=https://dlhb.gamebrew.org/psphomebrew/votetablepsp.7z }} A..." |
|||
| Line 44: | Line 44: | ||
== External links == | == External links == | ||
QuickJump - http://forums.qj.net/psp-development-forum/62591-release-vote-tabel-real-time.html#post892812 | *QuickJump - http://forums.qj.net/psp-development-forum/62591-release-vote-tabel-real-time.html#post892812 | ||
Revision as of 12:15, 30 September 2024
| Graphical Vote Table | |
|---|---|
| General | |
| Author | Kenny Lindahl (HaxxBlaster) |
| Type | Demos |
| Version | Bug fix |
| License | Mixed |
| Last Updated | 2006/07/31 |
| Links | |
| Download | |
| Website | |
| Source | |
A vote table demo program that can be used in real time (the stand alone version) or be used in a Lua application.
It contains:
- A stand alone version, wish allows you to change the values of the votes.
- A function that can be implemented by Lua developers for their applications. Everything is built in a function, for easy use for Lua developers.
User guide
Here is an example of the arguments that you can put in to the function load:
vote(23,"Yes",45,"No",13,"Blank",80,100,true)
Short description:
vote(votes1,voted1,votes2,voted2,votes3,voted3,x,y,summary)
| | |
| What opt 1 voted, as string. |
How many votes. |
Summary as boolean, true or false.
Controls
Left/Right - Modify value
Start - Reset to default value
Screenshots
Changelog
Bug fix
- The bug that was fixed was the freeze bug. It was caused if you putted all votes to < 1, because of the procent calculation. However, it's fixed now.