This is with Flexbuilder 3.2, Eclipse 3.3.2.
I am moving my development environment to a new machine. Actionscript classes that compiled in the old environment now get a compile error:
A file found in a source-path must have an externally visible definition. If a definition in the file is meant to be externally visible, please put the...
In my application i want checkbox on the accordion ,so is it possiable to set checkbox ? if it is possiable How can i identified child ?
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%" height="100%">
<mx:Accordion>
<mx:headerRenderer>
...
I have created an application using Adobe Flex. I took all the files from the 'bin-release' folder and put it on the server. Then when someone connected to the server through http it is forwarded to the "index.htm". The "index.htm" page is the HTML page created automagically by Adobe Flex during compile time, I just renamed it to that...
What's the fastest way to get a screen capture in flex? I am currently using: (I currently encode it to Base64 for upload to a webserver, but this is not necessarily required. All I want is an image file to appear on the server).
ImageSnapshot.defaultEncoder = JPEGEncoder;
var imageSnap:ImageSnapshot = ImageSnapshot.captureImage(<...
Hi, I have an xml file (externally saved) that is similar to the following:
[root]
[main]
[title]...[/title]
[content]...[/content]
[/main]
[main]
[title]...[/title]
[content]...[/content]
[/main]
[/root]
*All <> is replaced with [].
What I like to do is to get what's in [title] tag using HTTPservice, import it...
Hi,
i am working in Air application in Flex3 , i need know how to set "selectedItem" Property when we have 2 values like(data and label) label property to combobox selection, data value for our input.
Like shown below.
In (selectedItem="{stylename}") stylename will have "data" value but i need ...
Hello everyone
I have found this great tutorial, about uploading files with a Flex app, using Php to do the server scripting for us.
http://hybridhacking.com/tutorials/uploading-files-with-flex-using-php
Its great, but i wanted to know what changes should i do at the ActionScript so that only accepts image files, and if possible to li...
I am attempting to read the saved file version of an Adobe Illustrator file created in any version of Illustrator. My code will read files created in Illustrator 10 and earlier currently. Files created in the CS Versions of Illustrator can be read but will not read far enough into the file to find the correct string that starts where t...
Is there any way to set horizontalAlign from Action Script not from mxml?
...
Hi,
How can I extend components like buttons to use x and y value as the center of the component, not the top left?
Thanks,
Jean
...
Hi All,
I'm about to go into a large scale application (client-flex, server-.net).
The server side is required to push data to the clients without them asking for it, this data can be tables from the DB or simply 2 integers the application needs to consider.
I tried to consider WebOrb.net for the job but the documentation is very poor ...
Hello!
I was programming in php for a while but it was all procedural-oriented. Now I have a project in Flex 3 and I made a simple script which animates (moves) few objects but I think that I am missing the point of object-oriented programming here because I am repeating some stuff over and over... Maybe it is mixed together with all of ...
I'm working on an app which will, like most apps, have a whole boat load of buisness logic, almost all of which will need to be executed both on the server and the Flash-based client… And I'm trying to figure out the best (read: least complex) way to implement the rules engine.
These are the parameters of the problem:
The rules engine...
Hi!
Is it possible to make some kind of 'dynamic' thumbnails for mxml components which I'm using in my application? By 'dynamic' I mean if I change some layout in mxml component, my thumbnail refreshes according to new layout without any screen capturing, photoshoping or similar =)
Thanks!
...
Hi!
I would like to make some kind of thumbnail with capturing BitmapData or ImageSnapshot of some UNINITIALIZED components in my Flex application.
Is it possible?
Thanks in advance!
m.
...
Hi, How can I alert an integer value in flex. I have a variable called total which is an integer.
If I try to alert it using
var total:int=myTest.length;
Alert.show(total);
it throws an errors saying that
1067: Implicit coercion of a value of type int to an unrelated type String.
the show method accepts only string values. How c...
I have a Flex button. I need one color on the left and another on the right. I don't need it to be a gradient. Just solid colors. Like green on left & red on right. I really don't want to use an image -- just because it'll probably take me a long time to do it.
The gradients via Flex Properties in Flex Builder seems to apply only vertic...
I keep getting this warning:
warning: unable to bind to property 'image' on class 'XML' (class is not an IEventDispatcher)
Is there a way I can turn off this type of warning (but keep the others) as it is driving me crazy when I try to trace something else.
Thanks.
...
I have a List and the item renderer displays an image. Whenever you scroll the list, and the item renderer refreshes, it redownloads the image. Causing there to always be a delay. Is there some way of caching it so it doesn't have to redownload every time causing a delay in showing the image every time you scroll the list?
Thanks!
...
I want to create a new Adobe AIR window from my application. I want the new window to be a normal new window but not to re-size, minimize, or maximize but I also don't want it to show up on the task bar. In other words, I want it to be like a browser's alert window. Look carefully when you look at one of those, the type of window is not ...