• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

ANE Wikitude IOS

New Here ,
Apr 15, 2014 Apr 15, 2014

Copy link to clipboard

Copied

Hi,

I need call to the Wikitude app in a ios device. I have been looking in other threads, ways to call to an installed ios app to open a file. In my case, i need open an installed app in my device, that's only, but i dont find any ANE that it can help me.

Any idea to help me? Anyone know of any ANE util for this?

Thanks.

TOPICS
Development

Views

570

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Apr 16, 2014 Apr 16, 2014

Copy link to clipboard

Copied

This can be done using URI Sheme. I jsut downloaded Wikitude and check it. Yes, it's supporting URI Shemes. You are lucky!

Here is sample AS3 code that can open Wikitude app from your Adobe Air app...

import flash.events.MouseEvent;

btn.addEventListener(MouseEvent.CLICK, callURL);

function callURL(e:MouseEvent):void{

    navigateToURL(new URLRequest("wikitude://"));

}

So you don't need any ANE here. Just copy-paste this AS3

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 08, 2014 Jul 08, 2014

Copy link to clipboard

Copied

LATEST

Hi, thanks for your answer.

What do I need to add to put in the InfoAdditions?

I've tried:

<iPhone>

        <InfoAdditions><![CDATA[

  <key>UIDeviceFamily</key>

  <array>

  <string>1</string>

  <string>2</string>

  </array>

  <key>CFBundleURLTypes</key>

         <array>

            

  <dict>

        <key>CFBundleURLName</key>

        <string>com.camel.geo.iPadARIconAppB.iPadARIconAppB-scheme</string>

        <key>CFBundleURLSchemes</key>

        <array>

          <string>iPadARIconAppB</string>

        </array>

     </dict>

         </array>

        

  ]]></InfoAdditions>

        <requestedDisplayResolution>high</requestedDisplayResolution>

    </iPhone>

And i use this:

navigateToURL(new URLRequest("wikitude://"))

sorry, but although I have experience in flex, I have never created an app for mobile

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines