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

I know it is too simple but??

Explorer ,
May 28, 2010 May 28, 2010

Copy link to clipboard

Copied

What is the equivalent in Flashbuilder 4?

<a href="http://www.adobe.com" target="_blank">Link</a>

The end result is to have a button or link in Flashbuiler to have CF 9 create pdf or excel files then show the pdf or excel to download or print.

Views

363

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

correct answers 1 Correct answer

Engaged , May 28, 2010 May 28, 2010

//drag a link button into your project

//add this to the mxml

click="openWebLink(event)"

//in a script block add this

private function openWebLink(event:MouseEvent):void

{

     var http:String = "http://"

     var site:String = www.adobe.com

     var urlRequest:URLRequest = new URLRequest(http + site)

     navigateToURL(urlRequest)

}

//If it the IDE bugs you, import

import flash.events.MouseEvent;
import flash.net.navigateToURL;

Votes

Translate

Translate
Engaged ,
May 28, 2010 May 28, 2010

Copy link to clipboard

Copied

You're trying to make a pop up window?

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
Engaged ,
May 28, 2010 May 28, 2010

Copy link to clipboard

Copied

//drag a link button into your project

//add this to the mxml

click="openWebLink(event)"

//in a script block add this

private function openWebLink(event:MouseEvent):void

{

     var http:String = "http://"

     var site:String = www.adobe.com

     var urlRequest:URLRequest = new URLRequest(http + site)

     navigateToURL(urlRequest)

}

//If it the IDE bugs you, import

import flash.events.MouseEvent;
import flash.net.navigateToURL;

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
Explorer ,
May 28, 2010 May 28, 2010

Copy link to clipboard

Copied

LATEST

Thank you!!

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