A video poker widget with several common game variations
Play five different variations of Video Poker, a casino favourite since 1979. Using this widget won't cost you a cent, but with an included strategy trainer, it just might help increase your edge at the real machines! My first new widget in over two and a half years. Hope you like it
Included games are:
Jacks or Better
Bonus Poker
Double Bonus Poker
Double Double Bonus Poker
Deuces Wild
Version 1.3
Updates for changes in the Opera widgets security specification
New icons
Fixed bug where widget would hang on a certain card combo
Fix audio pop at the end of the beep wav
Comments
8 posts
Log in at the top of the page to post a comment.
1 - 8 of 8
Best gadget I have ever seen! Thanks for sharing :^)
@ Benjamin Joffe: Thanks for the error report, I'll look into it! Yup, the cards are a modification of a free set, so these are usable in the same fashion.
As for the 3x shuffling, are you making fun of my OCD?
Nice widget, looks very clean. Are those card designs free to use? I'm making a card playing app and am after some good looking free cards... Occasionally all the buttons go permanently grey, and the widget must be refreshed, appears to be a bug:
Timeout thread: delay 800 ms Error: name: TypeError message: Statement on line 560: Cannot convert undefined or null to Object stacktrace: Line 560 of linked script widget://232539173435748908931260510472/index.js for (var y = 0, nf = true; y < c.length; y++) Line 241 of linked script widget://232539173435748908931260510472/index.js var hand = self.check(), train = (self.round) ? self.trainer(hand) : null; ...
By olimeter777 , # Apr 7, 2010 12:57:30 AM
By Aparate-foto , # Jan 14, 2010 9:43:43 AM
By Carucioare , # Jan 11, 2010 3:19:36 PM
As for the 3x shuffling, are you making fun of my OCD?
By GreyWyvern , # Dec 29, 2009 8:29:47 PM
/* ****************************************************************
* Shuffle the deck n times
*
*/
this.shuffle = function(n) {
for (var n = n || 3; n--;) {
for (var i = this.deck.length - 1, j, k; i > 0; i--) {
j = Math.floor(Math.random() * (i + 1));
k = this.deck;
this.deck = this.deck[j];
this.deck[j] = k;
}
}
};
By Benjamin Joffe , # Dec 11, 2009 6:13:40 AM
Are those card designs free to use? I'm making a card playing app and am after some good looking free cards...
Occasionally all the buttons go permanently grey, and the widget must be refreshed, appears to be a bug:
Timeout thread: delay 800 ms
Error:
name: TypeError
message: Statement on line 560: Cannot convert undefined or null to Object
stacktrace: Line 560 of linked script widget://232539173435748908931260510472/index.js
for (var y = 0, nf = true; y < c.length; y++)
Line 241 of linked script widget://232539173435748908931260510472/index.js
var hand = self.check(), train = (self.round) ? self.trainer(hand) : null;
...
By Benjamin Joffe , # Dec 11, 2009 6:09:57 AM
I built the widget and I have never gotten a Royal even after testing for 1000s of hands
By GreyWyvern , # Aug 13, 2009 10:08:15 PM
It's the same game like this?
http://mac.softpedia.com/get/Dashboard-Widgets/Games-Widgets/VideoPoker-Widget.shtml
By network123 , # Aug 4, 2009 6:46:00 AM