
08-04-2011, 10:27 AM
|
| CrackBerry Master Device(s): 9800 (Torch) Carrier: Telus Pin: cushion | | Join Date: Oct 2009 Posts: 1,294 Likes Received: 442
Thanked 286 Times in 153 Posts
| |
config.xml = Code: <?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" version="1.0.0.0">
<feature id="blackberry.app.event" required="true" version="1.0.0.0"/>
<access uri="http://www.berrygoodthemes.co.uk/" subdomains="true"/>
<permission>access_shared</permission>
<name>AliensAttack</name>
<author rim:copyright="2011">BerryGoodThemes</author>
<icon src="icon.png"/>
<content src="http://www.berrygoodthemes.co.uk/userimages/Aliens_Attack.swf"/>
</widget>
icon.png (whatever icon you would like) would be added to the root of a zip file containing the XML file & icon.png called Aliens Attack
After you have the zip file made, open bbwp and make the bar file.
You will need signing keys from RIM to put it on your playbook.
Would be as simple as this to link it to your site.
You could also just embed the SWI into an HTML file and use the src line to link to it instead of your site.
**some of the lines in config.xml would not be needed in your case**
such as Code: <feature id="blackberry.app.event" required="true" version="1.0.0.0"/> Only required if using SwipeDown or such
<permission>access_shared</permission>
<author rim:copyright="2011">BerryGoodThemes</author>
<icon src="icon.png"/> if you want no icon
Last edited by molson0; 08-04-2011 at 11:00 AM.
|