Hi I have made the following item renderer in mxml, but when I use it in a list for some reason I can not select it.
Am I doing something wrong?
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
horizontalScrollPolicy="off">
<mx:Script>
<![CDATA[
import com.pbsmedia.kanpeki.domain.calEvent.CalEventType;
[Bindable]
private var calEvent...
In my company, we are going to use Flex3 for the presentation layer of a new financial web application and Spring for the business layer but a debate is still going on regarding the best messaging/remoting technology. Can you share your own experiences in terms of pros and cons of using one or the other technology?
...
In my air project i used current state size is width="441" height="358" . i have link button like Singin then move to singin state (currentstate='singin')
<mx:State name="signin">
<mx:SetProperty name="height" value="616"/>
<mx:SetProperty name="width" value="919"/>
So application resize into 616,919 . After that...
I wonder if www.aviary.com web applications are builded using flex framework. Does anyone know?
...
My flex project uses FA-Bridge, and apparently in Safari browser I cannot call any of my public AS functions that have arguments passed in. For example I can call this AS function from javascript:
var myButton = CreateNewButton();
myButton.setLabel('Click here');
But if I try calling it in a single statement like this:
var myButton = Cre...
When developing Flex projects, Eclipse gives warnings about the default index.html file generated by Flex Builder. The file is in the 'target' folder (or "generated artifacts" folder. Yes, I'm also using Maven). Can I eliminate or disable this warning?
The code which generates the warning is below, though I would definitely prefer not c...
Hopefully someone can help me with this problem.
I'm starting to work with Drupal Services & Adobe Flex. I created a simple service and installed the AMFPHP module. In Adobe Flex when running the application, I don't seem to have a problem...and everything runs fine showing the data
However, after uploading the .html and .swf files t...
Hi all,
I've written a Flash (Flex) client connecting to a back-end server to exchange data.
I've also written my server from scratch, and it serves two purposes:
(1) Web (HTTP) Server- By default listens on port 80
(2) Socket/Application- Server - By default listens on port 443
Just FYI, both servers run in the same process space,...
When creating an Actionscript Project in Flex builder 3 an application class is automatically created and dropped in the root of your source folder. In my case my source folder is called src/.
Is it possible to change the default application class to a class which is not directly in the root of the src folder? It seems when right-clicki...
For an open source project I am looking for a way to send multiple variables to methods. These variables are, for example, variables I want to directly pass onto an object I'm creating.
I figured an object would be a good way to go, as I can send as many variables as I like without having to think about every possible variable beforehan...
Hi. I have an actionscript class in my flex app that looks like this:
package Assets
{
public class AppIcons {
public function AppIcons() {
}
[Bindable]
[Embed(source="assets/ico_16.png")]
public static var Icon_16:Class;
[Bindable]
[Embed(source="assets/ico_32.png")]
public static var...
I am planning to do a CD-ROM in either Flash or Flex, possibly using the Adobe AIR runtime.
This CD interactive will have a bunch of forms on it for the user to fill out. After they fill in a form, they will have the option of saving or printing a PDF that is based on there information.
I am trying to find a way of editing the content ...
i got some ideas for a blog/folio but i dont want to get a paid web server yet (still studying not really earning yet), and i thought of working on some ideas i thought will ease my blogging workflow. let me know if i can don't re-invent the wheel too much. or ideas on what i shld use
overall i think i will use adobe air + flex + db (i ...
How would i know the item state, whether its open or closed through programming in flex.
I am using Accordian...
...
I am creating a system where a user can select any combination of four options.
Then results are displayed based on their exact combination.
For example, if a user chose color, text, and logo. Only results featuring color, text, and logo would return.
On the other side, I am creating "templates" that will eventually be the results ret...
Hi,
I would like my AIR application to show up on Windows or Mac when USB drives are attached in the screen that says something to the effect of:
"Found a new USB device (Canon Digital Camera), what would you like to do?" followed by a list of applications and possible actions (I'd like one of them to be "Open MyAIRApp to Import Photos...
package asas
{
public class main extends EventDispatcher
{
private static var instance:main =new main;
// This method returns the instance of the class.
public static function get instance() : main {
if(_instance == null){
_instance = new main();
}
return _instance;
}
...
I was modifying the layout of a Flex application in Flex Builder. What I didn't realize was that the changes I made, were made for a particular state. There are around 6-7 states in my application. Now, I need those changes to be made to all of those states. How do I do it? As of now there are multiple lines like this in one state :
<...
I have a class with a method name, and now i have a Flex MXML... how would i call the id of the component in my ActionScript class...
...
Is there a way in Flex by which a disabled canvas looks exactly the same
as an enabled canvas? I haven't been able to make sense of disabledOverLayAlpha
and disabledColor properties for a Canvas component.
...