Click here to Skip to main content
15,892,059 members
Everything / Flex

Flex

Flex

Great Reads

by Menrfa
In this tutorial, we will work through how to create a spoken English assessment Flex application using AISpeech API and their ASSDK (ActionScript SDK).
by Holly Schinsky
This article is intended to give developers a quick reference guide to using Flex 4 containers and layouts.
by Michaël Chaize
After having developed several demo applications with Flex hero, I’d like to share with you some tips to improve the behavior of your native apps.

Latest Articles

by Frank-Rene Schaefer
Using Quex to generate lexical analyzers
by Menrfa
In this tutorial, we will work through how to create a spoken English assessment Flex application using AISpeech API and their ASSDK (ActionScript SDK).
by Menrfa
In this article, we are going to build up a more completed version. We will explore almost every main methods ASSDK has provided, in addition to looking at those ASSDK returns and responses.

All Articles

Sort by Updated

Flex 

3 Dec 2022 by Wissem Nhidi
I tried the code below but each time I have an error "unrecognized rule" at line 24 just after return 1 Thank you for your help What I have tried: %option noyywrap %{ #include %} lettre [a-z] chiffre [0-9] variable...
12 May 2022 by BernardIE5317
Greetings Kind Regards I am learning to utilize flex and bison but for now my question is re/ flex i.e. to wit in particular how to input a string via stdin to be recognized by the generated lexer. The flex input file is below and lexer generated...
12 May 2022 by CPallini
It does not depend on the kind of input stream. Simply flex doesn't support '\b' as word boundary, see, for instance: regex - Matching exact word in Flex for lexical analysis - Stack Overflow[^].
6 Jan 2022 by Kevin Schwert
I am wanting to center a div inside another div but not have the items inside the sub-div to be centered. Below is the code that I have. I am wanting the sub-div to be centered on the page but not have all the div-test divs to be centered either....
6 Jan 2022 by Richard Deeming
In order to centre something on the page, it has to take up less than the full width of the page. Your main-div currently has no constraint on its width, and therefore takes up the full width of the page. Once you've added a width constraint,...
4 Nov 2021 by Member 15418824
My problem is when I resize the screen to make the screen smaller my divs begin to overlap after a certain point. However, the behavior that I would like to have is when there is not enough space for multiple divs in a row, then the divs must go...
5 Oct 2021 by Azor Ahai
Implement a parser for the programming language myC– in Project one using FLEX and BISON. The parser builds an abstract syntax tree (AST) for the input program and then pretty-prints the AST. Write. Five programs in myC–. Your programs must...
5 Oct 2021 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...
5 Oct 2021 by RickZeeland
Maybe this will help you: Re-entrant flex/bison parser to make Abstract Syntax Tree[^]
5 Oct 2021 by Dave Kreskowiak
Nobody can write this for you, nor should they. First, you would learn nothing at all, and that's not helping you. Second, there is no specification for the "myC" language. Without that, you cannot possibly implement a parser, let alone do it...
25 Jun 2021 by Your Favourite (Songs)
I was unable to change the width of the button for mobile devices in the media query help me, please. It works perfectly for the desktop size. What I have tried: Get Started .btn{ padding: 25px 80px; ...
25 Jun 2021 by ian hardy
make float: none and display: block for that button. It will make button as container and fit the parent box. I think it will help you.
31 May 2021 by Orly Ndonse
%{ #include "syntaxe.tab.h" char nom[]; %} chiffre [0-9] lettre [A-Za-z] entier (-)?{chiffre}{chiffre}* reel {entier}.{chiffre}*((e|E) {entier})? identifiant {lettre}({lettre}|{chiffre})* /*on va passer à la partie regles de traduction*/ %%...
17 Jan 2021 by aymen991
i have a div witch contain different element when i use the use the wrap property in the div the element wrap but i could not fix how many element i get in every row for example here i have a display who look like this with 4 element at every...
17 Jan 2021 by Richard Deeming
CSS Flexible Box Layout - CSS: Cascading Style Sheets | MDN[^] A Complete Guide to Flexbox | CSS-Tricks[^] If you want to have three elements per row, specify a flex basis of around 33%. NB: If you have margins or gaps between the child items,...
5 Sep 2020 by Dec Fathani
When a thumb image is clicked, a horizontal line appear on left side of a popup image. it happens because i added a box-shadow to img css. i am practicing using a flex, problem not occured when flex is disabled. how to fix it.. This is my...
5 Sep 2020 by Dec Fathani
i know why my page doesn't show correctly. something wrong with my code and figure it out. i change a selector '.overlay img' to '.overlay:target img'. my page looks as the way i want
13 Dec 2018 by CPallini
Quote: el {nr}|([a-z][a-z})*[a-z} The above rule looks incorrect to me (what is [a-z} ?).
13 Dec 2018 by Member 14074021
I write a program that recognizes from a .txt elements enclosed by "{" and "}". The program print the result in another .txt file. When I run the command lex b4.l I have two errors on line 9 "bad character class" and "unrecognized rule" What I have tried: %{ #include %} word [ab]+" "...
27 Nov 2018 by Member 14068174
I want these flex items to occupy the full space of this container.. Want the user_links section occupy the rest of the height... What I have tried: I tried flex property min height,height etc.. Nothing happened.. Here, the code written in bootstrap ...
27 Nov 2018 by Richard Deeming
Here's what you've got at the moment, with a couple of typos corrected: Edit fiddle - JSFiddle[^] Here's the fixed version: Edit fiddle - JSFiddle[^]
14 Nov 2016 by Member 11527624
I am having an icon called 'Tools' in xml file.When the userclicks on the icon he/she will get the list of layers.How can i add a scroll bar for the list.The layers doesnt have a design page so i have to add the list from xml page itself.Belowcode shows the listWhat I have...
23 Jun 2016 by OriginalGriff
I don't know flex, but...baseURL is a string, so shouldn't both the replace parameters be strings as well:baseURL=baseURl.replace("http:","http ://");Without string delimiters, it's a regex so it would need '/' delimiters, according to a quick Google: String Replace Function in Flex...
27 May 2016 by Member 11527624
for (var i:int=0;i
2 May 2016 by saravana__
Hi am using two swf to load same font with different language like arabic and English. I Use Font.registerFont() method to register fonts. When i tried two SWFs to register the same font, the last one wins.What I have tried:When i tried two SWFs to register the same font, the last one...
19 Apr 2016 by saravana__
Hi,I am using local stored object to store some information in my flex application. When I try to flush, it's show security panel to increase the local storage space. I want to show why the security panel is shown.Or can i change the text inside the security panel.What I have...
6 Apr 2016 by Member 12439929
Hi , i have been trying to update my flash player for internet explorer activex in my windows 2012 server . but it is still showing up flash player version is something way beyond this one (now showing version 11 , but active version is something around 21), please help , how to update this...
6 Apr 2016 by Richard Deeming
Strange - you're the second person this week to ask that question! :)You need to install the "Flash Player content debugger for Internet Explorer - ActiveX" file[^] from the "Additional Downloads" page[^].You should then have the latest version of the OCX file in...
4 Apr 2016 by saravana__
Hi,Am using axshockwaveflashobjects to embed and play swf files in .NET form. The form uses adobe flash player 10.0.1.112 lower version.Current version of the flash player is 21.0.0.110. How to update flash player.What I have tried:I had download and install latest version of the flash...
4 Apr 2016 by Richard Deeming
Looks like you need to install the "Flash Player content debugger for Internet Explorer - ActiveX" file[^] from the "Additional Downloads" page[^].You should then have the latest version of the OCX file in C:\Windows\System32\Macromed\Flash and C:\Windows\SysWOW64\Macromed\Flash, and your...
28 Mar 2016 by Jochen Arndt
You are using the same name for the type and one object (liste) but the object is a pointer while the type is not. So you should use a different name for the pointer and use that for your variable:typedef struct liste{ char * cle; int data; struct liste * svt;} noeud,...
28 Mar 2016 by Member 12421850
Im writing a simple progamm using the lists in flex but it shows an error in line 22 and i cant understand it.Can you pls help me ?Here the code%{ #include%}%%typedef struct liste{ char * cle; int data; struct liste * svt;} noeud, *liste;liste inserer(...
28 Mar 2016 by Patrice T
The first problem is that your code is at a place it should not be, because of misplaced %.You are very confused about the difference between a pointer and the data pointed by a pointer.I see at least 6 errors in the code.[French]D'après ce que je vois, tu brule les étapes, et c'est pas...
31 Jan 2016 by Pramod Singh (C)
HI Team, In Application Adobe Flex & Asp.Net IN Adobe Flex : I tried many times for line break via Property file with using htmltext & text both but after all i unable to change the string in line break, I used ,\n,\r\n and Build Flex and then Run the Asp.net Application but not...
31 Jan 2016 by Pramod Singh (C)
HI Team,In Application Adobe Flex & Asp.NetIN Adobe Flex : I tried many times for line break via Property file with using htmltext & text both but after all i unable to change the string in line break,I used ,\n,\r\n and Build Flex and then Run the Asp.net Application but not...
31 Jan 2016 by Pramod Singh (C)
HI Team, I tried many times for line break via Property file with using htmltext & text both but after all i unable to change the string in line break,I used ,\n,\r\n but not working. Please help. Ex.IN A.Property File : HELP : Help for the same. IN Contact.mxml ...
26 Dec 2015 by Frank-Rene Schaefer
Using Quex to generate lexical analyzers
17 Nov 2015 by Member 12144904
I have link to site. I need check this site for mobile version and flexible layoute with php. How can I do it?
29 Oct 2015 by Gizmo3
I am using flexbox for styling my pages, I am using three columns in container, second and third columns are just for text and they look great but First column has images, buttons, links,text etc and everything is messed up here nothing is in order, some elements are overlaying each other. I...
25 Aug 2015 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
25 Aug 2015 by Member 11933919
source code for calaculator using flex
24 Aug 2015 by eso0o
hi guys ...iam create application and add flex spark datagrid to it using flash builder when i run application it works fine and data showed in the datagrid but when i rotate it right or left datagrid becomes blank and rows empty here's my simple syntax
27 Jul 2015 by Ashwin2013
Hello CPs,I am new to Flex and I'm trying to understand how compilers and lexical analyzers work. I acquired this sample program from the internet and it doesn't seem to work. I am using Flex 2.5.4a. There were a few fixes but it didn't work. Are there any other syntactical errors or is the...
27 Jul 2015 by Ben J. Boyle
First result in google for "flex premature end of file" gives the exact same question AND CODE on stackoverflow from nearly four years ago http://stackoverflow.com/questions/8226993/premature-eof-error-in-flex-file[^].Problem is the space before the %}, flex i sensitive to spacing.
27 Jul 2015 by Dave Kreskowiak
I don't know Flex, but usually when you see an error like that you've got mismatched braces or quotes or something else that must be paired up.
5 Jun 2015 by jiazhiqiang
means two:1、free or open source QT widget, can play Flex App(swf) file.2、some API or wrapper of ActiveX,or MFC etc. which can be used inside QT app.thanks in advance.
4 Jun 2015 by jiazhiqiang
I have created and compiled a new flex app in mxml & AS3.Now I want to make a wrapper in the exe form(for mainly use on windows) to load(star to play) the swf file with following needs(or reason):1、hide the swf file and relative assets (may load by swf at runtime) from the...
24 Apr 2015 by hypermellow
Have a look at JavaScripts onbeforeunload function.A good explanation can be found in this article Back to Basics – OnBeforeUnload Event[^]Example usage:window.onbeforeunload = function(e) { return 'Are you sure you want to leave page';};... hope it helps.
24 Apr 2015 by Member 10682051
->i am new to flash builder flex code->here i need to show when user click back button (or) refresh page ,he need to get alert message LIKE "Are you sure you want to leave page"->please suggest me solution with example code...plz dnt forget to explan step by stepif u know answeri will...
19 Apr 2015 by eso0o
hi guys ,iam working on flex mobile application, i want to display data stored in database as dataview or listview like at asp.net but i don't know to use controls of flex to achieve that so anyone can give me a hand in this ??thanks in advance
16 Mar 2015 by Member 11168418
Hi, I want to do a video player using Flex (AIR app). The video source is from a http response. How can i do this, a sample code would be most helpful. I am doing this first time.
10 Feb 2015 by Member 11246037
hi ,I am created a httpContex Response in my handler calss process request event in ASP.NET.I have Flash Builder 4.7,where in action script class I have created a http service object.I want to get the response of the HttpContext in HttpServise object.How can I get this??Please tell...
5 Feb 2015 by saravana__
Hi,You need to add custom skin to control the stroller.skinClass="components.skin.CustomScrollBar"
5 Feb 2015 by saravana__
Hi,I have share the sameplevar urlLoader:URLLoader = new URLLoader();urlLoader.dataFormat = URLLoaderDataFormat.TEXT; urlLoader.addEventListener(Event.COMPLETE, urlLoader_complete);urlLoader.load(new URLRequest("Enter Your Josn path"));protected function...
5 Feb 2015 by saravana__
Hi,Am using this below code to update custom values.
4 Feb 2015 by Member 11246037
Hi,I have written a code in my action script of flash builder to interact with my web cam.I am able to take the pic .but can not able to read the image in my aspx page?So I am unblae to save it.Can amybody please tell me ,How to save the Image in my system through asp.net??My code is as...
11 Dec 2014 by ladyleaf
Dear all,I am newbie to flex, what I want to realize is the communication between flex and JSON.In my flex actionscript, I will:(1) POST a url to JSON(2) get all contents of the url.I have searched the related topic for quite a while, but I almost confuse myself. - what...
18 Nov 2014 by Bob712
I am a beginner in flex ans JSP and I want to do an application that send SQL query to JSP file execute the query and then return as xml tags and content (not xml file) to bind it to an array of collection in flex. any code for help please?
28 Aug 2014 by syed shanu
Chk this links : http://social.msdn.microsoft.com/Forums/en-US/1f7e1964-10d7-444e-bf59-17969e4dacd4/how-to-add-flex-grid-in-vbnet?forum=vbide[^]http://10tec.com/articles/msflexgrid-vb-net-equivalent.aspx[^]
28 Aug 2014 by itproht
Hi every body,Please tell me how to use Flex Grid 3rd party on VB.net.Thank all!
27 Aug 2014 by Member 3985515
I want to control scroller in List ( like disable ,enable ,change color, .. ) how can i do that , help me please
24 Aug 2014 by Bernhard Hiller
It is an issue of encoding / character set. It may be necessary to specifiy the encoding in the connection string, see e.g. http://stackoverflow.com/questions/6535773/c-oracle-specify-encoding-character-set-of-query[^]
22 Aug 2014 by varun150
retirved string from oracle displays in c1flex grid in unknown language(seems like unknown language)when program is run and viewed in windows 7 problem occurs but viewed in windows xp its okeysee image for reference :-i want to fix that please...
6 Jun 2014 by Member 10868107
If I type immediatly after loading flex window, it is not allowing me to type fast and the window is hangging. How to resolve it.
1 Jun 2014 by Benjamin Nguyễn Đạt
As the title described. I would like to config the flash builder to load the crossdomain.xml and rsls files from my specific server than over the adobe server. Is there anyway to archive this task?Any help would be appreciate.
27 May 2014 by WQHTony
I want to use the CKEditor in flex,but why does it look bad,I want some eg complex,thanks
20 May 2014 by jai_mca
How to read, insert,update ,delete xml nodes or xml attributes using Xquery?can we use xpath?which one was best to do the task?Regardsjai
29 Apr 2014 by Behno0o0oD
HiI have installed adobe air on my android device but when deploying to device flash builder says that there is no adobe air installed on device.how can I solve this problem?tnx
7 Mar 2014 by Lavanyagoutham
private var currentIndex:int = 0;private function txtTemplate_change():void{ arrChanges.push(txtTemplate.htmlText); currentDataIndex = arrChanges.length - 1;}/** Undo changes **/private function btnUndo_click():void{ if(currentDataIndex >= -1) { ...
28 Feb 2014 by jai_mca
Dear Friends, In my web application i need to draw shapes in the image using mouse.But i was struck draw and resize polygon..i have dawned polygon..How to resize it? Please refer the below code.private function onDrawTriangle():void { ...
27 Feb 2014 by Member 10453510
Hi friends, I am a learning Flex. i want to create a captcha in flex Loginpage.mxml page.any one can help me to achive this task.Regards,Krishna.
19 Jan 2014 by Member 10535309
Hi,i need to create a folder and subfolder dynamically in SharePoint list using Adobe Flex3. I haven't get much information in google to achieve this task.. Please help me on this.
13 Jan 2014 by Maarten Kools
You'll have to register a handler for the initialize event of the Application class. That'll be the first event you can handle, as the Application instance is the first object created in a Flex application. More information can be found here[^] (and of course in Google)
13 Jan 2014 by Gianluca Palmieri
I must instantiate a variable when flex mobile application starts. What is the first method called when application starts ?
10 Jan 2014 by SujeetBuddiga
I need some help regarding how can i automate FlexPaper Classic GPLv3 on my windows desktop.I need a solution so that i can put all my PDF files into a source folder and all flex paper into a destination folder and automate it. I have to manually do this for approx 400 books of huge...
5 Nov 2013 by Sus19
I want to create a app similar to iOS Newsstand app for Android Devices.The features of Newsstand app is that when we download any magazine from the App store the magazine image and link is saved inside the Newsstand by default and the magazine is not shown outside the Newsstand..similar way...
1 Nov 2013 by ziafahad
Hello, I am very new to Mobile apps development. My task is to select an image from gallery of my phone and upload it to my local mysql databse. for this I have to use ASP.Net C# web service. I have googled it but couldn't find a satisfactory answer. Can anyone help me how to acheive my...
28 Oct 2013 by Yesudasan Moses
Hi,I have an Image control in my flash builder application.I want to move it and resize dragging on by its corners (as like many image editors do)How can I achieve this,,, Can anybody give me a clue...
11 Oct 2013 by Ehsan Skardu
See the link belowhttp://stackoverflow.com/questions/15530986/how-to-set-the-header-styles-of-a-spark-datagrid[^]
11 Oct 2013 by ziafahad
Hi, How could I change my Header text color of my datagrid. I am using Spark datagrid and flex 4.6 I have googled it but couldn't find solution.any help??
11 Oct 2013 by ziafahad
Hello everyone,I am developing an application which asks for user name and password to get user logged in. here I have a check box also by which I can remember the password for certain user who tries to login again on same device.My question is How can I acheive this functionality to...
10 Oct 2013 by ziafahad
I am developing an application in Flex 4.6 and AIR 3.9 Here I have two TextInput fields to get userName and Password and then a login Button.Simple I want this functionality: Initially Both Login button and Password text field are disabled. Only User name is enabled.when someone clicks...
7 Oct 2013 by OriginalGriff
The best suggestion I can give is: don't use a regex for this.By all means use a basic regex to check four-digits-slash-two-digits-slash-two-digits; thats simple:^\d{4}/\d\d/\d\d$But do not try to take it any further. It really isn't worth it: check and convert the actual date in code, it is...
7 Oct 2013 by ziafahad
Hi every one, I am developing an application in Flash Builder 4.6 and in my Application I have TextInput field to get the date from user. I wanna get it in this format: yyyy/mm/dd like 2013/09/24So, what should be my regular expression to check if a correct date in the above format is...
12 Sep 2013 by jai_mca
Can anybody have idea on ImageXpress and NotateXpress in FLEX? I want to draw shapes like rectangle which can be re-sizable. Thanks in Advance
2 Sep 2013 by srikanth.mk
How can we get absolute path of file or "native Path" of file (as we call it in Flex/AIR) when we use File Reference to browse a file in adobe flash builder 4.6?For example,if i uploaded a image from : "c:\upload\check.jpeg" I want the full path.. as "c:\upload\check.jpeg".I need this in...
26 Aug 2013 by srikanth.mk
I need to display the image which is saved in oracle database as a "BLOB" datatype in to flex data-grid.so,if any source code is there regarding this issue please send it to my Email-ID.Please,help me. Thanks& Regards,m.k.srikanth,Email id-sri.sai268@gmail.com
2 Aug 2013 by santoshkumarkallepalli
Hi Friends, How to use WCF Services in Flex 3.0 . post me a sample application
1 Aug 2013 by santoshkumarkallepalli
Hi friends , my requirement is tracking the vehicles and view the vehicles moment in route locations in Google maps by using Adobe Flex. if you have any related information post me
1 Jul 2013 by TorstenH.
http://www.w3schools.com/html/...
1 Jul 2013 by Mehul_Chaudhari
Dear All,We have developed one web application and there is one form having active-x scripts in it.We are planning to replace it(active x) with other web-technology(client side , browser based). i.e java applet, adobe flash etc.. We prefer latest technology implementation.Purpose of...
25 Jun 2013 by Member 8587874
Hi, Which version of flex you are using?use latest version Flex 4 or above.
31 May 2013 by Jardin1
Hello! I use example code from Flex tutorial:
27 May 2013 by Jardin1
Right code is:
27 May 2013 by Jardin1
I only have started to learn Action Script 3 and use Flex.There is the code:
16 May 2013 by R.Vikram
Hello friends, I am developing a small mobile application in flex. I used both touch event and swipe event in the application. When i swipe, the touch event also occurred. How do i prevent the touch event on swipe handling....Please give me a solution.
7 May 2013 by MRS1989
I want to load external pictures (that will end up changing periodically) without interfering with the end-user's work in Adobe Flash. What I want would be similar to Multi-Threading technology in the Programming Languages.I am using the following code for load external pictures:private var...
3 May 2013 by MRS1989
Load external pictures without interfering in the users' worksI can accomplish Multi-Threading with Adobe Flash Player (11.4+) using the recently added "Worker API."However, I do not need Multi-Threading for what I'm trying to accomplish. "Loader" is asynchronous.