Flex :: Error #1502 Thrown When Using Dynamic Border Metrics In GraphicRectangularBorderSkin
Apr 14, 2010
I have a skin that's base clas is GraphicRectangularBorderSkin (from degrafa). I'm using it as a panel skin. I'm using Degrafa 3.2, Flex 3.2. It throws a #1502 error (thrown when a script runs too long) every time. If I remove the line changing the em variable, the error goes away.The class is basically (although I paraphrased for the sake of clarity):[code]
View 1 Replies
Similar Posts:
Sep 7, 2010
I am getting a script timeout (error #1502) when I am calling a SharePoint Web Service (CopyIntoItems) when trying to upload large files (greater than 40 MB). The error does not occur when using the Web Service for smaller files. The large files can be uploaded directly to SharePoint using the web interface therefore it is not a back-end SharePoint issue. I believe the issue has to do with the logic in the WebService Flex component, however I am not sure how to optimize it and I cannot break down the file into smaller chunks as it needs to be together in order to upload with the SharePoint field information.
View 1 Replies
Feb 3, 2010
I got this error and I am not sure what it's about. The last thing I remember doing is adding a clearInterval() method to clear some setTimeOut() intervals varibles. besides that I am not sure what it could be. Not asking for a solution. But if anyone know's any possibilities of what it could trigger that error, maybe that
View 2 Replies
Jan 15, 2011
I have strange error which i tried to fix all day but with no result. The application is working fine in debug modus, but after I uploaded it to my server it throws following Error:
[Code]...
View 4 Replies
Dec 24, 2010
I have this code:
function LoadLogo():void {
parent_container = new Sprite();
addChild(parent_container)
var path:String = "images/logo.png";
var req:URLRequest = new URLRequest(path);
[Code] .....
Works fine in another file, but not here. The trace prints. The error never does...even when the path is deliberately incorrect. The trace doesn't print if it's in the first line of LoadedLogo. No error is ever thrown.
View 5 Replies
Mar 11, 2009
I have a site I'm maintaining that consists of multiple pages that tween in their menus on a single monstrous AS2 timeline. I've broken the timeline into their own swfs that I want to now network with a swf loader and AS3 code. I've kept the timeline tween-ins, after stripping the AS2 code off all buttons. I put the AS3 code on the last frame of the timeline in an .as layer.So on the main page, on the last frame of the animation in an ActionScript layer, I put the following:
Code:
var defaultSwf:URLRequest=new URLRequest("defaultHeadShot.swf");
var swfLoader:Loader=new Loader();
swfLoader.load(defaultSWF);
addChild(swfLoader);
[code]....
I keep getting the Type 1009 error. I'm trying not to have to rebuild the graphics from the ground up, which it doesn't seem like I will have to do. I think it's probably got something to do with putting all the code at then end of these complex tweening timelines, and that a line of code that offers a scoping cue might be the answer, but I'm stumped.
View 2 Replies
Nov 28, 2010
I have a swf that i cant change (i dont own the code and its copyrighted). In some cases, Im getting error 1502, after 30 seconds executing the file.Is there a way to change or disable the default timeout period? Remember that i can´t edit the .fla
View 3 Replies
Sep 15, 2011
I have implemented a basic login screen and its working ok except that it's giving me this error and is taking long to execute:
Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds. at login_screen/Checklogininfo()[login_screen::frame1:34]
Script is the following:
login_error_lbl.visible = false;login_ok_btn.addEventListener (MouseEvent.CLICK,Checklogininfo);
function Checklogininfo (event:MouseEvent):void{ while ((User_name_txtbox.text != "xx") || (Password_txtbox.text != "y")){ login_error_lbl.visible = true; /////////////////////////////////////////this part of the "while" is taking very long to execute User_name_txtbox.text = ""; Password_txtbox.text = "";
} this.visible = false;}
View 8 Replies
Apr 27, 2010
I can successfully add a validator on an item in my datagrid, by passing in the particular element in the dataProvider to the validator, but I can't get the red border to show up around the cell if the validation fails. I have stepped through the validator, and confirmed that it is passing back a failure, but I can't figure out why the red error border doesn't show up. I have a feeling its because I am passing the item in my dataProvider as the validator source, rather than the 'cell' item, but I can't find a way to access the cell.
View 1 Replies
Jun 16, 2011
I'm trying to write the following 16bit WAV header data into a 16bit bytearray..? Using actionscript 3.
52 49 46 46 54 00 13 00 57 41 56 45 62 65 78 74 5A 02
What i'm doing is trying to pass the correct bytearray to this mp3 encoder (http://code.google.com/p/flash-kikko/) to get it to write out an mp3. If i use their example, i can open a 16bit WAV file via filereference and pass in that bytearray to the encoder to export an mp3... but i wanna create my own bytearray and pass it in and create the mp3. Using HxD, i copied the header and footer of that same 16bit WAV file and pasted it into flash as a bytearray but when i pass it into the encoder, it freezes the compile.. and i get the error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds.
View 2 Replies
Apr 11, 2011
Is it possible to disable "Error #1502" when my script is longer 15 seconds?
View 3 Replies
Aug 9, 2011
Recently I configured my BlazeDS to use Array instead of ArrayCollection for performance reasons. Additionally I adjusted my templates to generate Array properties.Everything wen't fine. All except one function that causes TypeError: Error #1034. These are being thrown before the result callback is called. It claims to have problems casting an ArrayCollection to Array. I removed the generated types to make Flex use Objects instead, but these did not contain any ArrayCollections. My question now is: How can I get the stack-traces of errors thrown in event-handlers? I allready added handlers for unhandledExceptions in all of my modules and they are called if errors occur in code triggered from user-interaction, but they don't seem to be able to catch stuff thrown by event-handlers.How can I track these Errors?
PS: The classes are:
package de.upw.ps.ucg.model.ucg.scheduler {
[Bindable]
[code]......
View 2 Replies
May 23, 2011
I am new in Flex, and I am trying to retrieve info from an external url's information. So right now I am using a call a url from another server when the user clicks on the link( this brings up the IFrame with the url embeded). If successful (based on arguments sent with the url) then a correct page will load up. But, if unsuccessful, ( i will get a exception error on the webpage embeded on the link i have given) then i need to display a pop up that says error and return back to the previous page. Is there a way to check if i am getting an exception error from the url site i am retrieving?
Is this possible to load the urls info first and if success then load, and if not bring pop up? ** additional note, I am trying to catch a servlet exception http 500. Below is a peice of the code, so when this component is called, by a click button, it puts this IFrame in the view contents with the url, but i want to know if the http status code is recieving 500, or 400 etc. so i can stop this call and load up instead a error popup.
[Code]...
View 1 Replies
Jan 30, 2011
I'm trying to set up a collision so that when a bullet hits a wall it is destroyed. Here is the snippet of code I am using: PHP Code:
[Code]...
This method works great for when detecting a collision between other moving instances and the walls, but for some reason with the bullets I get this error message when they almost touch the wall and Flash freezes and I usually have to restart it: PHP Code:
[Code]...
View 2 Replies
Nov 6, 2010
I'm working on implementing communication between an Adobe AIR app and a browser Flash object, and the LocalConnection documentation mentions an asyncError as a potential event:
asyncError: Dispatched when an exception is thrown asynchronously — that is, from native asynchronous code.
However, that's the only documentation I can find on it. Does anyone know what this error actually means? I've searched around but couldn't find any reference -- most sample code I found does an addEventListener() for the asyncError but doesn't give any clue as to what it means or when it could occur (i.e. if it could occur when sending or when recieving).The Adobe documentation page also lists potential events for each method, but asyncError isn't listed under any specific method, only for the general class.
View 1 Replies
Mar 26, 2004
My question is related to putting a border around an image. I am dynamically loading images from an xml file and they appear as thumbnails. I want to put a 1 or 2 pixel black border around the image when I load it. The problem that I see is that some of the images are portrait and others, landscape. I hope there is a way to do this in AS? I have searched the forum but nothing.
View 3 Replies
Jul 1, 2004
I have a dynamic border with a loader and buttons and whatnot. It works for the most part, but when the images have not loaded on the persons machine before, there is an occasional glitch preventing it from displaying properly(the border shrinks to nothing, the loading bar goes to aobut 10px, etc.)
[Code]...
View 3 Replies
Jun 27, 2005
Just thought I'd see if this is possible with the XML Photo Gallery.1. Is it possible to create a dynamic border for the loaded image depending on the size of the image being loaded? 2. Is it possible to move the Y position of the caption text box depending on the height of the loaded image? ie if the image is 200 pixels high, then the text box should be positioned at 220 pixels.The current code I have which loads the images then automatically scrolls through them is:
Code:
delay = 6000;
// -----------------------
[code].....
View 1 Replies
Mar 26, 2004
My question is related to putting a border around an image. I am dynamically loading images from an xml file and they appear as thumbnails. I want to put a 1 or 2 pixel black border around the image when I load it. The problem that I see is that some of the images are portrait and others, landscape.
View 3 Replies
Jul 1, 2004
I have a dynamic border with a loader and buttons and whatnot. It works for the most part, but when the images have not loaded on the persons machine before, there is an occasional glitch preventing it from displaying properly(the border shrinks to nothing, the loading bar goes to aobut 10px, etc.)Here is the gallery thing (only 1 - 11 are uploaded)I assume it's some kind of issue with loading, as in resizing before loading properly or something...but to me the code looks fine. The big problem with this error is it's extremely hard to troubleshoot as i have to upload the SWF, and clear my cache everytime.
View 3 Replies
Feb 12, 2004
Is there a way to set the border of a box to be set in actionscript, as well as set a glow property.I am going to be resizing the box using actionscript so if I have it as an image or in the mc it will be resized and that would be no good.
View 10 Replies
Mar 27, 2012
Im adding video windows to a video object inside mxml file
videoMovie = new Video(120,80);
Now would it be possible to apply a rounded border of 2px on this somehow?
I know you can use
<s:controlBarContent>
<s:Label text="cornerRadius:" />
<s:HSlider id="slider"
[Code]....
On regular objects but cannot find out how to do this with dynamically added ones :(
View 1 Replies
May 2, 2006
Anyone know if there is some actionscript that could draw a border around a movieclip?
View 3 Replies
Jul 24, 2008
I need to know that how to create a border to dynamic MovieClip.
I wanted to give a border to thumbnails which is coming through xml
View 1 Replies
Apr 9, 2004
I have a background with a border that is behind dynamic images. I am trying to resize the background to custom fit each jpg that is loaded. However, I cannot get the width/height from the movieclip the jpgs are loaded into and I can't get the width/height from the jpgs.
Here is what I tried:
setProperty("_root.serve_contents.photo_button.pho to_background_image.subpages.photo_examples_bg", _height, getProperty("examples/photo/event/amcel_medium.jpg", _height));
[Code]....
View 1 Replies
Jan 12, 2012
I have created a class which will use an embedded font to dynamically generate a bitmap font at run-time. So far it works well except that I have a minor issue with character spacing.
In the image below the first line is an actual TextField and the second has been rendered using the generated bitmap font.
If you look at the word 'fox' or the 'ed' of the word 'jumped' you can see that the letter spacing looks a little bit odd.
Are there any alternatives to the TextLineMetrics class which will give me more accurate character metrics?
UPDATE :
Text rendering quality using the new Flash Text Engine :
UPDATE 2 :
By chance I have eventually found the solution :
The first problem was the antiAliasType property which was set to AntiAliasType.ADVANCED. Although it produces higher quality text it also causes TextLineMetrics to return incorrect widths for characters.
The second was that it had to also be rounded up (using Math.ceil) to the nearest pixel and not down.
View 1 Replies
Jun 2, 2010
We have installed FMS and have used it for a live streaming video event.The event lasted an hour and FMS worked great.How can I get statistics on that live stream? I'd like to know how many people saw the video, and how many people were watching at one time.
View 1 Replies
May 25, 2010
I'm using evt.target.borderColor = 0xff00000 to successfully change the color of a dynamic text filed that is the target Now I'm trying to change the border size. borderSize isn't being accepted, so I was wondering if there is an attribute to change the border size of a text field? My internet searches are coming up with nothing that works.
View 1 Replies
Oct 18, 2003
How would I make a dynamic text boxes border a certain color, along with background color.
View 1 Replies
Feb 1, 2004
Here's my latest attempt at rendering a dynamic rectange (w/ width, height, border_width, border_color & background_color) I'm trying to render a dashed border, and can't seem to get the code right...
I've reworked my logic about five times, and can get the dashes to render right (almost) but the fill color disappears. It's rendered using actionscript. You can see the issues if you change the border width... Anyone mind taking a look to see what I'm doing wrong? It seems like the moveTo function isn't behaving right when I get to the end of each line.
[Code]...
View 3 Replies