Questions tagged [flex4.6]

Flex 4.6 is for issues in version 4.6 of the Flex SDK, an open source framework for building and maintaining mobile and web applications that deploy consistently on all major browsers, desktops and operating systems.

Flex 4.6 is for issues in version 4.6 of the Flex SDK. Flex SDK is an open source framework for building and maintaining mobile applications and also web applications that deploy consistently on all major browsers, desktops and operating systems.

In November 2011 Adobe released Flex SDK update 4.6. And it is for rapid Rich Internet Application development and mobile application development which runs on Flash Player or Adobe .

342 questions
1
vote
1 answer

Flex: when to create a custom component and when to create a skin?

I don't see the difference between both cases. It began when I wanted to have some special list (e.g. with some navigation or title on the top). But then I didn't know what to do, should I extend List and override some methods, or should I simply…
1
vote
1 answer

Flex Mobile: TabbedViewNavigatorApplication with tab on top (Android style)?

Working on an Android app with FB 4.6, I would like to have the tabbar on top of the screen. Moreover, I would like to have the so called 'TitleBar', at the bottom of the screen and the possibility to change it's visibility. In some case, I want the…
Pascal
  • 15,257
  • 2
  • 52
  • 65
1
vote
2 answers

cannot find mx:DateChooser in Flash Builder 4.6

http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7d9b.html#WS2db454920e96a9e51e63e3d11c0bf63b33-7fd3 Shows that mx:DateChooser control can be used in Flash Builder 4.6 I cannot find it in the codehint. Please advise on how…
Kim Stacks
  • 10,202
  • 35
  • 151
  • 282
1
vote
1 answer

Flex 4.6 hostComponent no longer Works?

hostComponent seems to have stopped working as it used to before. If I create a custom comp based on lets say SkinnableContainer and apply default skin I am unable to see co hinting for Bindable/public variables from the skin. Code below to…
DominicM
  • 6,520
  • 13
  • 39
  • 60
1
vote
1 answer

Flex 4.6 Scroller - Is it possible to disable scrolling temporarily through Actionscript?

I am trying to make a mobile app that would allow a drag and drop of certain elements using startDrag() and stopDrag(). These elements are enclosed inside of a spark scroller. I would like to disable the scroller when someone is interacting with…
treylok
  • 13
  • 1
  • 4
1
vote
1 answer

Flex 4.6: How does Air Application writes flat image like qemu-img?

I would like to write and update a flat image like qemu-img. I have coded this fsFile.as package com.bytehost.snakemedia.utils { import flash.utils.ByteArray; public class fsFile { private var _fsFilename:String; private var…
SourceSkyBoxer
  • 141
  • 1
  • 8
1
vote
1 answer

Key Events not registering in Flex AS3

I'm currently working on a project using ActionScript 3 in Flex 4.6. I was having trouble making any key events register in my script (though mouse events were fine), and debugging lead to some very bizarre results. First of all, this is my test…
Vladimir Shevyakov
  • 2,511
  • 4
  • 19
  • 40
1
vote
1 answer

Using mx.charts in a Flex mobile project

Adobe states that Charts are supported in mobile projects but when I try to change the following working files (created project with File - New - Flex Mobile Project - Google Nexus One): MyTest.mxml:
Alexander Farber
  • 21,519
  • 75
  • 241
  • 416
1
vote
0 answers

Get filerefrence full save path in Flex

I am making an audio recorder web application, which records audio and saves it locally using FileReference: private var _file:FileReference = new FileReference(); After recording, the user can save the file locally like: _file.save( data,…
ketan
  • 19,129
  • 42
  • 60
  • 98
1
vote
1 answer

Flex Text html format conversion to HTML

I have an application where you can configure some pages using the RichTextEditor and storing the resulting HTML Text Flow to database to use later... If I import the saved datas to Flex using a RichEditableText there is no problem at all and I see…
Marcx
  • 6,806
  • 5
  • 46
  • 69
1
vote
1 answer

flex: how to embed fonts for Spark FormItem?

Here is my CSS (flex4.6) /* CSS file */ @namespace mx "library://ns.adobe.com/flex/mx"; @namespace s "library://ns.adobe.com/flex/spark"; @font-face { src:url("assets/MyriadWebPro.ttf"); fontFamily: myCFFFont; embedAsCFF:…
yarek
  • 11,278
  • 30
  • 120
  • 219
1
vote
5 answers

How to capitalise the first letter of every word in a string

I am using the Flex SDK and able to capitalise the first letter of every word as follows: textInput.text.toLowerCase().replace(/\b./g,function(...m):String{return m[0].toUpperCase()}) This works fine, however letters after punctuation are also…
Reado
  • 1,412
  • 5
  • 21
  • 51
1
vote
1 answer

Flash update 12 broke my video recorder

When flash pushed the 12.0.0.70 version to Chrome it broke my video recorder. According to the patch notes here, one thing was changed that might have broken my flash-based recorder [3689061] [Video] Resolves an issue injected in Flash Player …
user773737
1
vote
2 answers

Using a TabbedViewNavigator inside of a TitleWindow

I'm making a Flex mobile 4.6 application, which is ViewNavigatorApplication (not sure if this has any consequences on the following). This app has a customized ActionBar, visible in the screenshot below. Troubles starts here: I want to use a…
1
vote
1 answer

streaming video player / attaching video(not camera) to NetStream in actionscript 3

I am new to actionscript, basically i am trying to stream video player but we can't use attachVideo in as3 so what can i use instead of attachVideo in following code? Im using flash builder/flex 4.6 . If you could suggest link/tutorial for streaming…