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

How download previous flash builder versions? 4.6...

$
0
0

How do I download previous versions of flash builder?  I thought we had access to all versions going back to CS6 for all the CC applications.

Only thing showing is 4.7 and in the desktop app when I select show previous versions flash builder is not listed at all.


Help Please

$
0
0

Hello, I am using a Chrome book and have the Chrome os and use Google chrome I play Facebooks Farmville and I have a lot of crashes and reload game ..my version of flashplayer is 19.0.0.245 can anyone help this is really frustrating and I don'tt know how to install a new browser..I tried to with firefox but they said I needed a communicator. I don't know how to do this lol..can u help me

ecrans de smarts

$
0
0

Nous avons développé, avec succès, une application sur Flash Builder.tournant sur mobiles/GSM.

Mais les nouveaux smarts à haute résolution d'écran affichent les textes avec une petitesse incroyable: ils sont illisibles, et les boutons inemployables.

Cela a t il été résolu?
Où trouver la solution?

Merci

Error Creating native extension file: Failed to load air runtime?

$
0
0

Flash Builder 4.7:

App: desktop mack

Message appears when i try to release

design view FB 4.7

$
0
0

Hello guys,
My company , we have developed apps using Flash Builder 4.6 but would like to update our licenses for 4.7 but are very dependent on the design view we love to use this tool . The Adobe plans to return to the design view in other versions or even enable on FB 4.7?

Shockwave Flash Crash - Please HELP!

How to resolve 'Flex data Visualization Trial’ ' ,please suggest

$
0
0

Hi

 

We have an application developed using the lisenced version of Flash builder ,when I run the application there is a message on the application  'Flex data Visualization Trial’ .

I checked several forums but none of them provide a concrete solution.

Implemented the solutions suggested over internet but none of them works.

Could you please let me know how to resolve the issue

 

best regards

Sorting and grouping using flash builder

$
0
0

We are facing an issue when we enable sorting and grouping for a columns of the table.

 

When we enable both, it groups the data successfully but does not sort it.

Upon refreshing it, the data gets sorted.

 

I have observed that same flow of code is executed when we load data or refresh data.

The data groups and sorts while refreshing whereas it does not sort and only group while loading.

 

Following code snippet for your reference:

public function displayTable():void{

 

  //to showing columns in order

  //sortColumns();

  Alert.show("TabContent=>displayTable Begins");

  CursorManager.setBusyCursor();

  loading = true;

 

  try{

  var dgc:MDataGridColumn;

  var aColumnsNew:Array = new Array(); //grid.columns;

 

  var sortList:ArrayCollection = new ArrayCollection();

 

  var groupingApplied:Boolean = false;

 

  for(var i:Number = 0;i <report.columns.length; i++){

  var col:ReportColumn = report.columns[i] as ReportColumn;

 

 

 

  if(col.groupEnabled)

  groupingApplied = true;

 

 

  dgc= new MDataGridColumn(col);

 

 

  if(col.columnSortNumber>=0){

  sortList.addItem(col);

  Alert.show("Sorted Column: " +col.columnName + "at index :" + (col.columnSortNumber));

  }

 

  if(col.filterType==null || col.filterType.length==0 || groupingApplied){

  dgc.headerRenderer = new ClassFactory(AdvancedDataGridHeaderRenderer);

  }

 

 

  dgc.dataField = col.columnName;

  dgc.headerText = col.columnLable;

  dgc.width = col.columnWidth;

  dgc.visible = col.visible;

  dgc.setStyle("textAlign", col.textAlign);

 

 

  if((col.drillDown!=null && col.drillDown.length >0) || (col.ToDrilldownType!="R" && col.drillDownField!=null && col.drillDownField.length>0)){

 

  var drillItemRendererFactory:ClassFactory = new ClassFactory(GridDrilldownItemRenderer);

  drillItemRendererFactory.properties = {col:col, mainApp:this};

  dgc.itemRenderer = drillItemRendererFactory;

  }

  else if(col.condFormats.condition!=null && col.condFormats.condition.length>0 && col.condFormats.value1!=null && col.condFormats.value1.length>0){

  var condItemRendererFactory:ClassFactory = new ClassFactory(CondFormatRenderer);

  condItemRendererFactory.properties = {col:col}

  dgc.itemRenderer = condItemRendererFactory;

  }

  else if(col.subTotalAggr!=null && col.subTotalAggr.length>0){

  var summaryItemRendererFactory:ClassFactory = new ClassFactory(SummaryItemRenderer);

  summaryItemRendererFactory.properties = {col:col}

  dgc.itemRenderer = summaryItemRendererFactory;

  }

 

 

  //Grand Totals

  if(col.visible){

  var gc:AdvancedDataGridColumn = new AdvancedDataGridColumn();

  gc.dataField = col.columnName;

  gc.headerText = col.columnLable;

  gc.width = col.columnWidth;

 

  gc.visible = col.visible;

  gc.setStyle("textAlign", col.textAlign);

 

 

  if(col.grandTotalAggr!=null && col.grandTotalAggr.length>0){

  if("SUM"==col.grandTotalAggr)

  gc.labelFunction = sumFunction;

  else if("AVG"==col.grandTotalAggr)

  gc.labelFunction = averageFunction;

  else if("COUNT"==col.grandTotalAggr)

  gc.labelFunction = countFunction;

  else if("MIN"==col.grandTotalAggr)

  gc.labelFunction = minFunction;

  else if("MAX"==col.grandTotalAggr)

  gc.labelFunction = maxFunction;

  }

 

  dgc.footerColumn = gc;

  }

 

  dgc.formatter = col._formatter;

 

  if(!col.groupEnabled){

  if(col.filterType=="W"){

  dgc.filterEditor=new ClassFactory(com.rwb.controls.dataGridClasses.filterEditors.WildcardFilterEditor);

  }

  else if(col.filterType=="N")

  dgc.filterEditor=new ClassFactory(com.rwb.controls.dataGridClasses.filterEditors.NumberRangeFilterEditor);

  else if(col.filterType=="NS")

  dgc.filterEditor=new ClassFactory(com.rwb.controls.dataGridClasses.filterEditors.SliderFilterEditor);

  else if(col.filterType=="DL")

  dgc.filterEditor=new ClassFactory(com.rwb.controls.dataGridClasses.filterEditors.MultipleChoiceFilterEditor);

  else if(col.filterType=="D"){

  dgc.filterEditor = new ClassFactory(com.rwb.controls.dataGridClasses.filterEditors.DateRangeFilterEditor);

  }

  else if(col.filterType=="DC")

  dgc.filterEditor=new ClassFactory(com.rwb.controls.dataGridClasses.filterEditors.DateChooserFilterEditor);

  }

 

  aColumnsNew.push(dgc);

  //}

  }

 

  Alert.show("displayTable call sortList length:  " + sortList.length);

  setDataProvider(aColumnsNew);

 

  try{

  if(sortList.length>0){

  var dataSortField:SortField = new SortField();

  dataSortField.name = "columnSortNumber";

  dataSortField.numeric = true;

  var numericDataSort:Sort = new Sort();

  numericDataSort.fields = [dataSortField];

  sortList.sort = numericDataSort;

  sortList.refresh();

 

 

 

  var sortList1:ArrayList = new ArrayList();

  for(var i:Number = 0;i <sortList.length; i++){

 

  var col:ReportColumn = sortList[i] as ReportColumn;

  Alert.show("displayTable: sortList -> i val:" + i +  " columnName: " + col.columnName + " columnDataType " + col.columnDataType);

  var sf:SortField = null;

  if(col.columnDataType=="NUMBER" || col.columnDataType=="DATE"){

  sf = new SortField(col.columnName);

  sf.name = col.columnName;

  sf.numeric = true;

  sf.descending = (col.columnSortType=="ASC" ? false : true);

  }

  else{

  sf = new SortField(col.columnName, true,(col.columnSortType=="ASC" ? false :true));

  }

 

  sortList1.addItem(sf);

  Alert.show("displayTable: added item = " + sortList1.getItemAt(0));

 

 

  }

 

  var sort:Sort = new Sort();

  sort.fields =  sortList1.toArray();

  grid.dataProvider.sort  = sort;

  grid.dataProvider.refresh();

 

 

  }

 

 

 

  }catch(e:Error){}

 

 

  var filtersExecuted:Boolean =  grid.applyFilters();

 

  }catch(e:Error){

  Alert.show(e.message);

 

  }

 

  CursorManager.removeBusyCursor()

  loading = false;

 

  Alert.show("TabContent->displayTable Ends");

  }

 

 

Kindly suggest.

 

Regards,

Ravi.


Formula input

$
0
0

I am using flash cs5.5 and want to make a screen with a text box where if the user enters (3*2)+(4*7) or any other expression, it calculates using BODMAS rule. Kindly help.

download flash builder 4.7 using a license key

$
0
0

How can I download Flash Builder 4.7 using a license key?

 

Thanks

How do I activate a stand alone version of Flash Builder 4.7 Premium Edition?

$
0
0

When I launch FB 4.7, it keeps loading Adobe Application Manager and asks me for my Creative Cloud membership, but I only have a license for stand-alone FB 4.7 Premium Edition not Creative Cloud?

'Finding occurrences' has encountered a problem

$
0
0

Hello,

 

I am getting constant errors with 'finding occurrences" while editing code in Flash Builder 4.7 beta. The errors occur while "mark occurrences" is turned on, but only affect certain variables in some classes. I haven't figured out a pattern to why this happens.

 

In details, the error given is

"An internal error occurred during: "Finding occurrences".

java.lang.NullPointerException"

 

I have no idea what started this problem; it seems like a bug. Anyone else experience this?

Flash Player & MAC

$
0
0

I am trying to stream DirecTV on my MAC.  I have Adobe Flashplayer installed, checked to ensure I have the latest version and gone through the troubleshooting guide to enable it.  Still when I stream a show it tells me to refresh the Flashplayer.  That does not work.

Flash In PDF

$
0
0

Could it be possible to embed a flash object into a PDF?

Loading swf with SharedFonts

$
0
0

I had setup a bug report a while ago without too much luck.  The bug is here -> Bug#3334319 - [Platform_Windows]Loading SWF's with imported runtime shared fonts

I was directed to report to to the Flash Builder bug site but I can't seem to find it. It also doesn't seem to make sense that there is an issue with Flash Builder when its being created by Flash Pro and being ran by an Air application.  It works fine in our normal swf.

 

Either way, it has been a while and I was hoping that someone might have come up with the solution to this problem or can at least direct me in the proper direction.

 

Thanks!!


Hi, How do I display the Components view in Flashbuilder? Also, i'm creating a flew mobile project and would like to display an image on application launch. Thanks in Advance

$
0
0

Hi all.

 

The components view option is not available. Where can I find this option?

 

Thank You

Is have flash builder compatible eclipse 64bit?

Flash Builder 4.7 Premium compatibility problem with OSX 10.11 El Capitan

$
0
0

There are compatibility problemas with Max OSX 10.11.2 and Flash Builder 4.7 Premium.

Will there be any update? Why the Package boxes are black? As well as the first window when compiling the App.

I pay monthly fees for using Adobe products and may expect a working system.

flashbuilder.png

Adobe Air SDK 20 is not accepted by Apple

$
0
0

I downloaded the new Adobe Air SDK 20 and built my OSX App.

First of all the file inside is different and there is no instruction how to sign the file in the right way. Finally I solved the signing problem, and I was able to send the App to the Mac OSX AppStore.

But then Apple rejected the App, see below. I pay monthly fees for using Adobe products and there is absolutely no support and updates only causes headache.

Please fix this bug or tell me how to codesign an application correctly with SDK 20.

January 7, 2016 at 10:01 PM

Apple

  • 2.5-Apps that use non-public APIs will be rejected

2.5

 

The use of non-public APIs can lead to a poor user experience should these APIs change in the future, and is therefore not permitted. The following non-public APIs are included in your application:

 

'/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit'
: OBJC_IVAR_$_NSView._bounds
: OBJC_IVAR_$_NSWindow._frame

 

If you have defined methods in your source code with the same names as the above-mentioned APIs, we suggest altering your method names so that they no longer collide with Apple's private APIs to avoid your application being flagged in future submissions.

 

Additionally, one or more of the above-mentioned APIs may reside in a library included with your application. If you do not have access to the library's source, you may be able to search the compiled binary using "strings" or "otool" command line tools. The "strings" tool can output a list of the methods that the library calls and "otool -ov" will output the Objective-C class structures and their defined methods. These techniques can help you narrow down where the problematic code resides.

 

If you are unable to reproduce this issue, ensure you are testing the exact version of the app that you submitted for review, and that you're doing so in a minimally privileged environment. See Technical Q&A QA1778: How to reproduce bugs reported against Mac App Store submissions.

 

For information on how to symbolicate and read a crash log, please see Technical Note TN2123 - CrashReporter.

Multiple Audio Outputs - Multiple Room Media Playback - Choose Audio Playback Device

$
0
0

Hi,

 

I've been tasked with building an Audio/Video player using Adobe Air that can send either Video, Audio, or Both to separate rooms.

 

Accessing the screens is quite easy using the Screens class. So, I have no problem sending separate videos to the separate displays in each room.

 

The second half, however, is proving to be much more difficult. I also need to send the associated audio for the videos to the audio output devices located in each room. I had hoped that there would be an Audio device array, much as there is a Video device array (in Screens). That doesn't appear to be the case though.

 

I have 4 audio output devices (sets of speakers) currently set up to playback the audio for each screen in each room. The setup works fine in Windows, so I know the hardware and devices are correct. Is there a method that I am missing that would allow me to send audio to the various audio devices connected to the system?

 

Thanks!

Viewing all 1802 articles
Browse latest View live


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