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

When I change the main project mxml file, then export it, the swf doesn't change, why?

$
0
0

I have an existing project from years ago that I need to modify, I am using Flash Builder 4. When I export the project it creates an swf file in bin-release, then when I modify the code in the project mxml file or any supporting files and export it the swf should change but it is not. Do you have any idea why this may be happening?

 

Thanks


Flash Builder 4.7 and iPad

$
0
0

Just using the trial version of FB 4.7 and having some great success. The question has been asked of me and I am not sure of the answer. Will a App built using FB 4.7 run on the iPad version of Safari and if so is there anything I need to address.

 

Sorry if this question has been asked before.

 

TIA

 

Steve

Text Field inconsistencies in the same Flash Player version

$
0
0

I have a project that uses a lot of text fields. Strings are loaded into dynamic text fields. I have a class that truncates the text that is too long for the text field.

 

The issue -

 

The text field is suppose to display two lines of text before truncating. For my current dev build the text is hardcoded, it's not external.

 

My Desktop displays TWO lines of text.

My Laptop displays ONE line of text.

 

On both machines I am viewing the SWF using the standalone Flash Player Debugger 16.0.0.235. I'm opening the SWF by double clicking and confirming it is running in the Flash Player Debugger 16.0.0.235.


Both machines have the same Mac OS.


It doesn't matter which machine compiles the SWF.

If I compile on my desktop it works as desired on my desktop but not my laptop.

If I compile on my laptop it works as desired on my desktop but not my laptop.

The Flash Builder projects are identically, both machines have the latest AIR SDK.


When I play the SWF inside of a browser it works as expected on both machines. The issue is isolated to the standalone Flash Player Debugger.

 

Does anyone have a clue why this is?

How to remove the purple band at the end with adobe premiere pro ?

$
0
0

Hi guys,

I am new to video editing and when I realize a project at the end of my video, I still have a purple band and I do not know how to remove it?

 

Can someone help me ?

 

Thanks <3

Sqlite with tables

$
0
0

Does anyoneusetheSQLitedatabase applicationwith severalrelatedtablesrelationally

How to target a minimum OSX version in Mac captive runtime bundle.

$
0
0

Greetings,

 

I'm working on an Adobe AIR for Desktop project that needs to require OSX 10.5 or greater on the Mac captive runtime bundle.  I can't seem to find any way to force this requirement with the adt packaging options or application.xml options.  Does anyone know of a way I might be able to accomplish this?

 

Thanks,

 

~Mike Z.

PHP in Flash Builder 4.6

$
0
0


Hi

 

I recently downloaded trial version of Flash Builder 4.6. does FB supports php/MySQL if so how do I install php framework in Fb 4.6.

 

please guide

 

Regards.

flash in a week adobetes.com not loading files

$
0
0

Hi All,

 

First time posting on here I'm currently trying to learn how to use Flash builder and have been going through the flash in a week course. It has been really good so far. However I'm not trying to connect to the server holding information for the course.

 

http://adobetes.com/f45iaw100/remoteData/employees.xml

 

I've pinged the server and it still exists. However it says the following when trying to load.

 

Bad Request (Invalid Hostname)

 

Does anyone have any solutions/do they know if the server is down. I found out that it is set to expire some time in 2015. Is this a dead technology now? From what I've read flex is meant to be more powerful for games which is what I'm interested in building.

 

Thank you in advance for any help,

 

Hendo


Error: This ANE does not support Desktop(Mac) platform

$
0
0

Hi,

 

I am using Adobe Flash Builder 4.7 Premium on OS X 10.8 and now I'm having problem

 

First I tried Adobe Native Extension from Gaming SDK, which I posted the problem here. I also found other posted about this error but I started to assume this might be caused by another factor.

 

For example, I tried Gyroscope ANE before on OS X 10.6 and 10.7. Everything goes fine. Until now, in OS X 10.8, I got this error: This ANE does not support Desktop(Mac) platform

As I posted screenshot below.

 

Screen Shot 2013-01-17 at 4.13.22 PM.png

 

I don't sure this issue caused from OS X 10.8 or not. I think you or someone can test this on OS X 10.7, Windows 7, and Windows 8, and comment below for succeed for failed using ANE on FB project.

 

Another assumption is ANE may build with different environment. But I don't know this would affect or not.

Save a SWFLoader content to disk

$
0
0

Hi toi everybody,

 

In an AIR project, I load in a SWFLoader component an external swf file which is a "template" thje user can modify (mainly changing content of text fields).

I would like to allow the user to save to teh disk the modified content of the SWFLoader keeping th swf format.

Is that possible ?

 

Thks in advance for your answers.

 

Bruno

How to use Flash Builder for Eclipse Luna ( is it possible??)

$
0
0

How to use Flash Builder  for Eclipse Luna ( is it possible??)

web browser inside web flash applications

$
0
0

Dear all, I need  web browser inside my web flash application.. i use Flash Builder.. i dont find a any straight way to do this.. i saw examples using iFrames.. cud anyone help with how to do this in the best way..?

Flash Builder 4.7 Upgrade license rejection

$
0
0

I recently purchases an upgrade license for Adobe Flash Builder 4.7.  The installer accepts my new serial number but then indicates a qualifying product cannot be found to upgrade.  It allows me to specify Adobe Flash Builder 4 Standard, and enter my old serial number, but subsequently rejects it with the following error message.

"This serial number is not for a qualifying product.  Please try another."

 

I have tried live chat support multiple times only to be told it is not available.  I have a valid licesene, so how do I get around this problem?

 

Note: It does this regardless of whether I try to install cleanly or on top of my older version.

Flex get number value from asp.net always get 0

$
0
0

Dear all,

In my project I have:

(1) one function in asp.net, which get the number of records from database.

(2) flex widget which pass the query string to asp.net web service and get the number of records from the query string.

The situation is:

I use the same query statement : "select count(*) as cnt from CUSTOMERS where CUSTOMER_NAME = 'Angela Tang'"

I can get the correct result from asp.net itself.

enter image description here

result:

<?xml version="1.0" encoding="UTF-8"?>

<intxmlns="http://tempuri.org/">2</int>

The code in flex is as follows:

var countSql:String="select count(*) as cnt from CUSTOMERS WHERE CUSTOMER_NAME = 'Angela Tang'";

var totalCount:int= ws.GetTotalCount(countSql);

Alert.show("final count = "+ totalCount.toString());

 

The getTotalCount method in asp.net is as follows:

 

<WebMethod> _
Public Function GetTotalCount(ByVal sqlQuery As String) As Integer

  Dim count As Integer

  Try
  conn.Open()
  If Not sqlQuery = Nothing Then
  cmd = New SqlCommand(sqlQuery, conn)
  reader = cmd.ExecuteReader()
  If reader.Read() Then
  count = reader("cnt")
  End If
  reader.Close()
  End If

  conn.Close()
  Catch ex As Exception
  Throw New ApplicationException("Error in collecting data from Database. Error is :" & ex.Message)
  End Try

  Return count
End Function

 

BUT in flex, I always get the totalCount value as 0.

I cannot figure out what is wrong, any idea on it? thanks a lot.

Is a Creative Cloud subscription required to use Flash Builder 4.7 Premium?

$
0
0

Hi,

I have FB 4.7 Premium (purchased an upgrade) and a Creative Cloud subscription. I don't need CC now, will I still be able to use FB after I cancel? I have looked all over Adobe sites and not found a clear answer to this....

Thanks,

Dave


iOS adhoc displays black screen after launch

$
0
0

Hi,

 

my iOS application displays black screen after slash screen.nothing happens and couldn't see any proper errors on debug utility.

I can build adhoc using flash builder and it's works fine but problem occurs when I create ipa using dumped config file on command line(ant)

I'm using flex sdk 4.6 and AirSDK 15.0(overladed) .my application includes few native extensions.

 

mxmlc

mxmlc -load-config app-config.xml src/mobapp.mxml -output myapp.swf

 

adt

<target name="build-release-adhoc-package-ipa">

    <echo>::building captive-runtime release-adhoc ipa..</echo>

    <exec executable="${FLEX_BIN}/adt" failonerror="true">

        <arg line="-package" />

        <arg line="-target ipa-ad-hoc" />

        <arg line="-storetype pkcs12" />

        <arg line="-keystore ${provision.dir}/release-adhoc.p12" />

        <arg line="-storepass 12345" />

        <arg line="-provisioning-profile ${provision.dir}/release_adhoc.mobileprovision" />

        <arg line="${adhoc.dir}/ios-adhoc.ipa" />

        <arg line="${src}/mobapp-app.xml" />

        <arg line="myapp.swf" />

        <arg line="${icon.dir}/applicationIcon16.png" />

        <arg line="${icon.dir}/applicationIcon32.png" />

        <arg line="${icon.dir}/applicationIcon36.png" />

        <arg line="${icon.dir}/applicationIcon48.png" />

        <arg line="${icon.dir}/applicationIcon57.png" />

        <arg line="${icon.dir}/applicationIcon72.png" />

        <arg line="${icon.dir}/applicationIcon76.png" />

        <arg line="${icon.dir}/applicationIcon114.png" />

        <arg line="${icon.dir}/applicationIcon120.png" />

        <arg line="${icon.dir}/applicationIcon128.png" />

        <arg line="${icon.dir}/applicationIcon152.png" />

        <arg line="${base.dir}/Default-568h@2x.png" />

        <arg line="-extdir ${src}/ane" />

        <arg line="-platformsdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPh oneOS.sdk" />

    </exec>

    </target>

 

please help.

the setup has detected that no version of extension builders

how can i stop my flash builder 4.6 from crashing at start up?

$
0
0

Good day, i have this issue of my flash builder 4.6 crashing at start up when the "Loading Workbench" appears, it seems not to go further. please someone help me

Flash Builder 4.7 crashes on startup

$
0
0

Flash Builder 4.7 does not start anymore.

 

System: OS X Yosemite 10.10.1

Java: version 1.8.0_25

License: Creative Cloud Membership

 

Console output:

07/01/15 12:21:25,876 Adobe Flash Builder 4.7[19199]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.1 instead of 10.10.1. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
Call location:
07/01/15 12:21:25,878 Adobe Flash Builder 4.7[19199]: 0   CarbonCore                          0x00007fff92f12dc3 ___Gestalt_SystemVersion_block_invoke + 113
07/01/15 12:21:25,878 Adobe Flash Builder 4.7[19199]: 1   libdispatch.dylib                   0x00007fff89667c13 _dispatch_client_callout + 8
07/01/15 12:21:25,878 Adobe Flash Builder 4.7[19199]: 2   libdispatch.dylib                   0x00007fff89667b26 dispatch_once_f + 117
07/01/15 12:21:25,878 Adobe Flash Builder 4.7[19199]: 3   CarbonCore                          0x00007fff92ebb4da _Gestalt_SystemVersion + 987
07/01/15 12:21:25,879 Adobe Flash Builder 4.7[19199]: 4   CarbonCore                          0x00007fff92ebb0c7 Gestalt + 144
07/01/15 12:21:25,879 Adobe Flash Builder 4.7[19199]: 5   Adobe Flash Builder 4.7             0x0000000100001a5d main + 50
07/01/15 12:21:25,879 Adobe Flash Builder 4.7[19199]: 6   Adobe Flash Builder 4.7             0x00000001000010d5 _start + 227
07/01/15 12:21:26,132 Adobe Flash Builder 4.7[19199]: Unrecognized Java VM option ignored: -Xdock:name=Flash Builder
07/01/15 12:21:26,132 Adobe Flash Builder 4.7[19199]: Unrecognized Java VM option ignored: -Xdock:icon=../Resources/fb_app.icns
07/01/15 12:21:26,132 Adobe Flash Builder 4.7[19199]: Unrecognized Java VM option ignored: -XstartOnFirstThread
07/01/15 12:21:37,280 AdobeCrashDaemon[19204]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.1 instead of 10.10.1. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
Call location:
07/01/15 12:21:37,281 AdobeCrashDaemon[19204]: 0   CarbonCore                          0x00007fff92f12dc3 ___Gestalt_SystemVersion_block_invoke + 113
07/01/15 12:21:37,281 AdobeCrashDaemon[19204]: 1   libdispatch.dylib                   0x00007fff89667c13 _dispatch_client_callout + 8
07/01/15 12:21:37,281 AdobeCrashDaemon[19204]: 2   libdispatch.dylib                   0x00007fff89667b26 dispatch_once_f + 117
07/01/15 12:21:37,281 AdobeCrashDaemon[19204]: 3   CarbonCore                          0x00007fff92ebb4da _Gestalt_SystemVersion + 987
07/01/15 12:21:37,281 AdobeCrashDaemon[19204]: 4   CarbonCore                          0x00007fff92ebb0c7 Gestalt + 144
07/01/15 12:21:37,281 AdobeCrashDaemon[19204]: 5   AdobeCrashDaemon                    0x0000000100002e69 -[MyDaemon GetOSVersionMajor] + 33
07/01/15 12:21:37,282 AdobeCrashDaemon[19204]: 6   AdobeCrashDaemon                    0x0000000100002d4a -[MyDaemon isRunningOnLeopard] + 25

 

I've red somewhere that FB needs Java v1.6. Can this be the reason? How to run 1.6 and 1.8 in parallel on a Mac?

Gaming SDK ANEs need rebuilding for 64 bit iOS

$
0
0

The ANEs (ActionScript native extensions) included in the Gaming SDK are currently not compatible with AIR 16 or with iOS 64 bit. Unless there is an update very soon, we will be unable to create apps for the App Store at the end of January 2015.

 

Could you please indicate if and when an update to the ANEs is planned?

 

Thanks

Dave

Viewing all 1802 articles
Browse latest View live


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