Tagged Questions

New component and skinning architecture in Flex 4

learn more… | top users | synonyms

17
votes
4answers
2k views

What is a “spark” in Haskell

I'm confused about the notion of "spark" Is it a thread in Haskell? Or is the action of spawning a new thread ? Thanks everybody: So to summarize, sparks are not thread but more of unit of ...
10
votes
8answers
10k views

Scroll to selected item in Flex 4 Spark List component

I'm setting selected element in s:List component with Actionscript, it works, but List doesn't scroll to selected item -- need to scroll with scrollbar or mouse. Is it possible to auto-scroll to ...
10
votes
6answers
8k views

Disable Flex CSS type selector warning?

I'm building a somewhat large Flex project that includes several modules (a single Flex project that produces multiple SWFs) Right now, I have a single css file, being loaded in the main SWF tag: ...
8
votes
4answers
1k views

Using Spark View Engine in a stand alone application

My client application needs to generate HTML. I'd like to use a template/view engine solution like Spark, but I'm not sure whether Spark can be used outside of an ASP.NET application. Does anyone know ...
6
votes
5answers
7k views

Flex - How to change open DropDownList height

Using FB4, I want to change the height of an open spark DropDownList. By default, it shows up to 6 items before scrolling. My dropdownlist contains 7 items, so I want to change the height of the open ...
5
votes
1answer
162 views

Spark lifecycle changes between Flex 4.5 and 4.6

I have recently migrated some of my projects to the shiny new Flex 4.6 SDK. I wasn't expecting much trouble since it was only a minor release. But as a matter of fact I got hundreds of errors all over ...
5
votes
1answer
2k views

How to add an image at a specific location in Flex/Spark TextArea or TextFlow

I have a Spark TextArea: <s:TextArea id="editor"> <s:textFlow> <s:TextFlow id="_tf" > <s:p>Lorem ipsum etc.</s:p> <s:p> ...
5
votes
2answers
1k views

How can I define custom 'contentGroups' in a custom Flex 4 component?

The spark panel component for example can be written like this <Panel title="Skinny"> <child components ... /> <controlBarGroup> <child control bar components ... /> ...
4
votes
1answer
61 views

Bundling log4j.properites in a library - bad style or what?

I came across a nice small web request framework for Java - http://www.sparkjava.com/ . Api looks nice and promising, but the library bundle itself is pretty strange. Ok, leave alone the fact that it ...
4
votes
1answer
253 views

Spark form not showing up in flashbuilder 4

I am going through the flex in a week training and I'm trying to use the Spark form in Flashbuilder 4, but it does not appear in the components windows. When I drag a form from there it is an mx form ...
4
votes
1answer
1k views

parentApplication and FlexGlobals.topLevelApplication in Flex 4

In Flex 4, are there any differences between parentApplication and FlexGlobals.topLevelApplication? Are referring to the same top level application? I think both are same; one (parentApplication) ...
4
votes
1answer
1k views

What's the deal with Halo and Spark in Flex 4?

I used Flex 2/3 for a couple of years and have just come back to it, upgrading to Flex 4. I'm seeing some references to Halo and Spark themes but I never got into themes in my previous work so I'm a ...
4
votes
2answers
963 views

ASP.NET MVC View Engine Resolution Sequence

I created a simple ASP.NET MVC version 1.0 application. I have a ProductController which has one action Index. In the view, I created a corresponding Index.aspx under Product subfolder. Then I ...
4
votes
1answer
588 views

How to stop Spark View Engine HTML encoding?

Even with the following in spark section of web.config: <pages automaticEncoding="false"> Things between ${...} Still get passed through H(...), which HTML encodes it. How change this or ...
3
votes
2answers
49 views

Super interface and super class having the same method name

I am trying to create a spark datagrid item renderer. This item renderer extends a checkbox, and implements IGridItemRenderer public class CellCheckBoxItemRenderer extends CheckBox implements ...
3
votes
1answer
92 views

Halo theme on a Spark component

I have a Flex form made up mostly of MX components. Due to limitations with the MX mx.controls.ComboBox, I'd like to use the Spark control, spark.components.ComboBox. This works, except the Spark ...
3
votes
1answer
241 views

Installing secure CodeIgniter with Sparks

Installing Sparks assumes that you are abiding by the default CodeIgniter installation pattern; extracting the application, system, and user guide folders, along with with a index.php and a license ...
3
votes
2answers
543 views

Spark Datagrid memory usage with dynamic columns

I have a question about the Spark DataGrid and how it works in terms of garbage collection. What I'm finding is that if I dynamically add and remove columns from the DataGrid at runtime, the ...
3
votes
2answers
1k views

Adding background image to mx component while using flex 4

Again, a theming question. Because the project I'm working on requires older libraries that extend mx components (such as TitleWindow and TabNavigator), I can't use what I know about Spark skinning ...
3
votes
1answer
383 views

Spark item inside mx component won't render embedded font

I have recently converted a Flex3 AIR project to Flex4, so it now uses Flex4.1 sdk and <s:WindowedApplication>. It is a large project and having painstakingly updated all the vital bits of code ...
3
votes
1answer
1k views

Flex 4 Spark BorderContainer - draw border for specific sides?

Is there a way to easily specify on which sides a border is drawn for Flex 4's Spark BorderContainer? I found this: http://forums.adobe.com/message/2956325 But that uses MX styling which seems like ...
3
votes
4answers
306 views

What is the purpose of 'fb:purpose' in a Flex <fx:Script>?

I've now seen it a few times here and there and it's got me curious. <fx:Script fb:purpose="styling"> //script stuff </fx:Script> So far, I have seen no difference with it there ...
3
votes
1answer
197 views

Is it possible to create skinnable components in MXML using the Spark component architecture?

There are lots of examples of how to create skinnable components in AS3 using the new Spark component architecture, however I've yet to find any such examples using MXML. What I'm mainly referring to ...
3
votes
2answers
245 views

What are the downsides to using Spark over Halo in Flex?

Is there more work, or source code files required to customize your look and feel (skins)? How maintainable and readable is Spark relative to Halo? Is it more productive and easier to customize ...
3
votes
1answer
950 views

Whats the itemChangeEffect equivalent in Spark List?

In flex 3, with List component, you could add an effect to the itemChangeEffect property, allowing you to animate the addition/removal of the items in the list control. The equiv in the spark list ...
3
votes
2answers
190 views

Is is Possible to Use a Master Layout when using Spark in the form of the Direct Usage Example

Is is possible to use a master layout when using Spark in the form of the Direct Usage Sample? I have tried using both in my layout with my master layout in the same folder as the calling layout ...
3
votes
1answer
751 views

ASP.NET MVC 2.0 Prev 1 and SPARK?

I am trying to upgrade the ASP.NET MVC 1.0 application to 2.0 preview 1. I am using the spark as view engine. issue: Spark used the System.Web.MVC 1.0.0.0 so I got the source code and recompiled ...
3
votes
1answer
861 views

Integrating MVC Futures in Spark view engine without killing IntelliSense

I want to add MVC futures to my project and make the assembly available in my Spark views. However it's not accepting it whatsoever. I can use Microsoft.Web.Mvc fine from my classes ...
2
votes
0answers
107 views

MESOS+HADOOP+SPARK: How to correctly setup?

I wish to run spark map/reduce jobs on a hadoop cluster that uses cloudera CDH3. I got the latest mesos snapshop from the apache repo using: git clone git://git.apache.org/mesos.git I had some ...
2
votes
1answer
201 views

Is mx.containers.HDividedBox deprecated in Flex 4.5?

Is mx.containers.HDividedBox deprecated by some spark container in Flex 4.5? I'm new to Flex programming and can't find any spark replacement for it. I want to have 2 Lists separated by movable ...
2
votes
1answer
79 views

Spark Model Methods crash in IF statement

I am using some methods from my viewdata model in Spark, but it doesn't work properly. I thought it was working previously, but it appears to be crashing. Am I doing something wrong that I am unaware ...
2
votes
1answer
142 views

Spark list not displaying selection when an item is removed

I have an issue with Spark Lists whereby I am trying to ensure that an item is always selected and ensure that the GUI displays this to the user. The application (full code below) creates a List, a ...
2
votes
1answer
89 views

Does the Flex4 Host Component have the same function as a view mediator/helper?

Coming from Robotlegs/PureMVC, I am pretty familiar with the concept of the view mediator, i.e. a component that pretty much listens to events/requests coming from the "dummy" view and makes a further ...
2
votes
4answers
2k views

Adobe Flex 4.5 Spark: Binding ItemRenderer Component to Parent

In Flex 3, it used to be possible to bind a component property within an itemRenderer via outerDocument. So for instance, if there was a image inside an itemRenderer that was only displayed on a ...
2
votes
2answers
230 views

Display a message that a Spark List is empty

Sorry, this is probably a really easy to answer question, but how in Flex can I display a message within a Spark List component that states that the List is empty. For example if I have a List showing ...
2
votes
1answer
223 views

How to cancel editing in Halo/Spark TextInput and TextArea components

I am using Flex 4, ActionScript 3. In the AdvancedDataGrid component, when you are in Edit mode in a cell, you can hit the Escape key to cancel editing (i.e. return to the previous value in the ...
2
votes
1answer
324 views

How to display grid lines in a flex 4 list?

I am newbie with Flex 4 (and Flex/AS in general). I am using a spark list control to display certain items with my custom Item Renderer. I am trying to achieve the following: (1) show a separating ...
2
votes
4answers
3k views

How can you display a multi-line column header using the Flex Spark Data Grid?

How can you display a multi-line column header using the Flex Spark Data Grid for Flex 4.5?
2
votes
1answer
82 views

Flex - creating new Primitives

To start - its best to say im new to Flex / OOP in general. I have been trying to add a custom class based on StrokedElement in order to implement a simple grid (not like the existing Flex Grids - ...
2
votes
2answers
519 views

Make disabled Flex Spark Button more readable using CSS

I have a Flex Spark Button that I've changed the background to a dark color using s|Button { color: #66ffff; chromeColor: #333333; } The problem is that when the button is disabled, it's ...
2
votes
1answer
663 views

Flex BorderContainer with dashed lines border

I want to write a skin for BorderContainer with dashed line stroke. I haven't found a property in SolidColorStroke or *Stroke class that provides this feature. Is there a Stroke class that provides ...
2
votes
3answers
295 views

What's the equivalent of this Flex MX code in Spark?

What's the equivalent of an inline itemRenderer checkbox element in spark? <mx:AdvancedDataGridColumn headerText="Eliminar" dataField="eliminar" width="100" textAlign="center"> ...
2
votes
5answers
2k views

Flex: spark form item gap

Is there a way to change the space between a spark form item and its content(textinput, conbobox)? I already set to 0 the "gap" property of the form, but still there is a lot of vertical space left ...
2
votes
1answer
703 views

Flex 4 Label and Selection

I am displaying data in spark Labels. Now I find that the user cannot select and copy the displayed text. The docs don't show what needs to be done (mx.Label allowed this but a spark label does not). ...
2
votes
1answer
289 views

Flex line stroke is blurry, crooked or is not straight looking

problem: Line in flex using mxml that doesn't appear to be straight!? <s:Line width="100%" height="2"> <s:stroke> <s:SolidColorStroke color="0xbababa" /> ...
2
votes
0answers
409 views

Flex 4 > spark.components.VideoPlayer > How to switch bit rate?

The VideoPlayer (possibly VideoDisplay also) component is capable of somehow automatically picking the best quality video on the list it's given. An example is here: ...
2
votes
3answers
1k views

Flex 4 spark Panel has an ugly gray top part

I have a Flex 4 spark Panel I'm popping up through the PopUpManager, but it has a gray portion at the top I can't get rid of. What is that and how can I remove it? UPDATE: An example Panel is below. ...
2
votes
1answer
2k views

Change color of a Flex 4 spark Button

Is there an easy way to change the background color of a Flex 4 spark Button without messing with skins? UPDATE: ok, figured it out, simply set the chromeColor attribute of the Button mxml.
2
votes
1answer
794 views

Skinning a Spark HSlider in Flex 4

The application I'm working on needs to have a slider to allow the user to select a Date. However, the Spark hSlider component does not have a 'labels' field like the halo hSlider does - into which ...
2
votes
2answers
426 views

Spark in a Console Application Targetting .NET 4.0

I was just wondering if anyone has successfully got Spark to work in a .NET 4.0 console application for compiling templates to HTML. Unfortunately I am getting the following error: Unhandled ...

1 2 3 4 5 9