active questions tagged actionscript - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T14:35:00Zhttp://stackoverflow.com/feeds/tag/actionscripthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1926578/flash-as3-mp4-is-not-playing-in-localhost-but-it-is-working-in-my-server0Flash AS3: mp4 is not playing in localhost, but it is working in my servercoderex2009-12-18T06:01:22Z2009-12-18T13:43:36Z
<p>HI,
I wrote a AS3 for a video player, i can play flv in that. but i can't play mp4 on local machine but i can be able to play mp4 or live server.
What is the issue?</p>
http://stackoverflow.com/questions/1927214/flash-dynamic-text-in-embedded-movie0Flash Dynamic text in embedded movieBen2009-12-18T09:30:27Z2009-12-18T09:42:54Z
<p>Hi I have my movie in the main timeline and then have a smaller clip in which there is a dynamic text box. In that smaller movie I have some actionscript </p>
<pre><code>myVars = new LoadVars();
myVars.load("http://preview.domain.co.uk/inc/loadVars.php");
myVars.percentage
myVars.onLoad = function() {
text_box.text = this.percentage;
};
</code></pre>
<p>but when I play the movie it doesn't work. However if I move the dynamic textbox onto the main timeline it works.</p>
<p>Please can someone help.</p>
http://stackoverflow.com/questions/1661424/flash-moviecliploader-instance-behaves-incorrect0Flash MovieClipLoader instance behaves incorrectAnriëtte Combrink2009-11-02T13:47:04Z2009-12-18T05:11:50Z
<p>Hi there</p>
<p>I currently have a few movieclips that I load into another movieclip <code>container</code>. I use the MovieClipLoader class to load them and make use of the <code>onLoadProgress</code>, <code>onLoadStart</code>, <code>onLoadInit</code>, <code>onLoadComplete</code> and <code>onLoadError</code> listeners.</p>
<p>In the <code>onLoadProgess</code> listener, I listen for the loaded bytes and total bytes and put the the percentage into another movieclip's (that I put on the stage temporarily to show the loading) textbox. Here is the problem, the loading movieclip begins playing on the 40% loaded mark and does not wait to load 100%. This is weird and I don't understand what I could be doing wrong. Here is my code:</p>
<pre><code>// loading icon to show progress
var loading_icon:MovieClip = new MovieClip();
// load PassionPurpose.swf
var passionPurposeLoader = new MovieClipLoader();
var passionPurpose:MovieClip = this.container.createEmptyMovieClip("passionPurpose", this.container.getNextHighestDepth());
passionPurpose._y = groupOverviewHeight;
passionPurposeLoader.onLoadInit = function (targetMc:MovieClip) {
trace("Init... "+PPFile);
loading_icon._visible = false;
loading_icon.unloadMovie();
}
passionPurposeLoader.onLoadStart = function (targetMc:MovieClip) {
loading_icon = passionPurpose._parent.attachMovie("loading_icon_ch1","loading_icon_ch1",passionPurpose._parent.getNextHighestDepth());
loading_icon._x = 245 - loading_icon._width/2;
loading_icon._y = 207 - loading_icon._height/2;
loading_icon._visible = true;
}
passionPurposeLoader.onLoadComplete = function (targetMc:MovieClip) {
trace("Complete... "+PPFile);
loading_icon._visible = false;
loading_icon.unloadMovie();
}
// progress function
passionPurposeLoader.onLoadProgress = function(targetMc:MovieClip, loadedBytes:Number, totalBytes:Number) {
// determine percentage
var percentage:Number = Math.round(loadedBytes / totalBytes * 100);
trace("Loading... "+loadedBytes+"/"+totalBytes+" "+PPFile);
loading_icon.loading_txt.text = percentage + "%";
if (loadedBytes == totalBytes) loading_icon.unloadMovie();
}
// there was an error loading the movieclip
passionPurposeLoader.onLoadError = function (targetMC, errorCode) {
trace("Error");
}
</code></pre>
<p>Does anyone have some sort of explanation or solution?</p>
http://stackoverflow.com/questions/1337260/maximum-value-of-x-on-as2-movieclip-object0maximum value of _x on AS2 MovieClip objectRafe2009-08-26T20:25:52Z2009-12-18T04:25:14Z
<p>Using Flash 8, and ActionScript 2, what is the max value that an _x property on a MovieClip can be? For instance, is it okay to position a movieclip at _x = 60000? </p>
http://stackoverflow.com/questions/1926093/getting-yos-as3-examples-to-run0Getting YOS AS3 examples to runlemon2009-12-18T03:29:15Z2009-12-18T03:36:38Z
<p>I'm trying to run <code>SimpleExample</code> of <a href="http://developer.yahoo.com/flash/yos/examples.html" rel="nofollow">Yahoo's Flash AS3 examples</a> to run but I can't seem to make it work.</p>
<p>I've properly downloaded as3's core lib and pasted it inside the project. Then I pasted YOSSimple.fla in the root dir then I ran it. But I still keep getting errors.</p>
<pre><code>Definition com.yahoo.social.data:Profile could not be found
Definition com.yahoo.social.data:Profile could not be found
Type was not found or was not a compile-time constraint: Profile
etc
</code></pre>
http://stackoverflow.com/questions/1918817/how-can-i-do-python-ruby-javascript-style-generators-in-actionscript1How can I do python/ruby/javascript style generators in actionscript?djacobs72009-12-17T00:50:26Z2009-12-18T00:24:24Z
<p>I want to use coroutines in actionscript to implement a state machine.</p>
<p>I'd like to be able to do something like the following</p>
<pre><code>function stateMachine():void
{
sendBytes(0xFFFF);
var receiveBytes:ByteArray = yield()
sendBytes(receiveBytes);
}
stateMachine.send( Socket.read() )
</code></pre>
<p>like in this <a href="http://eli.thegreenplace.net/2009/08/29/co-routines-as-an-alternative-to-state-machines/" rel="nofollow">blog entry</a></p>
http://stackoverflow.com/questions/1312318/singleton-class-in-flex0Singleton Class in Flextheband2009-08-21T14:32:20Z2009-12-17T21:56:35Z
<p>I have a doubt,.... How would you create a Singleton class in Flex... </p>
<p>Is there any convention like the class name should eb Singleton or it should extend any other class.</p>
<p>How many Singleton class can a project have?</p>
<p>Can anyone say the real time usage of a Singleton class?</p>
<p>I am planning to keep my components label texts in a Singleton class... Is it a good approach.</p>
http://stackoverflow.com/questions/1918668/drag-and-drop-custom-cursor-during-drag-not-working0Drag and drop, custom cursor during drag not workinginvertedSpear2009-12-17T00:03:21Z2009-12-17T21:22:08Z
<p>I have a datagrid that I want the user to sort the rows on. To make it obvious that it's sortable I am implementing some custom cursors. But I'm having a problem when I actually drag an item. Can anyone help me out?</p>
<p>Thanks</p>
<p>here's a psuedo demonstration of the problem</p>
<p>Application = normal cursor // fine</p>
<p>Rollover datagrid = open hand cursor // good so far</p>
<p>mousedown on datagrid = closed hand cursor // good</p>
<p>dragging item around = closed hand cursor // switches back to normal cursor (if I move it around real fast I can see my custom curser for an instant)</p>
<p>mouse up on datadrid = open hand cursor // not sure, after I drop it goes back to open hand but if I mouse down, dont move and mouse up I have a closed hand</p>
<p>rollout of datagrid = normal cursor //good</p>
<p>datagrid code:</p>
<pre><code><mx:DataGrid id="sectQuestionsDG" x="10" y="204" width="558" height="277" headerHeight="0" selectable="{editMode}"
dragMoveEnabled="{editMode}" dragEnabled="{editMode}" dropEnabled="{editMode}"
dragDrop="sectQuestReOrder(event);" rollOver="over();" mouseDown="down();" mouseUp="up();" rollOut="out();"/>
</code></pre>
<p>functions:</p>
<pre><code>public function over():void{
CursorManager.setCursor(grabCursor,CursorManagerPriority.LOW,0,0);
}
public function down():void{
CursorManager.setCursor(grabbingCursor,CursorManagerPriority.HIGH,0,0);
}
public function up():void{
CursorManager.setCursor(grabCursor,CursorManagerPriority.LOW,0,0);
}
public function out():void{
CursorManager.removeAllCursors();
}
</code></pre>
<p><b>Edit 12/17/09:</b>
I've made a little bit of progress, I'm now doing this on rollOver </p>
<pre><code>var styleSheet:CSSStyleDeclaration = StyleManager.getStyleDeclaration("DragManager");
styleSheet.setStyle("moveCursor", grabbingCursor);
CursorManager.setCursor(grabCursor,CursorManagerPriority.LOW);
</code></pre>
<p>This is giving me the correct rollover and correct drag, but if I try to add any
function to rollOut it screws up again, so now I'm stuck with the grabCursor. It
seems like when I set a rollOut on the dataGrid it's firing for each row, same
with mouseOut, is there any way to avoid that?</p>
http://stackoverflow.com/questions/1922995/flexbuilder-3-actionscript-only-air-application0FlexBuilder 3 - ActionScript Only - AIR ApplicationSteve2009-12-17T16:37:39Z2009-12-17T20:45:07Z
<p>Using an ActionScript only project for AIR dev in FlexBuilder 3. I've already gone through the setup of changing the .mxml to .as to generate the main working file. I've also used NativeWindow.stage to get access for addChild, etc. Is there something I'm missing? When I try to use any flex codebase, there are always 'VerifyErrors'. Also, with ApplicationUpdaterUI there are also 'VerifyErrors'. Cannot find "mx.core.ByteArrayAsset". If I use the same code, but with MXML as the base everything compiles fine. Any ideas?</p>
http://stackoverflow.com/questions/1891394/flex-as3-datagrid-columns-have-wrong-values0Flex/AS3 DataGrid Columns have wrong valuesinvertedSpear2009-12-11T22:49:58Z2009-12-17T18:53:38Z
<p>This is driving me nuts. This script is adding datagrids to various containers in an accordion. In my first level for-each loop the item that fills my "if(component.@component_componentID == "999999999")" is the last item looped through everything works fine except the datagrid I am building there has the wrong columns. For some reason "tempGridicd9.columns" array is returning the columns array from the tempGrid variable, and not even the version I end up with after the filter, but the original columns array. I don't even see how this is possible. </p>
<p>Then when they datagrid gets drawn it has the right data in it, but it has extra columns, cause the items from the else statement have 4 more columns.</p>
<p>I have done hours of trouble shooting on this so far. The problem will not present itself if I do not assign a dataProvider to tempGrid, for some reason that seems to be where it all blows up.</p>
<p>Anyone have a clue what's going on? Either I've majorly screwed up or this is a major bug. Please help!!</p>
<p>Here's a simple example of the XML, the real thing has a lot more nodes and a lot of attributes:</p>
<pre><code><component>
<question>
<answer/>
</question>
</component>
<component>
<icd9/>
</component>
</code></pre>
<p>Script With the Problem</p>
<pre><code>public function populateTemplate():void{
accComponents.removeAllChildren();
for each(var component:XML in XMLTemplate.template.children()){
var newVBox:VBox = new VBox();
newVBox.id = component.@component_name;
newVBox.label = component.@component_longName;
newVBox.width = 388;
newVBox.percentHeight = 100;
accComponents.addChild(newVBox);
if(component.@component_componentID == "999999999"){//icd9component
var tempGridicd9:DataGrid = new DataGrid();
tempGridicd9.setStyle("borderStyle","none");
tempGridicd9.dataProvider = component.children();
tempGridicd9.validateNow();
//tempGridicd9.columns = tempGridicd9.columns.filter(newTempGridicd9ColFilter);
tempGridicd9.id = 'gridICD9';
tempGridicd9.headerHeight = 0;
tempGridicd9.selectable = false;
tempGridicd9.percentWidth = 100;
tempGridicd9.percentHeight = 100;
tempGridicd9.variableRowHeight = true;
tempGridicd9.columns[0].dataField = "@icd9_color";
tempGridicd9.columns[0].width = 25;
tempGridicd9.columns[0].itemRenderer = new ClassFactory(icdDot);
tempGridicd9.columns[1].dataField = "@icd9_icd9";
tempGridicd9.columns[1].width = 60;
tempGridicd9.columns[2].dataField = "@templateIcd9_name";
tempGridicd9.columns[2].width = 283;
tempGridicd9.columns[2].wordWrap = true;
tempGridicd9.columns[3].dataField = "@templateIcd9_templateIcd9ID";
tempGridicd9.columns[3].visible = false;
newVBox.addChild(tempGridicd9);
}else if(component.children().length()>0){
for each (var section:XML in component.children()){
var newPanel:Panel = new Panel();
newPanel.title = section.@sectionType_name + ": " + section.@section_name;
newPanel.width = 368;
newPanel.id = section.@section_sectionID;
newPanel.data = section.@section_sortOrder;
newPanel.addEventListener(MouseEvent.CLICK,panelClick,false,100,false);
newPanel.addEventListener(MouseEvent.MOUSE_OVER,sectMouseOver,false,100,false);
newPanel.addEventListener(MouseEvent.MOUSE_OUT,sectMouseOut,false,100,false);
newVBox.addChild(newPanel);
if(section.children().length()>0){
var tempGrid:DataGrid = new DataGrid();
var tempGridList:XMLList = section.children();
tempGridList = tempGridList.(@questionType_name!="null");
tempGridList = tempGridList.(@question_hideByUserID=="null");
tempGrid.dataProvider = tempGridList;
tempGrid.columns = tempGrid.columns.filter(tempGridColFilter);
tempGrid.id = 'grid'+ section.@section_sectionID
//There is a bug that prevents only showing one line with this:tempGrid.showHeaders = false;
//use below instead
tempGrid.headerHeight = 0;
tempGrid.width = 348;
tempGrid.columns[0].dataField="@questionDisplay";
tempGrid.columns[1].dataField="@question_questionID";
tempGrid.columns[1].visible=false;
tempGrid.columns[2].dataField="@question_sortOrder";
tempGrid.columns[2].visible=false;
tempGrid.rowCount = tempGridList.length();
tempGrid.addEventListener(MouseEvent.CLICK,qDgClick,true,1,false);
newPanel.addChild(tempGrid);
}
}
}
}
}
//This is an addon to the above function
private function newTempGridicd9ColFilter(element:*, index:int, arr:Array):Boolean{
var quickArrayicd9:Array = ["@icd9_color","@icd9_icd9","@templateIcd9_name","@templateIcd9_templateIcd9ID"]
return (quickArrayicd9.indexOf(element.dataField) != -1);
}
private function tempGridColFilter(element:*, index:int, arr:Array):Boolean{
var quickArray:Array = ["@questionDisplay","@question_sortOrder","@question_questionID"]
return (quickArray.indexOf(element.dataField) != -1);
}
</code></pre>
<p>Edit 12/17/09:
This problem continues to infect other datagrids I create with actionScript. Am I doing something wrong with the way I am creating dataGrids on the fly?</p>
http://stackoverflow.com/questions/1921481/as2-does-xml-sendandload-use-post-or-get0AS2: Does xml.sendAndLoad use POST or GET?mattstuehler2009-12-17T12:37:03Z2009-12-17T13:34:46Z
<p>All,</p>
<p>I'm trying to find out, unambiguously, what method (GET or POST) Flash/AS2 uses with XML.sendAndLoad.</p>
<p>Here's what the help/docs (<a href="http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&file=00002340.html" rel="nofollow">http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs%5FParts&file=00002340.html</a>) say about the function</p>
<blockquote>
<p>Encodes the specified XML object into
an XML document, sends it to the
specified URL using the POST method,
downloads the server's response, and
loads it into the resultXMLobject
specified in the parameters.</p>
</blockquote>
<p>However, I'm using this method to send XML data to a Java Servlet developed and maintained by another team of developers. And they're seeing log entries that look like this:</p>
<pre><code>GET /portal/delegate/[someService]?svc=setPayCheckInfo&XMLStr=[an encoded version of the XML I send]
</code></pre>
<p>After a Google search to figure out why the POST shows up as a GET in their log, I found this Adobe technote (<a href="http://kb2.adobe.com/cps/159/tn%5F15908.html" rel="nofollow">http://kb2.adobe.com/cps/159/tn%5F15908.html</a>). Here's what it says:</p>
<blockquote>
<p>When loadVariables or getURL actions are
used to send data to Java servlets it
can appear that the data is being sent
using a GET request, when the POST
method was specified in the Flash
movie.</p>
<p>This happens because Flash sends the
data in a GET/POST hybrid format. If
the data were being sent using a GET
request, the variables would appear in
a query string appended to the end of
the URL. Flash uses a GET server
request, but the Name/Value pairs
containing the variables are sent in a
second transmission using POST.
Although this causes the servlet to
trigger the doGet() method, the
variables are still available in the
server request.</p>
</blockquote>
<p>I don't really understand that. What is a "GET/POST hybrid format"?</p>
<p>Why does the method Flash uses (POST or GET) depend on whether the data is sent to a Java servlet or elsewhere (e.g., a PHP page?)</p>
<p>Can anyone make sense of this? Many thanks in advance!</p>
<p>Cheers,
Matt</p>
http://stackoverflow.com/questions/1921202/drill-down-by-clicking-on-axis0Drill down by clicking on axisAshine2009-12-17T11:45:23Z2009-12-17T11:54:47Z
<p>Hi,
I need to have interactive axis where user can click on it and I can return the clicked data points. I've successfully implemented drill down when series is clicked but can not extend it for axis. Is it possible have interactive(can be clicked over) axis in flex ? </p>
<p>Please provide suggestions in this regard.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1859870/as2-embedded-swf-in-facebook-with-mochiads-loader-access-fb-flashvars0[AS2] Embedded SWF in Facebook with MochiAds Loader, access FB flashvars?Pez Cuckow2009-12-07T13:09:45Z2009-12-17T04:01:55Z
<p>I have a flash game embedded on Facebook but need access to the flashvars facebook passes to all embedded games. However I am using the mochiads preloader meaning that _root.fb_sig_user is always undefined?</p>
<p>How do I get to the variables?</p>
<pre><code>stage.loaderInfo.parameters.fb_sig_user
</code></pre>
<p>Was my best guess and it doesn't seem to have worked.</p>
http://stackoverflow.com/questions/1916336/testing-and-mocking-with-flex0Testing and mocking with FlexElizabeth2009-12-16T17:38:18Z2009-12-16T17:59:29Z
<p>I am developing a "dumb" front-end, it's an AIR application that interacts with a "smart" LiveCycle server. There are currently about 20 request & response pairs for the application. For many reasons (testing, developing outside the corporate network, etc), we have several XML files of fake data, and if a certain configuration flag is set, the files are loaded, a specific file is parsed and used to create a mock response. Each XML file is a set of responses for different situation, all internally consistent. We currently have about 10 XML files, each corresponding to different situation we can run into. This is probably going to grow to 30-50 XML files.</p>
<p>The current system was developed by me during one of those 90-hour-week release cycles, when we were under duress because LiveCycle was down again and we had a deadline to meet. Most of the minor crap has been cleaned up. </p>
<p>The fake data is in an object called FakeData, with properties like customerType1:XML, customerType2:XML, overdueCustomer1:XML, etc. Then in the FakeData constructor, all of the properties are set like this:</p>
<pre><code>customerType1:XML = FileUtil.loadXML(File.applicationDirectory.resolvePath("fakeData/customerType1.xml");
</code></pre>
<p>And whenever you need some fake data (this happens in special FakeDelegates that extend the real LiveCycle Delegates), you get it from an instance of FakeData.</p>
<p>This is awful, for many reasons, but it works. One embarrassing part is that every time you create an instance of FakeData, it reloads all the XML files. </p>
<p>I'm trying to figure out if there's a design pattern that is not Singleton that can handle this more elegantly. The constraints are:</p>
<ul>
<li>No global instances can be required (currently, all the code dealing with the fake data, including the fake delegates, is pulled out of production builds without any side-effects, and it needs to stay that way). This puts the Factory pattern out of the running.</li>
<li>It can handle multiple objects using the XML data without performance issues.</li>
<li>The XML files are read centrally so that the other code doesn't have to know where the XML files are, and so some preprocessing can be done (like creating a map of certain tag values and the associated XML file).</li>
</ul>
<p>Design patterns, or other architecture suggestions, would be greatly appreciated.</p>
http://stackoverflow.com/questions/1910214/effects-library-for-flash-or-flex0Effects library for flash or flexryudice2009-12-15T20:36:36Z2009-12-16T14:44:42Z
<p>Hi, I'm looking for a effects library for flex or flash, I used one in a project but I cant remember the name. It doesnt matter if it's not free or open-source. Thanks.</p>
http://stackoverflow.com/questions/1914985/actionscript-converts-xml-content-to-htmlentities0Actionscript converts xml content to htmlentitiestape22009-12-16T14:29:49Z2009-12-16T14:29:49Z
<p>Actionscript 2.0. I use this code to load some data. The data is some text with html tags within a CDATA section, and some other stuff.</p>
<pre><code>var xml_data:XML = new XML();
xml_data.ignoreWhite = true;
xml_data.onLoad = function(success)
{
trace(this);
};
xml_data.load("http://test/data.xml");
</code></pre>
<p>Why are all my html tags (and other special characters) converted like from</p>
<pre><code><p>
</code></pre>
<p>to </p>
<pre><code>&lt;p&gt;
</code></pre>
<p>And how can i fix this?</p>
http://stackoverflow.com/questions/1852070/flash-as3-global-variables0Flash AS3 Global Variables?coderex2009-12-05T12:18:25Z2009-12-16T11:25:55Z
<p>HI i have a main class</p>
<pre><code>//main.as
package {
public class main {
public var testGlobal:string = "testValue";
}
}
//pop.as
package {
public class pop {
function pop():void {
trace("testGloabl from main.as" + testGlobal);
}
}
}
</code></pre>
<p>How can i get the testGlobal value on pop.as width out using a main class Object.
Is there any method of Global variables??</p>
<p>How to use global variables in AS3 . </p>
http://stackoverflow.com/questions/1704078/using-externalinterface-addcallback-in-air0Using ExternalInterface.addCallback in AIRanucreative2009-11-09T21:45:26Z2009-12-16T09:46:51Z
<p>We're building an Ajax AIR app but want to include a Flex component in it to display photos. Currently using Doug McCune's 'coverflow' but also looking at Sebastiaan Holtrop's 'sebCoverflow'.</p>
<p>We're trying to communicate between JS and the Flex component but can only do this one-way (AS->JS) using ExternalInterface.call(). </p>
<p>ExternalInterface.addCallback (to communicate JS->AS) doesn't seem to work in AIR. Does this sound right? What are people doing to get around this?</p>
<p>According to the AIR documentation (<a href="http://livedocs.adobe.com/flex/3/langref/flash/external/ExternalInterface.html#includeExamplesSummary" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/flash/external/ExternalInterface.html#includeExamplesSummary</a>):
"Note: In Adobe AIR, the ExternalInterface class can be used to communicate between JavaScript in an HTML page loaded in the HTMLLoader control and ActionScript in SWF content embedded in that HTML page."</p>
http://stackoverflow.com/questions/1904778/placing-cursor-into-input-textfield-for-user-input-in-as30Placing cursor into input textfield for user input in AS3mike2009-12-15T01:55:11Z2009-12-16T07:43:09Z
<p>What easiest way to place cursor (focus?) into an textfield input box for receiving user input after an event? Focus Manager classes have always seems very confusing to me.</p>
http://stackoverflow.com/questions/1912058/difference-between-these-two-bit-ly-api-actionscript-implementations0Difference between these two bit.ly API ActionScript implementations?pthesis2009-12-16T03:22:31Z2009-12-16T03:32:55Z
<p>I'm new to Flex and wondering what the difference is between these two ActionScript implementations of the bit.ly API:</p>
<p><a href="http://github.com/julien/as3_bitly" rel="nofollow">http://github.com/julien/as3_bitly</a></p>
<p><a href="http://code.google.com/p/bitly-as3-api/" rel="nofollow">http://code.google.com/p/bitly-as3-api/</a></p>
<p>One thing I noticed is that one comes in .as files and the other's an .swc file. Is one better than the other for learning Flex?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1910248/java-servlets-and-receiving-xml-from-flashs-xml-sendandload-function0Java servlets and receiving XML from Flash's xml.sendAndLoad() functionmattstuehler2009-12-15T20:41:18Z2009-12-15T22:27:51Z
<p>All,</p>
<p>I'm working on a Flash application that's supposed to send XML data to a Java Servlet.</p>
<p>I'm responsible for the Flash app; another team is responsible for the Java Servlet.</p>
<p>The problem we're having is that I'm familiar with Flash but not Java and Servlets; the other team is expert in Java and Servlets, but unfamiliar with Flash.</p>
<p>Anyway, I have some AS2 code that uses sendAndLoad() to send XML data to a server.</p>
<p>It works great when I send it to PHP, or ASP, or ASP.net (stuff I'm familiar with).</p>
<p>However, the Java team is having trouble receiving the information with their servlet.</p>
<p>One of the developers sent me a log entry:</p>
<pre><code>GET /portal/delegate/ParticipantService?svc=someServiceName&XMLStr=[the encoded xml I sent]
</code></pre>
<p>As I understand it, xml.sendAndLoad uses POST, not GET, so I don't understand why this shows up in the log as a GET. Any ideas or explanation?</p>
<p>Also, any suggestions about what to tell the developers about how to receive the XML?</p>
<p>Obviously, it's possible that the issue is with my Actionscript code, but as I said, it works if I send it to a PHP page, where I pick it up with something like this:</p>
<pre><code>$doc = new DomDocument();
$doc->loadXML(file_get_contents("php://input"));
</code></pre>
<p><strong>UPDATE:</strong></p>
<p>Here's what an Adobe Technote says about this:</p>
<blockquote>
<p>When loadVariables or getURL actions are
used to send data to Java servlets it
can appear that the data is being sent
using a GET request, when the POST
method was specified in the Flash
movie.</p>
<p>This happens because Flash sends the
data in a GET/POST hybrid format. If
the data were being sent using a GET
request, the variables would appear in
a query string appended to the end of
the URL. Flash uses a GET server
request, but the Name/Value pairs
containing the variables are sent in a
second transmission using POST.
Although this causes the servlet to
trigger the doGet() method, the
variables are still available in the
server request.</p>
</blockquote>
<p>So, I guess what I need to know is how to tell the Java team to look for and capture the XML that's been sent...</p>
<p>Many thanks in advance!</p>
http://stackoverflow.com/questions/1910353/how-can-i-encode-reserved-xml-characters-in-actionscript0How can I encode reserved XML characters in actionscript?lje2009-12-15T20:55:05Z2009-12-15T21:12:56Z
<p>I am writing a business app in Flex that uses web services to communicate with a middle tier. The web services accept and return messages in XML format. In many cases, I need to be able to allow the user to type something like the following into a field in the app, which in turn will be added as an element in an XML payload bound for a SOAP web service (without the quotes):</p>
<p>"account balance < 1000"</p>
<p>The Flex parser chokes when trying to serialize an element with this in the Text node (e.g., account balance < 1000. So I need some way to encode the "<" to "<" prior to doing the XML serialization. In addition, I would prefer a generic way to do this, such as with an attribute on the service declaration, since I have over 40 services that must support this kind of input. Any ideas? </p>
http://stackoverflow.com/questions/1908890/trying-to-create-a-parallax-effect-in-flash-as30Trying to create a parallax effect in flash AS3michael2009-12-15T17:03:35Z2009-12-15T20:47:38Z
<p>I am adding "layer" objects to the stage with a depth value.</p>
<p>I have then created my own camera class. When I tell the camera to move to the right what Im actually doing is telling each layer object to move to the left.</p>
<p>The distance that the layer moved to the left is based on the value of its depth variable...</p>
<pre><code>var fCameraDepth = 1;
var fTan:Number = Math.tan( fCameraMovement / fCameraDepth );
oLayer.x += fTan * fLayerDepth
</code></pre>
<p>This works well and gives me a really nice parallax effect. The problem I'm having is that I want to be able to tell the camera to look at a movie clip on any layer but I'm having trouble figuring out how to convert the movie clips coordinates to the cameras depth.</p>
<p>Im trying something like this...</p>
<pre><code>var fCameraDepth = 1;
var fCameraPosition:Number = oCamera.x;
// the layer will have a + or - x val compared to the camera so we
// need to take that into account when getting the targets position
var fTargetPosition:Number = oActor.x + oActor.getLayer().x;
var fTargetDepth:Number = oActor.getLayer().getDepth();
var fTan:Number = Math.tan( fTargetPosition / fTargetDepth );
var fTargetPositionAdjusted:Number = fTan * fCameraDepth;
oCamera.x = fTargetPositionAdjusted;
</code></pre>
<p>But the camera just wanders off somewhere (no where near the movie clip)</p>
<p>Can anyone get their head around this?</p>
http://stackoverflow.com/questions/1903195/flex-as3-easy-i-hope-drag-and-drop-question-prevent-dragging-to-other-control1Flex/AS3 easy (I hope) drag and drop question - prevent dragging to other controlsinvertedSpear2009-12-14T20:14:34Z2009-12-15T18:44:38Z
<p>I searched but couldn't find my answer, I'm sure it's easy for anyone with a little experience. I have multiple datagrids on a page, each one I want sortable with drag and drop, but I don't want items drug from one control to the other. How can I prevent a user from dragging an item out of a conrol. I would prefer to have it just stop moving with the mouse, but I am prepared to just completely cancel out of the dragging if need be.<br>
I was trying to do something like this</p>
<pre><code>dragExit="dragEvent.CANCEL"
</code></pre>
<p>This is obviously wrong, but I can't find the correct way to do it.</p>
<p>Thanks in advance.
~Mike</p>
http://stackoverflow.com/questions/1872687/actionscript-3-profiler-memory-analysis-tool1ActionScript 3 Profiler & Memory Analysis ToolMalcolm Lim2009-12-09T09:37:48Z2009-12-15T18:22:18Z
<p>Hi guys,</p>
<p>I'm using Adobe Flash CS 4 and would like to know are there any profiler or memory analysis tools available for it ? (actionscript 3). I know there are available tools for Flex, but are there for Flash CS 4 instead? Thanks.</p>
http://stackoverflow.com/questions/1905572/flex-displayobject-priority-i-e-overlapping-sprites0Flex: DisplayObject priority (i.e. overlapping Sprites)cyberconte2009-12-15T06:32:35Z2009-12-15T18:11:20Z
<p>I havn't been able to find the answer to this, and I hope theres an easy and obvious answer i just havn't found yet...</p>
<p>Within flex (i.e. using actionscript and mxml), given two Sprites, is there a way to force one to be displayed on top of the other when they overlap?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1900294/flex3-format-date-without-timezone0flex3 Format date without timezoneMaurits de Boer2009-12-14T11:13:37Z2009-12-15T17:07:49Z
<p>I'm receiving a date from a server in milliseconds since 1-1-1970. I then use the DateFormatter to print the date to the screen. However, Flex adds timedifference and thus it displays a different time than what I got from the server. I've fixed this by changing the date before printing to screen. But I think that's a bad solution because the date object doesn't hold the correct date. </p>
<p>Does anyone know how to use the dateFormatter to print the date, ignoring the timezone?</p>
<p>this is how I did it:</p>
<pre><code>function getDateString(value:Date):String
{
var millisecondsPerMinute:int = 1000*60;
var newDate:Date = new Date(value.time - (millisecondsPerMinute*value.timezoneOffset));
var dateFormatter:DateFormatter = new DateFormatter();
dateFormatter.formatString = "EEEE DD-MM-YYYY LL:MM AA";
return dateFormatter.format(newDate);
}
</code></pre>
http://stackoverflow.com/questions/1905706/how-to-use-a-static-function-in-actionscript-3-01How to use a static function in Actionscript 3.0?yeeen2009-12-15T07:17:21Z2009-12-15T15:26:46Z
<p>I would like to do the following:
Have a few objects (e.g. 20 of them), each time I mouse over any one of them, it moves up and each time my mouse leaves, it moves down.</p>
<pre><code>obj1.addEventListener(MouseEvent.MOUSE_OVER, moveMyself1);
obj1.addEventListener(MouseEvent.MOUSE_OUT, moveMyself2);
obj2.addEventListener(MouseEvent.MOUSE_OVER, moveMyself1);
obj2.addEventListener(MouseEvent.MOUSE_OUT, moveMyself2);
obj3.addEventListener(MouseEvent.MOUSE_OVER, moveMyself1);
obj3.addEventListener(MouseEvent.MOUSE_OUT, moveMyself2);
obj4.addEventListener(MouseEvent.MOUSE_OVER, moveMyself1);
obj4.addEventListener(MouseEvent.MOUSE_OUT, moveMyself2);
obj5.addEventListener(MouseEvent.MOUSE_OVER, moveMyself1);
obj5.addEventListener(MouseEvent.MOUSE_OUT, moveMyself2);
//and etc...
function moveMyself1(e:MouseEvent):void{
obj1.y -= 30;
}
function moveMyself2(e:MouseEvent):void{
obj1.y += 30;
}
</code></pre>
<p>I don't want to add an event listener for each of the objects, then I would have 40 methods! Is there any way to write a static method so I can use for all the objects?</p>
<p>And I realized the obj is moving up and down too fast. If u try to put ur mouse at the bottom end of the obj, u will see it jumping up n down very fast. Is there any way I can control the speed of the obj?</p>
<p>I wanted to have a few objects in which the user can mouse over and discover treasure underneath, haha. The user can click on the treasure as well. I got this idea from a game. The object will fall bck to the same position after the user moves the mouse away. If the obj moves so fast, the user can't get to click on the treasure inside. Any idea on how to solve the movement issue?</p>
<p>--------------------------------Updated--------------------------------</p>
<pre><code>var elements : Array = new Array();
var elements2 : Array = new Array();
for (var i:int = 1; i <= 5; i++) {
elements[i] = this['obj' + i];
elements2[i] = this['tracking' + i];
}
for each(var element_1 : IEventDispatcher in elements){
element_1.addEventListener(MouseEvent.MOUSE_OVER, moveUp);
}
for each(var element_2 : IEventDispatcher in elements2){
element_2.addEventListener(MouseEvent.MOUSE_OUT, moveDown);
}
function moveUp(e:MouseEvent):void{
e.currentTarget.y -= 30;
}
function moveDown(e:MouseEvent):void{
elements[elements2.indexOf(e.currentTarget)].y += 30;
}
</code></pre>
<p>Above is my updated code, I tried Richard's suggestion, but it seemed like the objs r moving up n down out of my control:(</p>
http://stackoverflow.com/questions/1907323/loading-swf-from-a-seperate-file-server0Loading swf from a seperate file serverinertiahz2009-12-15T13:07:02Z2009-12-15T13:39:47Z
<p>I am currently wondering if it is possible to load a swf that is sitting on another file server. I.e. I currently have a custom play bar swf which is embedded on a website (behind the company's firewall) which then loads swf content (currently in the same folder on the website server).
The problem I have is bandwidth between remote sites is limited and streaming the swf content from the website server is not an option, however we do have a DFS set up to push all the swf content out to local file servers. </p>
<p>I have tried using a file:// path which works if you create a windows projector file however it doesn't work when embedded onto a website as it seems to try to access via http which the file servers are not set up for. </p>
<p>So is it possible to get the play bar swf to load the swf content sat on a remote file server?</p>
http://stackoverflow.com/questions/1900628/wheres-the-documentation-for-swfaddress-optimizer-js0Wheres the documentation for swfaddress-optimizer.js?daidai2009-12-14T12:24:25Z2009-12-15T05:36:17Z
<p>I am trying to make a full Flash site SEO'd and have come across a problem which it seems the swfaddress optimizer javascript can fix, but i can't find out how to configure it. Does anyone know of any documentation or examples to help me out.
Thanks
dai</p>