Flex :: DropShadowEnabled No Longer Supported In Hero Build 17689?

Nov 12, 2010

I am using Flash Builder Buritto with the latest "nightly" Flex 4.5 SDK, build 17689. It seems the dropShadowEnabled property is no longer supported with the Hero default skin. I get this compilation error:

The style 'dropShadowVisible' is only supported by type 'spark.components.Panel' with the theme(s) 'spark'.

Is there any way to disable the shadow without making a custom panel skin?

View 1 Replies


Similar Posts:


IDE :: GetURL No Longer Supported?

Sep 4, 2009

I have my swf in an iframe called 'nav', and when clicking on a nav button I want to change the contents of 'main'

Here's my frameset:
<frameset cols="120,*" frameborder="NO" border="0" framespacing="0">
<frame name="nav" src="nav.html" scrolling="NO" noresize>
<frame name="main" src="welcome.html" scrolling="NO" noresize>

[Code].....

View 1 Replies

ActionScript 3.0 :: 1060 Warning - Image No Longer Supported

Nov 5, 2009

I have a bit of code in a flash assignment I am doing for uni and I have come across a 1060 warning that Image is no longer supported.
for each(var img:Object in images){
var image:Image = new Image(img.image1, img.image2);
image.x = img.x; image.y = img.y;
addChild(image);
}

View 2 Replies

Flash :: Integrate With Php - 1060: Migration Issue: The Method LoadVars Is No Longer Supported?

May 23, 2011

I want to integrate my flash file with php code. I got the below code from

[Code]...

I did all the steps given in that forum but while running that code i got error Like 1180: Call to a possibly undefined method LoadVars. Warning: 1060: Migration issue: The method LoadVars is no longer supported. For more information, see the URLVariables class, the URLRequest.urlVariables and URLRequest.postData properties, and the URLLoader.dataFormat property.. 1136: Incorrect number of arguments. Expected 5.

View 1 Replies

Flash :: Flex - TFS Build 2010 Call An Ant Script And / Or Build?

Mar 31, 2011

In TFS 2010 build, I have a new build and I want to call an ant script that builds Flash. How do I call the ant script? Also How can I compile the Flash directly? I've seen the Power Tools and this question but it doesn't help me as we don't have TFS 2008. I can't find any documentation on how to use the power tools except the 1 sentence on the bottom of download page saying to create your build the old way and import it (which isn't very helpful). I've installed the power tools on the agent computer but I don't see any new options in the Toolbox when I'm designing the build flow.

View 2 Replies

Flex :: Creating Ant Build Script To Build Only When A Dependency Was Updated?

Apr 14, 2011

I just started working with ant a few days ago. Right now I have a general buildall.xml which should call each project's build.xml. Because some projects depend on each other, I need to rebuild some other projects which depend on it. This isn't a problem--I'm just setting the depends property of the target. However, ant is always building the dependencies, even when the files haven't changed.Let's say project1 has no dependencies; project2 depends on project1; project3 depends on project1, 2; project4 depends on project1, 2, and 3; and so on.I could hack a solution which looks at project K, and checks if project 1 .. project K have updated files using uptodate. If so, then run the target. This is messy and appears unnecessary.

What is the cleanest way to implement this?EDIT: So I decided to just hack in a bunch of targets, "check_projectK" where it does the uptodate checks on all of its source files, its build file, and the build files of the 1 .. K-1 projects. Due to dependencies, this is always handled correctly. However, this is still a large amount of copy and paste for a large workspace.

View 1 Replies

Flex :: Cairngorm - Use Parsley Framework Hero 4.5?

Nov 30, 2010

I was wondering if Parsley framework is compatible for Flex Hero Mobile 4.5? I seem to get a warning saying it's not compatible.

View 2 Replies

Flex :: Auto-resizing Spark TextArea Using Hero?

Jan 24, 2011

I'm trying to auto-resize a Spark TextArea using Flex Hero but having no luck.

EDIT: To clarify, I want to auto-resize the TextArea when typing, so there's never a scroll bar.

View 3 Replies

Flex :: Workaround For AdvancedDataGrid Flicker In Hero 4.5.0.19786?

Feb 9, 2011

Since I updated to the latest build of Flex Hero (4.5.0.19786) AdvancedDataGrids flicker in design view with Flash Builder Burrito preview. Has anyone run into this and if so is there a work-around besides dropping back a version?

Update 02 19:29 : This did not occur in previous Hero builds, e.g 18623.I am using the default Spark theme, nothing else particularly special.

Update 01 19:15 : I tracked down the problem to an instance of a custom (default custom, i.e the result of doing new->component based on AdvancedDataGrid) on the same form.

The component declaration:

<?xml version="1.0" encoding="utf-8"?>
<mx:AdvancedDataGrid
xmlns:fx="http://ns.adobe.com/mxml/2009" [code]......

The custom component instantiation. Note "fo" is a namespace representing the path to the package for which the custom component resides.

<fo:adgTest width="300" height="200">
<fo:columns>
<mx:AdvancedDataGridColumn headerText="blah1" />[code]......

It turns out that this custom version of AdvancedDataGrid causes the design view to break down. Very odd.

Update 03 2011-02-11 13:36 : A custom AdvancedDataGrid does not cause design-view breakdown unless I add columns to it.

Update 04 2011-02-11 15:13 : Filed as a bug: https:[url].....

View 1 Replies

Flash :: Implement A Infinite List In Flex (hero)?

Apr 12, 2011

I'm new to Flex/ActionScript (.NET/Java has been my main playground so far).I'm trying to build a Flex app that has a list that is meant to look and behave like an infinite list (of items - which can be any object). The idea is that the user should be able to scroll up or down and never reach the end of the list in either direction.

An example would be a list of numbers. Scrolling up will show negative numbers; scrolling down will show positive ones. Now, my list is a simple Flex Spark list (using Flex Hero).It is bound to a data provider that is an ArrayList.My initial idea was to listen to the scroll event and add/remove items as needed. However, in the current build of Flex Hero, there is a bug that doesn't raise scroll events for vertical scrollbars sometimes (http:url].....).So, I'm using the workaround suggested in the link above (i.e listening to the propertyChanged event of the list's scroller's viewport. The event though only gives me the current verticalScrollPosition. And it looks like the default spark list supports smooth scrolling and raises the event many times before the list scrolling comes to a standstill (it is a nice visual effect).Now, I need to :

Figure out whether it is scrolling up or down (how do I do that?)

Figure out which items are visible. I can get this from:

list.dataGroup.getItemIndicesInView()

Add/remove items as needed, so that the user can scroll up and down forever, never reaching the end of the list in either direction.

I've tried the following code but it doesn't work. (comments in code).

import mx.collections.ArrayList;
import mx.core.INavigatorContent;
import mx.events.FlexEvent;[code].....

View 2 Replies

Android :: Flex Hero Mobile Set Background Color?

May 5, 2011

I'm currently working with Flex Hero mobile 4.5 to develop a mobile program.I have searched some forums allready but nobody can help me with this.How do you change the backgroundcolor of your mobile program.I have allready tried to use:

this.setStyle("backgroundColor","0x00FFFF");

View 3 Replies

Flex :: Creating Custom Component With A Drawing For Hero Mobile?

Dec 30, 2010

I'm trying to create a custom component which displays a red rectangle in the middle with the following Flex Mobile project for Android (in Flash Builder 4.5 Burrito) -

MyComp.mxml (has no errors):

<?xml version="1.0" encoding="utf-8"?>
<components:MobileApplication
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code].....

even though I have added c:Program FilesAdobeAdobe Flash Builder Burritosdks4.5.0frameworkslibsmxmx.swc to Flex Build Path (by clicking "Add SWC" button in the project properties dialog).

PS: Power Stackoverflow-users, consider adding a tag for Android-AIR or Flex-Hero or maybe Flex-Mobile

View 1 Replies

Flex :: Assign Variable As Class In Flash Builder 4 Hero SDK

Jan 17, 2011

I am trying to assign a variable to a view navigation as follows:

protected function list_clickHandler(event:MouseEvent):void
{
var name1:String = list.selectedItem.vPage;
var name2:Object = list.selectedItem.vPage.valueOf();

[Code]....

As the View is presented as a static and not a variable. When you try to submit it as a variable in any format (String, Object) an error occurs.

Error #1034: Type Coercion failed: cannot convert "IM" to Class.

how I can send the (View)Class as a variable or if this is a bug in the SDK

View 1 Replies

Flex :: Hero Spark Component - Changing View From Within Custom Itemrenderer?

Mar 22, 2011

I've made a custom list itemRenderer with 2 buttons and a label. One button deletes the list entry (and thats not the problem) the second button would change the actual view.how I can change actual view within the itemrenderer ?

View 1 Replies

Android :: Flex Hero - Mobile Phone Cannot Connect To Flash Debugger

May 6, 2011

I am building an Android application using Flex Hero. When I run the application I can package it fine on my mobile and run it on the device, however, as soon as I want to run in debug mode on the device, the device gives me a message like: "Can't connect to debugger (192.168.1.12). Enter IP-address or hostname". The device is connected with a USB to the PC and USB debugging is enabled on the device. I have tried to shut down the computer's firewall, but no result.

View 1 Replies

Flex :: Scrolling An Editable Spark TextArea From Hero Mobile On A Touch Device?

Mar 21, 2011

How do you scroll an editable TextArea (Flex Hero) on a touch device? I am referring to the situation where the text does not fit in the TextArea height.When I try to tap and drag the text gets selected and not scrolled... Am I missing a something here? I am using verticalScrollPolicy = on (also tried auto).I am testing the code in the Blackberry Playbook simulator (my targeted device for my app).

View 2 Replies

Flex :: Actionscript 3 - Flex Label Baselineshift Supported On Mobiles?

Jun 13, 2011

I need to create subscript text for mobile. I read at [URL} that label's baselineShift property is not supported on the mobile theme. So I created a plain mobile project using the default mobile theme with a couple of test labels and in the FB 4.5 emulator the baselineshift worked fine.

View 1 Replies

Flex :: AIR 2.0 NativeProcess Is Not Supported

Jun 29, 2010

I have built a application that use a nativeProcess to open exe. The application into Flex Builder 3 run whitout errors. Then the problem come when I export the aplicaction AIR in .air and install the applicaction in the developer pc or other pc. When I push the button to open the .exe, appear the message "Native Process is not supported". The code in the main.mxml that I use:

[Code]...

View 3 Replies

Flex :: EncryptedLocalStore Not Supported?

Aug 15, 2011

I am trying to create a secure database for a mobile app using the as3corelib EncryptionKeyGenerator package from here but when I run it I get the following error:Error: EncryptedLocalStore is not supported on the current platformat flash.data::EncryptedLocalStore$/setItem()Googling around I see it is becaue the ELS is not supported for mobiles. Does anyone know of the best solution to this problem? I guess I could use the persistence manager to store the information but I am not sure this is the most secure method.

View 2 Replies

Android :: Which APIs Are Supported In Flex Air

Nov 23, 2010

Anyone know where I can find what Android APIs are supported in the latest Flex AIR SDK (Hero). In particular is the speech to Text API supported?

View 2 Replies

Flex - Determine If Mx Classes/libraries Are Supported?

Feb 25, 2011

I'm writing a helper class and I want it to be used in both flex and pure actionscript projects. For example:

public static function listenToPositionAndSize(control:DisplayObject):void
{
if (mxLibrariesSupported)
{
control.addEventListener(mx.events.ResizeEvent.RESIZE, onControlResize);
control.addEventListener(mx.events.MoveEvent.MOVE, onControlMove);

[Code]...

EDIT: One simple reason to do this is: if you check the above example, I would prefer mx.events.MoveEvent.MOVE (if available) instead of flash.events.Event.ENTER_FRAME for performance issues.

View 3 Replies

Actionscript :: Flex Filter Operator Not Supported

Jun 12, 2009

[code]For the above Flex Code, when I click on the label lb, I get the following message at the runtime:[code]

View 1 Replies

Actionscript 3 :: Flex: Setting A Style That Is Not Supported By A Component

Sep 2, 2010

I am wondering if flex enforce style settings and throws compilation errors if a style that is applid to a component that is not supported by it. Has any one tried it before ?

View 1 Replies

ActionScript3 :: Flex - What Types Of SVG Gradient Fills Are Supported When Using The Embed Meta Tag

Jul 7, 2009

I've been trying to embed some svg files into an AS3 project using the Embed meta tag. For example:

[Code]...

However when displaying these files as Sprites only some of the gradients are surviving the embeding process. From what I've found simple (2 step) horizontal gradients seem to stand the best chance of being preserved, but sometimes other kinds of gradients are as well. In one case simply rotating an object 90 degrees causes the gradient to vanish when displayed in flash. Does anyone know a rough set of rules to use when creating svg gradient fills so they are preserved when rendered in flash? BTW: I used Inkscape to create the images in question.

Update: Bizarrely the solution to this seems to be setting the opacity of any object in the svg file whose gradient isn't displayed properly to a value below 1. Don't ask me why this works but it does. It does however have the unwanted side effect of the objects edges not being rendered as smoothly.

View 4 Replies

Flex :: Error 1123 - Filter Operator Not Supported On Type Object

Jan 25, 2012

I have a a structure like this:
e.item.fatturato_ac_s1
e.item.fatturato_ac_s2
e.item.fatturato_ac_s3
e.item.fatturato_ac_s4
[...]
and so on...

In order to compute dynamically the string I wrote:
e.item.(myStr.toString()) where myStr (type string) = "fatturato_ac_s" + Index (so I can have fatturato_ac_s1, fatturato_ac_s2, ...)
I can correctly retrieve the value of e.item.(myStr.toString()) (a numeric value), but if I try to put it in a variable I get the error in the title:
myVariable = e.item.(myStr.toString())
myVariable is a Number.

I also tried:
myVariable = Number(e.item.(myStr.toString()))
But doesn't work... the same if I try String to String....

View 1 Replies

Flex :: LCDS Is No Longer Baked In Into CF9

Sep 8, 2009

I've heard somewhere that LCDS is no longer baked in into CF9, and LCDS Express will be phased out, is that true?

If I were to start a new CF8.01 + LCDS Express 2.6 project, what are the risks? Should I abandon that plan and go for BlazeDS instead?

View 4 Replies

Flex :: Cut The Strings Longer Than N Characters?

May 6, 2010

what's the easiest way to cut string in Flex ?I mean, I have a sequence of urls, I want them at most 60 characters length. If they are longer they should be cut and "..." should be added at the end.

<mx:LinkButton label="{bookmarksRepeater.currentItem.name}" click="navigateToURL(new URLRequest(event.currentTarget.label.toString()))" />

View 2 Replies

Flex :: Warning: Css Type Selectors Are Not Supported In Components 'sparks.component.TextInput'?

Jun 26, 2010

I am trying to do a simple CSS declaration. However, I got the warning above and not sure how to solve it. I thought s|(type) should declare the style for me

<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";[code]....

View 1 Replies

Flex :: When Add A Valid Statement To Code It Will No Longer Compile

Nov 22, 2011

I am having a problem with my build. When I add a valid statement to the code it will no longer complie and it fails with errors from an unrelated file.I experience these issues building with ant or building with mxmlc on the command line.Adding a valid statement to an myLittleBox.mxml will cause this error.All the errors are in ViewerMain.mxml.This file is not the main mxml file but it is referenced from the main mxml file.Before changing myLittleBox.mxml ViewerMain.mxml had no compile errors.There are no errors related to myLittleBox.mxml myLittleBox. mxml has no references to ViewerMain and only uses spark components ViewerMain.mxml has no direct references to myLittleBox.mxml. Its children's children's children would have a reference to myLittleBox.mxml.The valid statement added to myLittleBox.mxml could be many things (they all break it) including a comment.[code]

I noticed that the Model was using a constant in Viewer 1.This was causing all of Viewer 1 to be built when Viewer 2 is built.I moved the constant from Viewer 1 to the the Model (where it really should have been anyways) and my project built successfully since Viewer 1 and Viewer 2 were not being built at the same time.It makes sense that this would resolve the issue however this is just resolving a symptom of the issue.I am still very curious what was causing the the compiler to fail on ViewerMain.mxml when I add a comment to myLittleBox.mxml.I guess that it will remain a mystery for now.

View 1 Replies

Actionscript 3 :: Flex Is Smaller Varialble Name Is Faster Then Longer Names?

May 21, 2010

We are in process of optimization of Flex AS3 Application.

One of my team member suggested us to make varible name length smaller to optimize the application performence.

i.e.var IsRegionSelected:Boolean = false; //Slower
var IsRS:Boolean = false; //faster

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved