Actionscript 3 :: Flex URL History Management - Not Working Properly The First Time
Jan 22, 2011
I'm having a flex "design studio" for T-shirts, and I have made so that when a given itemId is passed in the URL (using #item=3), the corresponding item should be directly loaded.
[Code]...
View 1 Replies
Similar Posts:
Apr 4, 2011
So I made a drag and drop app where I can drop in an image, it get's resized and saved automatically on the desktop.
But now I want to do the same when there are multiple images dragged in. This is where I'm stuck...
private function onDrop(e:NativeDragEvent):void
{
trace("Dropped!");
var dropfiles:Array = e.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT) as Array;
[Code]....
The problem is that I want the completeHandler() to run after every ldr.load() but in my code it only runs once right after the for each loop.
View 1 Replies
Sep 21, 2010
I'm using the following mxml code for displaying a list of some data. I built a custom renderer which can have variable height. Each time a new data arrives, the scroller should go to the end of the list. I registered to the events which triggers an array change.
It's working fine if the height of items is the same. But if this is not happening, the scroller is going a little bit above the end.
If the height of an item from the middle of the list is bigger, then the last items are not visible.
<s:Scroller width="100%" height="100%" id="scroller" horizontalScrollPolicy="off">
<s:DataGroup
id = "lstComments"
[Code].....
View 1 Replies
Aug 26, 2010
I am using the flex HTML component and I would like to clear the history of the control when it is taken off screen, so that when it comes back on again the history is reset.
The only thing I can think of at the moment is to set the HTML control to a new HTML control, although this is a bit of a pain.
View 1 Replies
Oct 26, 2009
How do I indicate the visit history on a flex tree component? I want to highlight the clicked/visited nodes to a different color and will not change after that, so that all the visited nodes will be one color. I tried adding an attribute to the underlying XML by
[Code]....
This code does retain the new color, but it also changes the color of nodes which are not visited at all. What am I doing wrong here? Is there any better way to achieve this?
View 1 Replies
May 22, 2009
I've got a Flex application that uses link buttons. As soon as I incorporated the link buttons (I assume) the Flex framework started putting history tracking elements below the app in the DOM. For example IE6-8 get an iframe element with id of ie_historyFrame, chrome/safari get a safari_rememberDiv and FF gets a firefox_anchorDiv.
Now, there would be no problem if these elements were hidden by the framework, but they're not. The sit underneath the Flex app (visually and in the DOM) and have a bunch of serialized history data.
I was wondering, is there a way to hide them through configuration or code? I know I could hide them via CSS but it just seems nasty that I'd have to use CSS for something that Flex is supposed to manage. I want the application to be site independent.
View 5 Replies
Mar 31, 2010
I am deploying a desktop application using AIR, and I would like to store some user-specific data on the machine such as a history of his entries.
View 2 Replies
Jun 16, 2009
I have a NetStream set up and it's supposed to listen for DRMAuthenticateEvent.DRM_Authenticate. When I give it an encrypted file (encrypted using software from drm-x.com), no DRMAuthenticateEvenet seems to be dispatched. The code looks like this:
[Code]...
I have both proxy and drm authentication types in there because drm was not working for me so I decided to try proxy. Am I doing something wrong? I got this stuff off of the Adobe reference pages, is there an easier/smarter way of going about DRM in Flex?
View 1 Replies
Nov 10, 2009
I was recently profiling my application that uses Degrafa States in the skins and noticed that doing so uses more memory than I expected. Between the SetProperty and State, they were using about 10% of the total used application memory.
Would it be better to use css for the state changes and a new skin for each state? or Are there some simple tips to reducing the memory footprint of degrafa?
View 1 Replies
Nov 24, 2011
I am a flex programmer but i had nothing to do for handle manage memory in my projects. I think lack of memory management is reason for loading lag of swf file. Can any one help me to how to handle manage memory in flex/ as3 codes.
View 1 Replies
Jun 8, 2009
Can anyone explain me the difference of all and also an another question does Zend AMF support all these.
View 1 Replies
Jan 17, 2005
the difference of all and also an another question does Zend AMF support all these.
View 2 Replies
Apr 2, 2004
i tried following the duplicate mc tutorial, however the part on putting the code in a frame to get it to duplicate on load doesn't seem to work for me
here's my code in the frame:
stop();
amount = 5;
while(amount>0) {
[Code]....
apparently the clip only gets duplicated once where's the problem?
View 5 Replies
Jun 14, 2010
I am new to Flex. I am just wondering how to manage session and cookies for logging in, logging off in Flex? I am using Flex HttpService and Java servlet.
View 1 Replies
Feb 17, 2011
I am planning to build a giant management system in Flex 4.0, and I just wanted to know what are some pros and cons of using 4.0 (or 4.2) over 3.5? Lighter components? Faster pipelines? What are some things I can look forward to when using Flex 4.0?
View 2 Replies
Jun 25, 2009
I'm trying to do in this case is populate a List UIComponent that I created with information that I get back from the PHP file. For some reason the loader.addEventListener(Event.COMPLETE, userOnLoad) isn't working and my program never gets any farther than that.
Here is my code:
import fl.controls.*;
import flash.display.Sprite;
import fl.managers.StyleManager;
DECLARATIONS
var backgroundArea:Sprite = new Sprite();
var loginArea:Sprite = new Sprite();
var userArea:Sprite = new Sprite();
[Code] .....
View 1 Replies
Nov 26, 2010
I've noticed that by using isNaN(number), it doesn't always return true when needed. In fact, by using:
var bool:Boolean = isNaN(parseFloat(numberStr));trace(bool);
It will return true with:
-sdfda
$%&$
asdf
BUT, false (when it should be true) with:
230asdfs
230sdfasd.50
It seems like the letters between the numbers aren't even considered and it returns false when it should in fact return true... If it starts with a letter, it returns true, otherwise, with a number, it's false...I need to check whether or not there are any non-numeric (except "dot") in the parameter "numberStr" (a String).
View 4 Replies
May 6, 2011
I've implemented an internal preloader in my project but it's not working properly. I use Simulate Download but the preloader only shows after something like 80% is completed, which sort of destroys the purpose of the whole thing.
import flash.events.ProgressEvent;
stop();
function preloader(progressEvt:ProgressEvent):void{
var totalBytes:Number = progressEvt.bytesTotal;
var loadedBytes:Number = progressEvt.bytesLoaded;
[Code] .....
View 6 Replies
Oct 2, 2011
I don't really get UncaughtErrorEvent working for my Air 2.6 application. if i step through the code with the debugger, i get very strange results.that's the code:
public class Main extends Sprite{
public function Main(){
loaderInfo.uncaughtErrorEvents.addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR,
[code].....
View 9 Replies
Dec 29, 2011
I have a Flash gallery that works locally but not after upload.I added several photos to the xml file and only the original 8 jpgs are displayed.URL...
View 5 Replies
Jun 30, 2009
I have a preloader in the first frame. The preloader appears only after 80 percent loading of swf.
View 0 Replies
Jul 6, 2009
The stop() is not working properly as if it were being ignored. I have even recreated a dummy flash document the stop() did work, however, it is still not working on the original design.
View 6 Replies
Aug 6, 2009
I'm setting up some objects connected to classes onto a movie clip dynamically, and although I'm setting the name fine, when I drag another movie clip on top of it and trace for droptarget.name I always get something like "instance01" what am I doing wrong?
View 4 Replies
Jun 26, 2009
i've been going over this code all day and I have no idea what's wrong with it. I'm doing a similiar operation a little higher and that one works so I have no idea why this one doesn't. All I'm trying to do in this case is populate a List UIComponent that I created with information that I get back from the PHP file. For some reason the loader.addEventListener(Event.COMPLETE, userOnLoad) isn't working and my program never gets any farther than that.
Here is my code:
Code: Select allimport fl.controls.*;
import flash.display.Sprite;
import fl.managers.StyleManager;
[Code].....
View 1 Replies
Mar 4, 2011
I sorted this problem before, but it's back again.
Both of my animations work fine in firefox, but don't loop in IE.
ABOUT ME [URL]
KZX ANIMATION 2ND FROM BOTTOM [URL]
confirm that these animations don't loop properly in IE?
View 2 Replies
Aug 25, 2009
When tested my email window opens twice.
There is no target attribute used at all.
Also ?subject= don't work. Subject field blank in email popup box.
Using Flash 8.
on (press, release) {
getURL("mailto:me@thisplace.com?subject=No subject showing");
}
View 2 Replies
Sep 8, 2009
I have created an image gallery for a client using actionscript 2 and xml. I have the gallery pulling in the images and text from the xml file and displaying correctly. The problem is the rollover/rollout affect I need to do. The image need an itunes affect flip, so the image looks like it flips to display a description then when you roll out it should flip back to show the image. The flash so far can be seen here [URL]
The flash works by pulling the image in from xml and putting it inside a place holder MC inside another movieclip. This movie clip contains a mask which creates the flip affect and shows a white box containing text over the image. When you rollover this works fine, but when I roll out the image, and title have disappeared when the white box is removed.
At the moment I have left the rollover affect out (as you can see on the link) but for my own sanity I would love to know why I can't get this to work. I probably havent explained this very well so I have attached a demo of how I am trying to get the rollover affect to work.
View 1 Replies
Nov 25, 2009
have generated a random grid from movie clips stored in timeline. When I click on the movie clips, it should show a trace statement, but it is not working properly. Sometimes it shows the trace message, sometimes it does not show. My code is like this
Code:
package
{
[code].....
View 3 Replies
Aug 18, 2004
I have a Flash gallery that works locally but not after upload. I added several photos to the xml file and only the original 8 jpgs are displayed.Here is the html file.[URL]portfolio_residential_ fireplaces.html
View 14 Replies
Jun 22, 2011
The game is like Asteroids where four rocks are placed in the corners of the stage at the beginning and then start moving randomly around the stage. The problem is the timer used is started the moment that the flash file starts not the moment the player clicks the start button. So if you are on the start screen for 5 seconds before you click play when the game actually begins the rocks are where they would be after 5 seconds of play, which could be right over the player.
package {
import flash.display.*;
import flash.events.*;
[Code]....
View 2 Replies