01-17-2013 07:42 PM
Linking to apps within the app world doesn't seem to work. Has anyone run into this problem?
01-17-2013 08:17 PM
your <a href should look like this-- http://appworld.blackberry.com/webstore/content/sc
i setup a mobile page for the launch http://m.brooklynn.ky
01-18-2013 10:28 AM
I'm looking to set up multiple domains to connect my own domain, and also Blackberry World for bb10.
In my config.xml I have
<widget
...
<access uri="http://video.virtualscribe.com" subdomains="true" />
<access uri="http://blackberry.com" subdomains="true" />
</widget>But when I post my my vendor name using _blank to invoke a card in bb10 from my main.html, I get a blank screen in the invoked card.
<p><a href="http://appworld.blackberry.com/webstore/vendor/5881/?lang=en" target="_blank">Get our other apps</a> in <strong>Blackberry World</strong> to read more works by International authors.</p>
01-18-2013 10:46 AM
I have also tried setting up config.xml as
<widget
...
<access uri="*" subdomains="true" />
<access uri="http://video.virtualscribe.com" subdomains="true" />
</widget>with no change in behavior of blank invoked card.
01-18-2013 11:05 AM
try this in the head section of your index.file
<script><!--external links-->
function openWebLinkInBrowser() {
// open web link in browser
blackberry.invoke.invoke({
target: "sys.browser",
uri: "http://yoursiteaddress"
}, onInvokeSuccess, onInvokeError);
}
function onInvokeSuccess() {
alert("Success");
}
function onInvokeError(error) {
alert("Error, error: " + error);
}
</script><!--/external links-->
01-18-2013 05:35 PM
Thanks, usr501, but no response with your script, no error alerts either.
I tried the following:
<a href="http://developer.blackberry.com" target="_blank">Developer</a> <a href="http://appworld.blackberry.com/webstore/content/screenshots/20081672/?lang=en" target="_blank">Screen Shot</a> <a href="http://appworld.blackberry.com/webstore/vendor/588 1" target="_blank">Vendor</a>
and was able to pull up the BB Developer site but App World Blackberry World is not showing up.
01-18-2013 05:44 PM
01-18-2013 05:54 PM
it works for me. try with a trailing slash in javascript
target: "sys.browser", uri: "http://brooklynn.ky/sitemanager/"
a page ends with an ext. if you're targeting a directory that defaults to an index page like --index.php/index.html etc use the trailing slash
01-18-2013 05:59 PM
01-18-2013 06:05 PM
Philipk
read message 2 of 9 in this thread link to app world working
I'm out.