Hi All,
I am trying to access getListItems method of the Lists service of Sharepoint from Flex using WebService.
It is working fine when I omit the query and the viewFields nodes in the request xml.
But if I add any query or FieldRef in Viewfields it is throwing error from the service.
Below is the code.
<mx:WebService id="ws2" wsdl...
I have a simple String validator like;
<mx:StringValidator property="text" source="{_codeInput}" enabled="true" minLength="2" required="true" />
And it works fine. The problem is how can I activate the required red border on a button click like "ADD" so that the user sees that this field is required.
Right now how it works is that ...
I can't figure out how to publish an audio stream from a client to the server using FluorineFx on the client. We want to stream recorded audio data from the client to the stream via the already established NetConnection. There is a NetStream class in FluorineFx but it has no publish method. The NetStream class in FluorineFx only has the ...
Hi,
When I create a native installer and run it, it installs the application with myApp.exe (launcher) in my Program Files/myApp/ folder. I would also like to have the installer put an uninstaller for my application (say uninstall_myApp.exe or something) in the same folder. Is there any way to create such an installer. Thanks..
...
I'm trying to reach the dataField of a DataGridColumn in the itemRenderer. Below is the dataGrid:
<mx:Script>
<![CDATA[
[Bindable] public var weeksOfMoth:ArrayCollection = new ArrayCollection([
{monday:30, tuesday:31, wednesday:1, thursday:2, friday:3, saturday:4, sunday:5},
{monday:6, tuesday...
Hi,
I am having trouble getting a Flex application (with as3httpclient) to work.
I compiled it (compc -load-config=build-swc.xml), put the as3httpclientlib-1_0_6.swc in my libs dir, and ran
mxmlc -compiler.include-libraries lib/as3crypto-1_3_patched.swc
lib/as3httpclientlib-1_0_6.swc lib/corelib.swc -- App.mxml
In my actionscript I ...
Here are my functions for conversion:
private function arrCol2XML(arrCol:ArrayCollection):XML
{
var xml:XML=new XML(<root></root>);
for (var i:Number=0; i<arrCol.length; i++)
{
var obj:Object=arrCol.getItemAt(i);
xml.appendChild(recursive(obj));
}
return xml;
}
private function recursive(obj:Object, str:String='item'):XML
{
v...
I'm moving a Flex 3 site to Flex 4, but when I run the application, it attempts to download a .swz file from Adobe, and gives the following error:
*** Security Sandbox Violation ***
Connection to http://fpdownload.adobe.com/pub/swz/tlf/1.1.0.604/textLayout_1.1.0.604.swz halted - not permitted from http://localhost/Fl/CityGIS/main.swf
Er...
My file upload is working fine on IE.
But it's returning "406 not acceptable" error on firefox.
Any solution?
...
I have a list that contains some interactive elements, including a custom textinput (Hillel Coren's FlowBox from his AutoComplete open source project). I'm trying to support drag and drop to reorder elements in the list for all of the other elements except for the FlowBox, but for the time-being I found a weird error that occurs when I d...
How do you add an XML declaration - < ?xml version="1.0" encoding="UTF-8"? > - to a Flex XML object? The same thing you could do with the old XML - new XMLDocument class and the xmlDecl property.
...
Hi All,
I am having an AIR applicaiton which is supposed to uncompress the file of huge size (>1GB)
I tried commonly discussed utilities i.e. FZip nochump and few more
I face the same problem with all of them,
They tyr to unzip the entire file in the memory (using ByteArray.defalte method)
This works well with the files of small ...
Hello Experts,
I have to create a tree in Flex 4, which will populate the nodes from the remote object.
My tree structure would be something like this
Site 1
--Eqpt 1
--Eqpt 2
Site 2
-- Eqpt x
-- Eqpt y
I will be fetching the values form the Java RemoteObject using hibernate and from Site Table and eqpt table.
One easy way i can t...
Is there a way to hide all the DataGrid columns, and not make them included in layout, and still show the header row along with its header text?
I was able to make the DataGrid columns not visible, and not included in layout, but that makes the header text no longer appear.
If no data comes back from the data provider, I want all the...
I'd like to add a derived property to flex:
private var a:int;
private var b:int;
[Bindable]
public function get derived():int
{
return a+b;
}
However, derived won't update when I change a or b. Is there a better (faster) way to make derived update than giving a and b setter methods which invalidate it?
Edit: added keywor...
Hi,
I have a file that takes a variable from the user then prints something, let say
$something = $_GET['something'];
echo $something;
It works perfectly fine with GET, however, if you change this to post it stops working. I am sending the request from a flex client to the PHP code, and I am using a get request when I am using get in...
Hello,
I am currently developing a dynamic LineChart in FLEX 4. I am implementing a Tree control next to my LineChart, which will filter the LineChart dataprovider and lineseries. The tree control has several branches and ultimately 5 children (leaf nodes) at the bottom of the last branch.
I need the leaf node/children to be displayed ...
Is the Flash Video (or Flex VideoDisplay) component capable of seeking to an exact moment in a video?
It seems to always 'snap' to keyframes (which is understandable). I'm just wondering if there are any mechanisms in the video classes for seeking to exact frames, ie it should do the translation from keyframe to specific frame in the ...
I have two separate advancedDataGrid instances (let's call them A and B). What I'd like to do: when clicking on grid A I'd like
for grid A to handle the click normally (i.e. default advancedDataGrid behavior)
for grid B to receive a click event a certain location and handle such event using advancedDataGrid default behavior (i.e. with...
One of my decoration bitmaps covers up some important elements in my flex application. The problem is these elements become not clickable. How could make the bitmap not clickable or how could I pass the click event along to those children elements below?
...