View Single Post
Old 03-21-2012, 02:15 AM   #7
ixtab
(offline)
ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.
 
ixtab's Avatar
 
Posts: 2,907
Karma: 6736092
Join Date: Dec 2011
Device: K3, K4, K5, KPW, KPW2
Update:

If you don't need to change the style at runtime, you can be set it in the .azw2 manifest. This is also working without the jailbreak.
Quick example from an ant buildfile:
Code:
            <manifest>
            	<attribute name="Implementation-Title" value="${product.name}"/>
            	<attribute name="Implementation-Version" value="${product.version}"/>
            	<attribute name="Implementation-Vendor" value="${product.vendor}"/>
            	<attribute name="Main-Class" value="${product.mainclass}"/>
            	<attribute name="Amazon-Cover-Image" value="${product.image}"/>
            	<attribute name="Toolbar-Style" value="none"/>
            </manifest>
Allowable values are "none", "transient", and "persistent".

More interesting information about supported Kindlet attributes can be found in the com.amazon.kindle.kindlet.internal.install.Metadat a class
ixtab is offline   Reply With Quote