Categories

Archives

TTS Extension on Chrome

Firstly this a prove of concept that TTS can be pure web based.
When i was starting with Android the first time I did was Talking Caller that involves TTS, now history repeats itself, while this is not my first chrome extension (Twitter Search Header Fix) this is the first one that has more than 3 [...]

Twitter search fixed header extension

I was searching over at search.twitter.com then i realized that the search box was moving along with the scroll so when i scroll all the way down and decided to search another query, i have to scroll the way back, and there seems to have no back to top button, so i create a chrome [...]

HTML 5 Audio Player

Away from android and created an HTML5 audio player. I created it coz i cannot sleep so thats like 3-4 hours, if you found bugs then you know why. lol
http://monmonja.com/html5audio/
And please support the artist that i used on the playlist. Thanks

Battery Status 2.0 Released without ads

Yes the one on the market is with ads, for those people who helped me a lot i have considered not putting ads on the app at the bottom. Its my way of thanking you guys in helping me. Everything is the same as the beta except its without ads. Again thanks to everyone who [...]

Ext Grid rowdblclick and rowclick fix

Ext is a great javascript library but ofcourse there are times where some things doesn’t work and one of them is the rowdblclick and rowclick listener. Here is how i fixed it when i’ve encountered this problem.
var grid = new Ext.grid.GridPanel({
store: <your datastore>,
columns:[<your columns>],
renderTo:’example-grid’,
height:200,
listeners:{
rowdblclick : function(grid,row){
alert(“rowdblclick”)
},
rowclick:function(grid,row){
alert(‘rowclick’)
}
}
});
As you can see instead of doing
grid.getSelectionModel().addListener(“click”,
function(grid,row){ alert(”click’); })
or [...]

jqModal IE7 Drop All Contents at the bottom fix

This seems to be a fix for jqModal when IE7 drops all to the bottom of the page while the top of the page is the jqModal.
Open the css that came with jqModal and change to the following codes
.jqmOverlay {
background-color: #000;
+position:absolute !important;
}

The +position:absolute !important is a css [...]