Launch Citrix ICA File or Link from AIR App

I'm pretty sure that I cannot launch an ICA file on my PC (if
possible please tell me how) from an AIR application, but I'm not
quite sure why I cannot consistently launch the http link to the
ICA file.
URL is something like this:
http://123.145.167.189/Domain/site/launch.ica?NFuse_Application=Citrix.MPS.App.LOCATION+DO MAIN+farm.Application+DOMAIN+LOCATION&NFuse_AppFriendlyNameURLENcoded=Application+DOMAIN+L OCATION
If the web browser is already open to the address(sometimes
just if the browser is open):
http://123.145.167.189/Domain/site/default.aspx
then the ICA file launches correctly. If the web browser is
closed, then the link to the ICA file simply opens the browser to
the base page,
http://123.145.167.189/Domain/site/default.aspx.
Any ideas?

Hi,
As specified by other people here in the forum, it is certainly possible to call a CSH AIR help from any AIR application. Please check the forum post http://forums.adobe.com/message/2272289#2272289
You need to know your AIR Help application ID, and the publisher ID.
Application ID is the one which was specified in the AIR SSL dialog in RoboHelp 8 AIR SSL dialog (Help ID).
The publisher ID for an installed application can be found in the META-INF/AIR/publisherid file within the application install directory. This Publisher ID is generated using the digital certificate provided while generating the AIR Help in AIR SSL dialog.
Once Application ID, and Publisher ID are known to the developer, he/she can call the AIR help by using the Following Flex code
private function invocarAirHelp(tema:String):void {
      var appID:String = "abc";
      var pubID:String = "ashfksdhfkjsdfk.1";
      var mgr:ProductManager = new ProductManager("airappinstaller");               
     mgr.launch("-launch " + appID + " " + pubID + " -- -csh mapnumber 1");
Hope this explanation will help you.
Thanks
Praful Jain

Similar Messages

  • Download links from AIR app... ?

    I wanted to let users browse my site as a desktop application,
    but didn't have the time to write an application from scratch. SO tried following trick. Created a simple Adobe AIR application with a single page.  This page redirects to my website and hence loads the website in the AIR window.
    Everything is working fine except that the download links are not  working. The download doesn't start. Nothing happens. What is the  solution here? Any help is appreciated.

    Our application, SocialSafe - www.socialsafe.net, allows you to download your photos to your Mac - from there you can use iTunes to put into your phone - or anywhere else. At V1 you need to read our FAQs to see where we store them; at V2 due for release in Sept 2010 you have an export function to copy them easily to any directory.

  • Opening downloaded .asp (Citrix ICA) files with Safari

    I would like to have Safari, after downloading a Citrix connection file, open the Citrix ICA Client application and then use the file the establish a connection.
    In other browsers, you can set this up under "helper applications" or something like that. I can't find where this is done in Safari.
    I have Tiger and Citrix 7.02 for Mac. G3 IMAC.
    Thank you

    jim,
    this was just discussed in this article.
    ibook g4     OSX.4.x

  • Open link from air for ios in safari

    Is it possible to open a link from stagewebview in safari? This is regarding AIR for iOS.

    I'm actually using stagewebviewbridge which extends stagewebview (but is much more excellent). it's got js to as and as to js communication and some other stuff that stagewebview can't do.

  • How to launch PDF in Acrobat from AIR app?

    I'm porting an AS3 app to AIR -- one of the requirements is that an external PDF file be launched with Acrobat -
    I know that  AIR can display PDFs internally, but it's too late to change project specs. 
    I was using fscommand and a .bat file (this will be run on Windows), but that won't work under AIR.
    I am currently using navigateToURL() and using the AIR-resolved url -- this opens the PDF in a browser -- I'd like to have it open in Acrobat.
    Thanks for any help -- this is critical to finishing project.

    This won't work on files in the application directory?   It's not working for me --  The PDF is bundled into the AIR app --
    See http://stackoverflow.com/questions/4050898/openwithdefaultapplication-fails-on-files-in-ap plication-folder

  • Launch apple store from AIR app (IOS)

    Hi,
    How I could launch the apple store from my flex AIR app? I need the tipical "go to app store" button...
    Thanks!
    Jorge

    You can go to a particular app in the app sotre by using navigateToURL function with the URL of the app as parameter. Please check this post: http://forums.adobe.com/message/4309691 But not sure how to open only the app store.

  • Send html email from AIR app

    Hi,
    We've successfully sent plain text email from our AIR application using navigateToUrl and the mailto protocol to launch the user's default email program, but if we try to use html markup in the body it gets sent as plain text.
    Is there any way to send an html email with navigateToUrl, or do we have to use an SMTP mailer? If the latter, is there support in AIR / Flex for SMTP, or do you have to use a 3rd party actionscript library?
    Thanks,
    Greg

    Hi Greg,
    It sounds like your email client is defaulting to plain text, maybe there's an option that would allow you to send emails as html?  Also, is the email body in encoded html?  Not sure how that encoding/decoding would be done using mailto links.
    AIR can do socket communication, so you could directly communicate with an SNTP server.  However you might want to look into third party libraries such as this one, to speed up your development time.
    Chris
    Ps. I don't have any experience with that third party library, maybe someone else with experience doing this could recommend other solutions.

  • Show an ico file in an HTML Air app

    Hi,
    I have an air app, of the HTML variety, and I'd like to be
    able to show .ico files in it.
    In Safari/Webkit you can do this:
    <img src="
    http://somedomain.com/favicon.ico"
    width="16" height="16" />
    But it doesn't work in Air.
    I've seen this Flex app that can render ico files:
    http://flexlib.googlecode.com/svn/trunk/examples/IconLoader/IconLoader_Sample.swf
    Using the IconLoader custom Flex Component:
    http://code.google.com/p/flexlib/wiki/ComponentList
    Is there a similar workaround that anyone knows?
    Thanks in advance

    The icon loading code you reference is ActionScript, so you
    could convert it into a utility for turning icons into png files --
    along with a PNG encoder, of course -- which is also available in
    an AS library on Google code. (You can load a SWF utility into a
    page using the script tag.) You could then load the converted png
    file for display.
    ASFAIK, the only way to bridge the image gap between
    ActionScript and JavaScript is through the HTML clipboard, and that
    requires a user-generated paste event before you can access
    it.

  • Parental (style) controls over open browser from Air app

    Hi,
    I've been asked an interesting question for a brief.
    Say you've got an Air app running and you have a browser window open is there any way for the Air app to 'see' what URL you are on.
    It's an app to stop the use of fraudulent web sites, so it would check against a database of flagged fraudulent sites and pop up an alert when the site is used.
    Any ideas?
    Cheers
    Marvin.

    Only if a Flash program in the web page actively sent the URL to the AIR app. I suppose you could also use some kind of browser extension but at that point, why use a separate AIR application?

  • Drag and drop file into Outlook from AIR application

    I am hoping to see if this would be possible with the Adobe AIR API. We currently have a desktop AIR application that clients install in order to facilitate certain operations triggered via a web application (such as opening files directly from the web).
    One of the actions we are requested to support is the ability to drag and drop files from our web application directly into Outlook and have the file added as an attachment. I saw the documentation at Adobe Flash Platform * Dropping file promises and was wondering if this might be a possibility, or if there was some other method of performing this.
    We are trying to get around the fact that users now have to download a document to their desktop before being able to attach in Outlook.
    Thanks for any assistance.

    You just aren't calling the right NativeDragManager functions. See http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7d83.html

  • Launching a PDF file to print using AIR 1.5/Flash AS2

    I have a flash SWF that I run as a AIR 1.5 desktop app. I want the user to be able to open a pdf file to print it. As it is now, I have flash call their browser to open the local PDF with a open url http://myfile.pdf. This works fine if their browser can open a pdf but one out of 3 of my test users can’t open it via the browser.
    How can I use AIR or their local PDF reader to open the pdf in order to print it?

    The title of your post suggests that you simply want to print the PDF.
    If so, just open it with Preview (the default), and print from there.
    And telling Word that the PDF is a Word file (which it is not), will just get Word confused, which would explain why you are getting error messages.

  • Printing HTML from AIR app

    What are the general rules to print an html content from an AIR application to make sure that the printout looks the same as printing it from the browser?
    Thanks

    Hi,
    This link might help you:
      http://dryicons.com/blog/2008/04/26/multiple-page-printing-from-a-html-adobe-air-applicati on/
    Thanks and Regards,
    Kanchan Ladwani | [email protected] | www.infocepts.com

  • External links from other apps do not start Safari

    Hello,
    I've set Safari for Windows as my default browser, but when I click external links in other applications, my previous default browser is launched.
    Any ideas as to what may be causing this issue?
    Thanks!

    This problem just started for me today. (I've been using Safari for Windows at work since its very first beta release.) Coincidentally (?) I just installed Firefox 3.0rc1 today. I can switch default browsers between FireFox, Opera, and Internet Explorer 7 just fine, but setting the default to Safari doesn't stick whether I set the default from within Safari Preferences or from Control Panel Add/Remove Programs.

  • Drag from AIR app to folder

    Hello,
    can someone show me a simple example how to drag a file from an AIR desktop app to a folder?
    What I'do like to archive is to let users draw inside a movieclip and onced finished they should be able to drag and save their image to a folder as a .JPG
    Is that possible?
    Thanks!

    Joe,
    That's what I was afraid of. Thanks for the help. I guess I'll start on a workaround.
    -Matt

  • Open links from other apps in Private Browsing

    When other Android apps open links in the default web browser, Firefox Mobile launches them in a normal new tab. How can I force these links to open in Private Browsing?

    I'm not aware of a built-in way to do this: as far as I can see, Firefox for Android cannot be set to create new tabs automatically in private browsing mode. I took a quick look at the Add-ons site and didn't see a solution there, either. Hopefully you will get some more promising responses.

Maybe you are looking for

  • Macbook pro 13inch freezing playing videos, please help!

    Hello all, Here is the scenario: I have a macbook pro 13" running windows 7 via bootcamp. Recently a window pops up telling me there was a major update available for bootcamp and some other stuff. I downloaded it right away. Even though I was running

  • TADM51_70  Certification Exam

    HI, Please let me know if anyone knows the Passing Marks/Percentages in the Associate Level TADM51_70 Certification exam. Thanks, Chandresh Pranami

  • A Sharing and Home Sharing Adventure

    I have a MacPro Desktop that holds a pretty huge iTunes library (35,500+ items). It's the mothership and is connected to my home network via ethernet. I have a Dell Media Center machine (Vista; also ethernet) hooked to the TV and basic home theater s

  • Can't watch flash video in epiphany

    I have epiphany, firefox, and flashplugin installed.  Flash works perfectly in firefox, but not in epiphany.  When I try to watch a flash video all I see is a black rectangle, and if I wait long enough I'll see what looks like a blue lego block with

  • Repeating events: have title option to auto add subsequent

    I'm having more and more scheduling of clients on packages that are 8, 12, 24 weeks, etc. It would so helpful to have the option to auto assign a subsequent number for each title in the repeat title where "John Doe X" is the title in your iCAL: 03/27