Quantcast
Channel: Adobe Community : Discussion List - Using Flash Builder
Viewing all 1802 articles
Browse latest View live

Using BlueTooth Joystick from PS3?

$
0
0

Hello,

 

I'm porting a game from web to mobile.

I ant to be able to let the user use a joystick if they have one.

Anyone know where I can find how to get bluetooth joysticks working with mobile?

 

,Jim


What does it mean when it says it can't read your audio file on Flash CS4, because I'm using a working audio file and it is a supported file type?

Flash Builder 4.6 on Mac Lion 10.7.5: can't run installer: Certificate Revoked

$
0
0

Hello,

 

Are you aware of the fact that FB 4.6 is not installing anymore on OS X 10.7.5 and maybe OS X in general ?

 

 

Since I really need Design View that latest FB doesn't offer, I've just downloaded FB 4.6 for OS X at Adobe: Adobe - Adobe Flash Builder 4 : For Macintosh : Flash Builder 4.6 - Mac OS : Thank You

 

My actual OS X is 10.7.5, Lion.

 

Launching the install.app, it appears an error window:

Please be aware that I know this message is coming from Gatekeeper, see for instance: OS X: About Gatekeeper

The point is that this particular problem isn't solvable, apparently.

The problem is related with the certificate signing the app, as you can see issuing the command:

bash-3.2# spctl -a Install.app

Install.app: CSSMERR_TP_CERT_REVOKED

 

So, here we have a _revoked_ certificate, not an unknown certificate/developer, or unsigned app.

In fact, unfortunately this problem persists even disabling Gatekeeper:

bash-3.2# spctl --status

assessments disabled

 

since apparently a revoked certificate is not an error that can be ignored or circumvented in any way.

AFAIK, the idea behind this is: Apple actually don't provide any quality check on apps (they are not "approved by") but can eventually (IF there are "problems") block one through the revoking mechanism. Because of that, the _revoked?_  check can't be circumvented/disabled. I will try ASAP an OS upgrade to verify if with Mountain Lion (10.8) I can eventually force executing Install.app, but chances seem scarce till now.

 

So, Adobe can you please help me ?

Maybe signing with a valid certificate this installer...

FB4.6 is essential as it is the last version with DV. I had to install FB46 on Windows to keep on working, but this is definitely slowing me down as everything else is on Mac.

 

BR,

 

a pro developer.

Adding "open in" functionality on iPad

$
0
0

Hello,

i use StageWebView to display a pdf that is created by my application. The created pdf gets displayed fine. But, I would like to add the functionality, that would allow to "open in" other applications that can open .pdf files.

 

How do I do this from actionscript?

 

Any suggestions appreciated.

thx

Flash Builder crashes on loading Workbench - Mac 10.7.4

$
0
0

Flash Builder crashes whenever it starts loading the workbench. Is there anyway to fix this? I searched for a possible solution and only found one, cleaning the workspace. I would try it if I knew where to go. This happened all of the sudden and I did nothing to flash builder previously.

How to change default white background StageWebView Flex Mobile?

$
0
0

My problem is, that my app has black background. I inserted webview for showing HTML page, but when page is loading, background of webview is white. I need to have black background because app and page has black background. Is it possible? I found answers only for Android, but no for Flash Builder Mobile.

I tried set this in additional compiler arguments -default-background-color #000000 , but nothing happened.

 

Thank for advices

flash builder error #3500

$
0
0

It is apparently impossible to use flash builder in conjunction with air native extensions on OSX.

 

Creating the extension context works without complaint, but calling any of the functions provided

results in "error #3500: The extension context does not have a method named ..."

 

It cost me a lot of time (and therefore my company's money) to discover that the ANE is actually fine, and can be

invoked outside of flash builder, by an appropriate command line, or by packaging a release executable.

 

This total package of behavior is very unsatisfactory, and has been known about for at least two years.

Even with the workaround (release packaging, or invoking using a command line) the workflow is

severely degraded.

 

--

for reference, the most helpful explanation of the workaround is at this URL

http://riawanderer.com/2012/03/27/working-with-air-native-extensions-on-the-mac/       *note the date of this post!*

 

then search for the panel that follows the text

"Now that simple demo code is ready, let’s run and see what does it do. When you run the app you should see below error indicating that Flex Builder Bug exists :)."

Video Chat Application : Problem downstream on ios device

$
0
0

Hi

 

     I made real time video chat application between mobile (ios and android device with flash builder 4.7 on flex 4.6.0 and adobe air 15) and flash desktop website (flash builder 4.6, on flex 4.6.0 air 4.0).   It's almost done, but there is a problem only ios device subscribe stream is very lag for the first time that video streaming start.   Sometime it is stop for several time before it can be play that stream. I find the cause of it such as network, flash desktop build version, buffer (it's very smooth but there is problem when you press home button while using video chat, It's stream is gone T^T)

 

I have the example of downstream :

 

// ------------ sample code that using netstream ------------

 

if(subscribeNetStream == null)

  subscribeNetStream = new NetStream(subscribeNetConnection);

 

  trace("Initial for playing agent video")

  subscribeNetStream.client = {onMetaData:function(obj:Object):void{}};

 

  // display metadata

  var clientMetaData:Object = new Object();

  clientMetaData.onMetaData = function(info:Object):void{

  trace("onMetaData");

  // print debug information about the metaData

  for (var propName:String in info){

  trace("  "+propName + " = " + info[propName]);

  }

  };

 

  subscribeNetStream.client = clientMetaData;

 

  // trace the NetStream status information

  subscribeNetStream.addEventListener(NetStatusEvent.NET_STATUS, subscribeNetStatusHandler);

 

  // set the buffer time to zero since it is chat

  subscribeNetStream.bufferTime = 0;

 

  // subscribe to the named stream

  subscribeNetStream.play("Stream_name");

 

  // attach to the stream

  if(!videoSubscriber){

  videoSubscriber = new Video(uicAgent.width, uicAgent.height);

  }

 

  videoSubscriber.attachNetStream(subscribeNetStream);

  uicAgent.addChild(videoSubscriber);

 

------------------- netstream/netconnection handle method ----------------------------

 

privatefunction subscribeNetStatusHandler(event:NetStatusEvent):void{

  trace(event.currentTarget+" : "+event.info.clientid+" : Subscribe netStatus = "+event.info.code+"\n "+event.info.description);

  switch(event.info.code) {

 

  case"NetConnection.Connect.Success":

  {

  trace("Success to play");

  playStream();

  break;

  }

  case"NetStream.Buffer.Empty" :

  {

  if(holdingNetStream)

  holdingNetStream.seek(0);

  }

  default:

  {

  break;

  }

  }

  }

 

// --------- End of sample code ------------------

 

I have no idea for solving this problem please suggest me

 

Thank you

 

Pornphop Sudpan


XML or Sql or ??

$
0
0

Hi

 

I'm developing my first app for iOS using Flashbuilder 4.6 and need to have a database to keep track of certain items, probably no more than 20 items per record (including username and password) in a single table for a single user. 

 

I don't want to use server technology but want to keep the data on the device.   My question is should I use XML or SQL or some other way to store the data on the device.

 

Any guidance would be appreciated.

 

Thanks.

just bought 4.7 and have not seen anywhere/anyway to contact technical support - we have a website www.appliedseismicresearch.com that has an animation on it we paid to have made; bought 4.7 in hopes of building one like it to put in powerpoint but no clu

$
0
0

just bought 4.7 and have not seen anywhere/anyway to contact technical support - we have a website www.appliedseismicresearch.com that has an animation on it we paid to have made; bought 4.7 in hopes of building one like it to put in powerpoint but no clue how to start building it, help!Using Flash Builder

How to remowe watermark from charts?

$
0
0

Hi,

 

I buy Adobe Flash Builder 4.7 Standard. But when I try use charts or AdvancedGridData I have a watermark: Flex Data Vizualization Trial. How can I remove this watermark from my program?

 

Thanks for help.

 

Best regards

 

Janusz

How do I deactivate Flash Builder AFTER System Upgrade or new hardware (harddisk) installation?

$
0
0

When a machine with a Flashbuilder installation crashes or is wiped or when a harddisk is replaced etc. I have not found a way to get the deactivate menu item active again... So is this activation lost forever?

app ios from flash builder add appStore problem

$
0
0

I create anappsiOS FB4.7withApacheFlexsdk4.11.0FP12.0AIR4.0en_USI have a problemwith addingit to theAppStore.Gets amessagethe error message: ERROR ITMS-9000: "No architectures in the binary. Lipo failed to detect any architectures in the bundle executable.". Whetherit mayhavea relationshipwith the newAppleSDK8? Could there beanother reason?

 

#2032 error observed while launching flex based application from the standalone machine.

$
0
0

We trying to launch flex based application deployed on weblogic on RHEL 6.4 OS with flash version 15.0, found #2032 error on UI. Request help us on this scenario.

navigateToURL not working

$
0
0

The function navigateToURL() is inactive since one week. It does work for the redirection between the other pages of the application but not for opening a folder or a file on the windows computer.


Can Flash Builder create HTML/Javascript AIR applications?

$
0
0

Hi,

 

In the past I have used Flex Builder to create AIR applications and I am looking at creating AIR applications with HTML and Javascript and I am wondering if I can do this in the new version of Flash Builder?  I know that Dreamweaver can do this, but not sure about Flash Builder.  I know that Aptana Studio could do this with version 2, but it is no longer in version 3.

 

So in a nutshell, can I create HTML/Javascript AIR applications with Flash Builder or do I need Dreamweaver?

 

Cheers,

Chris

Error using NetMonitor

$
0
0

Why there is an error when I use the

next string -

       import flash.net.NetMonitor;

In response, wavy red Lin

       Flas h Builder 4.5 the import could not be found

       "Unable to find a definition flash.net:NetMonitor"

Please help.

buttons became inactive Flash Builder 4.7

$
0
0

Hello !

 

I realized an application on Flash Builder 4.7. This application has links which dismissals(cross-references) towards plans, maps of various formats (.tif, .dwg...).

 

it is situated on a server (Windows 2008) and since a few days, buttons became inactive for those who point at a file (\\ localhost\SIG\image.tif, for example) but continue to work on links URL (http://SIG/...).

 

Yet, no evolution of program was recently realized.

 

Further to the tests that I realized, I wonder if that would not come from updates Windows.

Indeed, buttons are inactive on all the PC (Windows 7) which undergo updates frequently. Only my computer PC (Windows XP), connected to no network (except in this case of test) downloads no update and the application works correctly (buttons open the window to 'Download' or to 'Open').

Maybe that I get lost

 

After multitude of researches, I don't too much know what to do any more. Would anybody have had this problem? Does he know how to solve it?

 

Thank you in advance for your help. And sorry for my English.

 

Good day in all

loader.loadFilePromise(mediaPromise);air15.0.0.302 for ios flash back,why?

$
0
0

loader.loadFilePromise(mediaPromise);air15.0.0.302 for ios flash back

is it possible to switch the stage from one class... to another?

$
0
0

I am new to Flash Builder and AS3.  I have a general architectural question... that leads to a more specific one.

 

I am creating an iOS app for my business... I want to have a homepage with multiple buttons... each button is to take me to a different page... on these pages, I will have drop down menus that will allow me to access a database...

 

I have started with one .as file (Main.as)... where I create the buttons... and add the event listeners for each button...

 

What I wanted to do was to have each event listener (button click) instantiate a new class (which would be in a separate .as file).  These new classes would create a new page... and have it's own event listeners.... but, this doesn't seem to work since the stage is attached only to Main.as... so, I am a little confused as to why this is the case... and about finding a workaround... it just seems really cumbersome to have everything located in the same file... in the same Class...

Viewing all 1802 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>