Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-06-22 Thread Nick Collins
I have been doing active development with Flex 4.6 on my HTC Inspire 4G (running IceColdSandwich/Android 4.0.4) with no such problems. The only problem I have had is that Flash Builder doesn't always see the device as still being in debugging mode, even though the device indicates that it is.

Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-06-22 Thread Jake Churchill
Let's compare really quick... I'm just listening for the orientationChange event and switching states in my view accordingly. (Code below) Is that basically how you handle it as well or are you doing something different? I'm adding this event listener: stage.addEventListener(

Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-06-22 Thread Jake Churchill
One other thing I tried. If I stop the autoOrient and manually flip my orientation via code, the same thing happens. Usually when an app stops in debug mode you get the [Unload SWF] trace line but I'm not getting that so it makes me think it's just suspending it? This is super frustrating

Re: [flexcoders] Flex Mobile Android 4 (ICS)

2012-06-22 Thread Jake Churchill
I got my hands on an android 3 tablet and the same thing happens there. I was also able to test on an android 2.3 phone and it does not happen there. So, anything in android 3 or 4 and orientation changes that I should be aware of? Thanks! -Jake On Fri, Jun 22, 2012 at 12:21 PM, Jake

[flexcoders] Flex Mobile Android 4 (ICS)

2012-06-21 Thread Jake Churchill
I'm in the middle of writing a flex mobile app and when I debug in the emulator it's fine but on my phone (Verizon Google Nexus) when I rotate to landscape it dies. If I start up in landscape, it's fine until I switch to portrait, then it dies. In either case, there is no error in the debug

[flexcoders] advanced datagrid issues

2012-06-20 Thread [p e r c e p t i c o n]
Hi All, I'm working with hierarchical data in the advanced datagrid component. what i want to be able to do is display a small icon next to some text in one of the columns. here's my mxml: mx:AdvancedDataGridColumn dataField=@name headerText=My Header sortable=false minWidth=400

Re: [flexcoders] Binding from a s:Label

2012-06-19 Thread Alex Harui
I remember there was an effort to make fewer things bindable in Spark (there is a cost to making something bindable). In theory, your label should be bound to a data model or presentation model and not to each other. On 6/15/12 1:32 PM, michael_reg...@dell.com michael_reg...@dell.com wrote:

[flexcoders] check if the user has block all sites from using the camera and microphone

2012-06-19 Thread Chuck Preston
Is there a way to check if the user has selected block all sites from using the camera and microphone in the global Flash settings with AS3? I'm trying to access the microphone and if the user has block all sites... selected, I need to put up a dialog box. Microphone.muted is true if the user

Re: [flexcoders] flex library project debug?

2012-06-15 Thread Kenneth Sutherland
It may be that your files are not included in the build path. Right click the library project, go to ‘Flex library build path’, then select the tab ‘Classes’. You will probably find that your classes are being included. If they are included then make sure that the project is being built (just

[flexcoders] Binding from a s:Label

2012-06-15 Thread michael_regert
Just found out that you can no longer bind FROM a spark label's text TO some other object. With MX components, this could be done. Looking at the Adobe code, seems like they removed (or forgot) the binding on the text property for Spark. Is there a reason for this change, or is this a bug?

[flexcoders] Opening open office document (calc) inside iframe

2012-06-12 Thread isa_loyer
Hi, I search a solution to open a calc document (Ooo) inside my AIR application, perhaps inside an iFrame? But I don't know how to do that. Can you help me. Thanks

RE: [flexcoders] Activate Component (enable)

2012-06-12 Thread Davidson, Jerry
BTW, on the itemRenderer problem with the TypeError: Error #1034: Type Coercion failed_it would seem that error is a pretty generic one. I say that because in the google search on it not one of the results on the entire first page had anything to do with itemRenderers and in fact seem all

[flexcoders] Saving Flash Charts in SWF

2012-06-12 Thread sidmails
Hi guys: I've created series of animated charts from User data using Flex. Does anybody know or is it possible to save the charts in SWF format (instead of PNG, JPG) containing User Data plus Animation. In other words, the resulting SWF should be a standalone SWF which can be played in

RE: [flexcoders] Activate Component (enable)

2012-06-12 Thread Davidson, Jerry
I'm sorry. I wasn't clear. I want the button to enable a component (or disable it in the case of the reset button). The component is in the same MXML file. What seems to work seems pretty involved. I had to bind a variable in the component and bind one in the main MXML to pass the state

Re: [flexcoders] Saving Flash Charts in SWF

2012-06-12 Thread Csomák Gábor
you can create a flex project with the graphics and pass the variables as flashvars. it will calculate the display animation runtime, and it will be an swf.but you have to store the variables elsewhere. you could also try reading an xml, but you have to save it somehow. (or get it in runtime via

Re: [flexcoders] Activate Component (enable)

2012-06-12 Thread Alex Harui
A reset button would make it a bit more complicated. Having a data model would be a recommended solution. I would start a new thread about the datagrid problem, but basically, Spark components are not drop-in itemrenderers like MX components. On 6/12/12 6:40 AM, Davidson, Jerry

[flexcoders] Re: Saving Flash Charts in SWF

2012-06-12 Thread sidmails
Hi Csomák, Thanks a lot for your response and thought. You're the first guy to respond on the subject matter that I have posted in many exclusive global forums. Yes, I've thought about and tried it in the same line as yours ... Flashvars, Embedding objects, XML read etc. I already have the

Re: [flexcoders] Saving Flash Charts in SWF

2012-06-12 Thread Siddhartha Das
Hi Csomák, Thanks a lot for your response and thought. You're the first guy to respond on the subject matter that I have posted in many exclusive global forums. Yes, I've thought about and tried it in the same line as yours ... Flashvars, Embedding objects, XML read etc. I already have the

[flexcoders] flex library project debug?

2012-06-11 Thread markflex2007
Hi I created a flex library project and add some flex mxml components the problem is no swc file created in bin folder and I do not get any error message in Flex builder. How to debug this and find problem? Thanks for help Mark

[flexcoders] Activate Component (enable)

2012-06-08 Thread Davidson, Jerry
I have a form that includes a component. The form includes selection criteria and a search button. When the user clicks the search button, I want to enable the component and populate a grid of the results of the search. Taking baby steps, the first thing I want to do is the enabling. Search

Re: [flexcoders] Activate Component (enable)

2012-06-08 Thread Alex Harui
Why wouldn’t you set enabled=true on the button click? On 6/8/12 6:56 AM, Davidson, Jerry jerry.david...@illinois.gov wrote: I have a form that includes a component. The form includes selection criteria and a search button. When the user clicks the search button, I want to enable the

RE: [flexcoders] Activate Component (enable)

2012-06-08 Thread Davidson, Jerry
I think I've found a solution that I'll pass on. UserAA has a bindable Boolean variable that is used to set a property in the component. That property is bound to the enabled property of the container. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

[flexcoders] IconItemRenderer to show image??

2012-06-08 Thread markflex2007
Hi, I am doing a flex mobile project project. I want to show a image list with the code , why I can not show the images in the list. I am sure the data is right. Please help me. i am not familiar how to use IconItemRenderer to show image. s:List id=itemList width=100% top=10 bottom=10

RE: [flexcoders] Activate Component (enable)

2012-06-08 Thread Davidson, Jerry
I couldn't see how to get to the property from the button. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Friday, June 08, 2012 11:56 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Activate Component (enable) Why wouldn't

Re: [flexcoders] IconItemRenderer to show image??

2012-06-08 Thread Srinivas Sandur Madhu Murthy
Use SWFLoader instead of BitmapImage and see whether it works Sent from my iPhone On Jun 8, 2012, at 11:21 AM, markflex2007 markflex2...@yahoo.com wrote: Hi, I am doing a flex mobile project project. I want to show a image list with the code , why I can not show the images in the

Re: [flexcoders] Activate Component (enable)

2012-06-08 Thread Alex Harui
Assuming the button and ting you want to enable are in the same MXML file a typical set up looks like mx:Button label=”enable text search” click=”criteria.enabled = true” / mx:TextInput id=”criteria” enabled=false” / Even more common is the use of checkboxes for enabling mx:CheckBox

[flexcoders] Quick Syntax Question

2012-06-07 Thread Davidson, Jerry
We have a file, UserAA.mxml. It has, among other things, two date fields (id=toDate and id=fromDate). These will be used to filter records. A component in that file, UserAA_Grid.mxml, moves the prior two and several more fields to a VO file, SearchFilterVO.as. SearchFilterVO has public

RE: [flexcoders] Quick Syntax Question

2012-06-07 Thread Davidson, Jerry
I think I use this syntax, but I'm not sure: UserAA.mxml components:UserAA_Grid id=UserAAGrid _inputToDate={toDate} _inputFromDate={fromDate}/ UserAA_Grid.mxml // these are accepted to this component from

[flexcoders] Any recommendation for a commercial Flex 3 WYSIWYG rich text editor?

2012-06-07 Thread handitan
Hi all, I am looking for a commercial Flex 3 WYSIWYG rich text editor, like for example this one: http://www.atomwrite.com/index.html And I need it to have the export-to-XHTML ability. Any recommendation? Thanks! PS: If you know a free one, I will take that too :)

Re: [flexcoders] Adobe AIR/FlashBuilder 4.6: Create reminder in Android App

2012-06-07 Thread Kenneth Sutherland
check out http://www.jampot.ie/ane/ for some good ANE’s From: sdl1326 Sent: Friday, May 25, 2012 6:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Adobe AIR/FlashBuilder 4.6: Create reminder in Android App I am using Flash Builder 4.6 along with Adobe AIR to create an Android

[flexcoders] Libspark QRCodeReader library, mobile devices, Flex 4.6...

2012-06-06 Thread Laurence
Has anyone ever gotten the LibSpark QRCodeReader library to work with Flex 4.6 on a mobile device? The LibSpark library I'm talking about can be found here: www.libspark.org/wiki/QRCodeReader/en I'm trying to get this thing to work in Flex 4.6 as part of a mobile project, and when I run it on

Re: [flexcoders] Looking for a developer to convert an AIR app to iPad in Flash Builder

2012-06-04 Thread Peeyush Tuli
Kevin, i represent MetaDesign Solutions (http://www.metadesignsolutions.com) . We a fair bit of experience in building AIR apps for the IOS platform. In fact we have our own AIR app in the app store as well - http://itunes.apple.com/us/app/adoview-indesign-viewer/id520805082?mt=8 my gmail is

Re: [flexcoders] About Flex to html5 migration

2012-06-04 Thread Rogerio Gonzalez
Hello, I believe that every need has his perfect tool. I work with Flex/Flash/ActionScript since 99, but also work with several others web technologies. You have to know and understand each tool available. I think Flex and Flash has a great future, but Apple and other people burned it a lot, on

[flexcoders] AVI video

2012-06-01 Thread cjacquel73
Hello, I am searching the AS3 code for a AVI video viewer. Thx, Christophe

RE: [flexcoders] AVI video

2012-06-01 Thread Merrill, Jason
http://stackoverflow.com/questions/1163083/flash-video-player-for-avi-files-free-for-commercial-use Jason Merrill Instructional Technology Architect II Bank of America Global Learning ___ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf

[flexcoders] Looking for a developer to convert an AIR app to iPad in Flash Builder

2012-06-01 Thread Kevin MacDonald
Hello, I have a fairly complex app which I currently package as an AIR application for deployment on Windows and Mac. I would like to use Flash Builder's support for iPad and do the necessary work to allow this application to run on the iPad. This might involve re-writing the UI, but re-using

Re: [flexcoders] Looking for a developer to convert an AIR app to iPad in Flash Builder

2012-06-01 Thread Dave Cates
Hi Kevin, That's exactly what we specialise in. Would love to hear more... Won't pass on my personal email address here because of spam but you can reach me here: i...@redemptionmedia.co.uk Thanks, Dave. On 1 Jun 2012, at 23:11, Kevin MacDonald kevinmacdon...@gmail.com wrote: Hello,

[flexcoders] how to open a file system UNC path (windows share)

2012-06-01 Thread vaster3302
How can I open a UNC (windows share) in windows explorer from flex (flash builder 4)? I tried a couple different things: var request:URLRequest = new URLRequest(file://myserver\myfolder); var loader:URLLoader = new URLLoader(); loader.load(request); which gives a stream error and var

Re: [flexcoders] how to open a file system UNC path (windows share)

2012-06-01 Thread Alex Harui
I’m pretty sure UNC is not supported. You will have to map a drive or set up a web server. On 6/1/12 3:57 PM, vaster3302 kaushal.sha...@gmail.com wrote: How can I open a UNC (windows share) in windows explorer from flex (flash builder 4)? I tried a couple different things: var

[flexcoders] Tweens animated on a pixel or subpixel level

2012-05-30 Thread dorkie dork from dorktown
Are tweens animated to pixel or the subpixel value? For instance, if you were to animate a Spark Button x value from 0 to 100 would the button snap to whole pixel values?

[flexcoders] List item drag to datagrid

2012-05-29 Thread isa_loyer
Hi, I work with AIR. I have to window, one with list ( a glossary) and another with datagrid and editable cells. The goal is to drag item on list and drop it on cursor position on itemEditor (datagrid). I don't know how to do that. Please, help me. Thanks

Re: [flexcoders] List item drag to datagrid

2012-05-29 Thread Alex Harui
That sounds hard. The DG’s editor is designed to close if you click somewhere else. Keeping the editor open can cause other problems. Why do you need two windows? Can you make a custom editor that allows you to pick words from a list that is a child of the editor? That should be possible.

Re: [flexcoders] List item drag to datagrid

2012-05-29 Thread Isabelle Loyer Perso

Re: [flexcoders] List item drag to datagrid

2012-05-29 Thread Alex Harui
I think that will still be hard. You will probably lose the TextArea cursor when you activate the glossary window. It will be easier to code if the list is in the same AIR window (it can float over the DG or TA in that window). -Alex On 5/29/12 1:31 PM, Isabelle Loyer Perso

Re: [flexcoders] About Flex to html5 migration

2012-05-27 Thread Csomák Gábor
adobe is working, but there is no guarantee that it will be released. however, don't expect too much, html is usually slow, plus if you convert an app it will not be as fast as it would be if you'd written it in original language. look at ios flex apps for example.. i heard that ie10 will have

Re: [flexcoders] Memory test

2012-05-26 Thread Peeyush Tuli
try the profiler and repeat the steps you suspect for memory leaks. On Tue, May 22, 2012 at 11:17 PM, markflex2007 markflex2...@yahoo.comwrote: ** Hi, It seems my flex app have memory leak, I need do some test. I know System.totalMemory can show how many memory it takes. I need to know

[flexcoders] Adobe AIR/FlashBuilder 4.6: Create reminder in Android App

2012-05-25 Thread sdl1326
I am using Flash Builder 4.6 along with Adobe AIR to create an Android App. I am looking to create some sort of reminder/appointment that will display a notification on screen or in the app bar at the specified time. So far I haven't found a way to do this. I thought I might find this

[flexcoders] Granite Data Services 2.3.2 GA Released

2012-05-24 Thread fwolff999
Hi all, Granite Data Services 2.3.2 GA is out and available for download here http://www.graniteds.org/confluence/display/DOWNLOAD . Maven artifacts have been uploaded and should be shortly available as well. This new release comes with several bugfixes and improvements (see the complete

[flexcoders] Re: DataGrid header styles...

2012-05-23 Thread aceoohay
Alex: If I knew what I was looking for, or knew how to find what I was looking for I would have used the GetStyle for the spcific things I needed. Is there documentation that describes the styles that would be applicable for a datagrid header? Paul --- In flexcoders@yahoogroups.com, Alex

[flexcoders] Apply style on text range in a Spark DataGrid?

2012-05-23 Thread isa_loyer
Does anyone know a way to apply style on text range in a Spark DataGrid? I think that the best way is to have an itemrenderer with textarea but after, I don't know how to do. My goal isn't to change color label if cell is selected. Indeed, in my dream, item is editable, and you can selected

Re: [flexcoders] Re: DataGrid header styles...

2012-05-23 Thread Alex Harui
If you are just interested in text styles, you can probably examine the styles supported for TextInput or Label. In Flex, you can subclass DG and add a “foo” style and support it in the renderer. But odds are that Excel won’t support it. On 5/23/12 2:32 PM, aceoohay pa...@compuace.com

[flexcoders] Memory test

2012-05-22 Thread markflex2007
Hi, It seems my flex app have memory leak, I need do some test. I know System.totalMemory can show how many memory it takes. I need to know the maxim memory size my application can take . Please help. Thanks Mark any idea to fix memory leak,please help also.Thanks

[flexcoders] Re: how to remove new object in stage

2012-05-21 Thread cholid
okay, it works thanks :D --- In flexcoders@yahoogroups.com, Alex Harui aharui@... wrote: Maybe use getChildByName? On 5/20/12 9:59 PM, cholid cholid_ridwan@... wrote: sory for the last complete code, this is the new complete code : import flash.events.MouseEvent; var

[flexcoders] About Flex to html5 migration

2012-05-21 Thread mukul saxena
Hi,    I am flex developer, I would like to know that how can I migrate our flex application to html5 application. Is currently Adobe working such type of migration tool? Is Adobe working on to create html5 framework so that flex developer can use such tools to enhance their flex skills to

[flexcoders] how to remove new object in stage

2012-05-20 Thread cholid
hi all in my app i've add new object new tesObj:TesObj = new TesObj(); addChild(tesObj); and the after i give it instance name tesObj.name = idTesObj; but when i want to remove it, it doesnt work because hasn't found id idTesObj //removeChild(idTesObj); any help ? this complete code :

[flexcoders] Re: how to remove new object in stage

2012-05-20 Thread cholid
sory for the last complete code, this is the new complete code : import flash.events.MouseEvent; var tesObj:TesObj = new TesObj(); tesObj.name = idTesObj; addSmall.addEventListener(MouseEvent.CLICK, addSmallFunction); function addSmallFunction(e:MouseEvent):void { addChild(tesObj);

Re: [flexcoders] Re: how to remove new object in stage

2012-05-20 Thread Alex Harui
Maybe use getChildByName? On 5/20/12 9:59 PM, cholid cholid_rid...@yahoo.com wrote: sory for the last complete code, this is the new complete code : import flash.events.MouseEvent; var tesObj:TesObj = new TesObj(); tesObj.name = idTesObj; addSmall.addEventListener(MouseEvent.CLICK,

[flexcoders] Hierarchical data in datagrid within advanced datagrid example

2012-05-17 Thread vaster3302
I am trying to create a datagrid within a advanced datagrid application so I can provide additional details when expanding the row. I found an example online that use static array as the data source to accomplish this: See data array below: private var dp:Array= [ { name:Krishna,

Re: [flexcoders] DataGrid header styles...

2012-05-16 Thread Alex Harui
There is an object or two on each UIComponent that has styles, but it actually has lots of styles that probably don’t matter. I would just call getStyle for the styles you know you can replicate to Excel. On 5/15/12 3:56 PM, aceoohay pa...@compuace.com wrote: Here are two related

[flexcoders] Memory Leak but why?

2012-05-15 Thread dorkie dork from dorktown
I've created a custom Effect called EndEffect that when played will call the end() method on the target effect sequence. I've tested this code in both the Effect.initInstance() call of the Effect and the EffectInstance.play() method: /** * @private */ override

[flexcoders] Dynamic Composite Effects

2012-05-15 Thread dorkie dork from dorktown
I need to be able to switch between two different child effects based on a condition at runtime such as this: DynamicSequenceEffect conditionOneEffectsArray Fade / /conditionOneEffectsArray conditionTwoEffectsArray Fade / /conditionTwoEffectsArray

Re: [flexcoders] Memory Leak but why?

2012-05-15 Thread Alex Harui
Not sure, but sounds like a scope chain is being stored in the .end() call. On 5/15/12 5:36 AM, dorkiedorkfromdorkt...@gmail.com dorkiedorkfromdorkt...@gmail.com wrote: I've created a custom Effect called EndEffect that when played will call the end() method on the target effect

[flexcoders] Customizing a (spark List) selection indicator?

2012-05-15 Thread Keith
For an MX List I could override the protected drawSelectionIndicator method in a List itemRenderer. For a Spark List, I have no idea how to do this, since there is no drawSelectionIndicator method My goal is to draw my own graphics for the selection indication. I tried overriding the

Re: [flexcoders] Customizing a (spark List) selection indicator?

2012-05-15 Thread Keith
Figured the problem out enough. -Even though I had autoDrawbackground set to false, I DID NOT include all the states I wanted the renderer to show. -Also since I'm using scripted Drawing API instead of MXML tags to draw my graphics I was able to include my script inside the overridden

[flexcoders] DataGrid header styles...

2012-05-15 Thread aceoohay
Here are two related questions, I am using SDK 3.5 FlexBuilder 3; 1) How can I get the header style information from a datagrid? What I need to do is to extract enough info about each column's header to be able to pass it to an Excel component to style the headers of the spreadsheet. 2) Is

[flexcoders] mx:TileList : Why drag doesn't works if allowMultipleSelection is activate

2012-05-14 Thread isa_loyer
I work with TileList to display image like a gallery. At start, I activate only drag option. mx:TileList xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark xmlns:mx=library://ns.adobe.com/flex/mx columnWidth=120 rowHeight=150

[flexcoders] air customize about window

2012-05-14 Thread isa_loyer
I work with Flashbuilder 4.6 and Air application on Mas Os and I'd like to customize About MyApp window. I know that all information about this window is in Adobe AIR Application Descriptor File, but I don't know how to customize. Do you know how to do that? Thanks for helping.

Re: [flexcoders] Loading the IDE (Flash Builder) error

2012-05-14 Thread John Fletcher
Hahahaha. New cafeteria menus promote tighter bun control in schools. 2012/5/11 Davidson, Jerry jerry.david...@illinois.gov ** Whoops. I once asked a guy about “gun control”, but I used a “B” instead and was told to go to the gym. ** **

Re: [flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread Alex Harui
What code works when it is in the “code swf”? On 5/11/12 8:43 PM, flexwdw flex...@yahoo.com wrote: I should add -- this all works with an image embedded in the code swf...it's just when I try to do the same thing from the external swf it doesn't work. I can use the asset as a cursor

[flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread flexwdw
Hey Alex, Two things work: 1) Using the resource embedded in the external stylesheet SWF using a Canvas and the embedded image as a background-image style. In the case I need, it is very preferable to me to render the image in a Graphics content using fillBitmap, thus I'd rather have a

Re: [flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread Alex Harui
Run ObjectUtil.toString() on the results of getStyle(“testPng”). That might shed some light on what it is. It might already be the instance of a Bitmap instead of the class itself. Also, what CSS did you use to embed? On 5/14/12 9:16 AM, flexwdw flex...@yahoo.com wrote: Hey Alex, Two

[flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread flexwdw
Thanks for the help, Alex! So, code: trace( ObjectUtil.toString( StyleManager.getStyleDeclaration(.wdwTest).getStyle(icon)) ); var test:Class = StyleManager.getStyleDeclaration(.wdwTest).getStyle(icon); var bitmap:Bitmap = new test(); CSS (cursor_move is a

Re: [flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread Alex Harui
Hey, your changing your story. First it was embedded PNGs and now it is SWF assets. SWF assets do not have to be Bitmaps. They could be Sprites, MovieClips, etc. I’m surprised that ObjectUtil.toString only showed one line of output. Or did the forum software cut it off? Maybe try

[flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread flexwdw
Hey Alex, Looks like I'm ignorant here. First, yeah, that was the only thing the trace spit out. Secondly, I have never implemented the external stylesheet with embeds other than stuff in our SWF -- so, it sounded right in my head when I said it. (and the SWF is all artsy and stuff. My

[flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-14 Thread flexwdw
Alex, thanks again for you help, it got me there :) I have found the solution. The problem was that this was indeed a vector graphic I was trying to import, so I needed to bring it in as a SpriteAsset. I can addChild the SpriteAsset to component I'm working from...I can then set that

Re: [flexcoders] Loading the IDE (Flash Builder) error

2012-05-11 Thread John Fletcher
2012/5/10 Davidson, Jerry ** I spoke too soon. We are suing ClearCase and I can’t check out and update a module now without the error. Sue the pants off them I say! John

Re: [flexcoders] robotlegs

2012-05-11 Thread Robert VanCuren Jr
I starting using robotlegs about a year ago and I really like it. It's by far my favorite framework (mvc, dependency injection) for as3. I have used it for pure as3 and flex projects. As far as using it for small projects, it can be worthwhile because of the convenience methods that it provides.

Re: [flexcoders] robotlegs

2012-05-11 Thread John McCormack
Thanks Robert. It has really good reports. I was trying not to overcomplicate things but it certainly feels like a good way to go. John On 11/05/2012 17:39, Robert VanCuren Jr wrote: I starting using robotlegs about a year ago and I really like it. It's by far my favorite framework (mvc,

RE: [flexcoders] Loading the IDE (Flash Builder) error

2012-05-11 Thread Davidson, Jerry
Whoops. I once asked a guy about gun control, but I used a B instead and was told to go to the gym. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John Fletcher Sent: Friday, May 11, 2012 4:18 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

Re: [flexcoders] robotlegs

2012-05-11 Thread Rob Romanek
I've been using it since the beginning of the year. All though it can seem like it adds a layer of complication on small projects I have found that even on those when last minute changes came up they were easy to accommodate because of the structure implicit in the framework. cheers, Rob On

Re: [flexcoders] robotlegs

2012-05-11 Thread John McCormack
Thanks Rob. Those last minute changes being easy to make was mentioned in the last entry here for a 100 line project... http://knowledge.robotlegs.org/discussions/questions/898-why-use-robotlegs-more-elaborate-explanation-than-the-book-gives-needed Because my programs are quite small I

[flexcoders] BitmapData from asset embedded in external stylesheet swf

2012-05-11 Thread flexwdw
I can't seem to figure out how to get the BitmapData for a resource embedded in an external stylesheet swf. I'd really like to have a piece of artwork in the swf that I can pull in via code and render into a UIComponent as a bitmap. Does anyone know how to do this? If I use the StyleManager

[flexcoders] Re: BitmapData from asset embedded in external stylesheet swf

2012-05-11 Thread flexwdw
I should add -- this all works with an image embedded in the code swf...it's just when I try to do the same thing from the external swf it doesn't work. I can use the asset as a cursor just fine, so I know there is nothing wrong the asset too. --- In flexcoders@yahoogroups.com, flexwdw

[flexcoders] Passing out of school/college?

2012-05-10 Thread HT Campus
Dear candidate,   As you start evaluating colleges to study in, be it at a graduate or post graduate level, many questions come to mind: Which colleges should I apply to? Is this course going to help me in my career? Will I get good placements after I graduate from this college?   Don’t

RE: [flexcoders] Loading the IDE (Flash Builder) error

2012-05-10 Thread Davidson, Jerry
I spoke too soon. We are suing ClearCase and I can't check out and update a module now without the error. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Davidson, Jerry Sent: Wednesday, May 09, 2012 11:02 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] robotlegs

2012-05-10 Thread John McCormack
Hi there. I am about to start some small AS3 projects. I do like the idea of the structure that robotlegs offers and am considering whether to invest the time to get into it. Please let me know if... a) you use robotlegs and like it. b) you consider it worthwhile for small projects. Thanks

[flexcoders] ScrollPane

2012-05-10 Thread Rogerio Gonzalez
Hello everybody! Any of you are using the ScrollPane with Air in iPad? Seems that they do not implement swipe on this component... is that true? Regards! Rogério Gonzalez

[flexcoders] utf-8 format with csv extension

2012-05-10 Thread michael_regert
I want to save a file in utf-8 encoding format (NOT utf-8 without BOM). There is no explicit information on Adobe Charset support page (http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/charset-codes.html) I want to save the file in utf-8 format with csv extension. I have tried

[flexcoders] Cursor artwork in the stylesheet

2012-05-09 Thread flexwdw
So, using 3.6 SDK, I want to put the artwork for my cursors in the stylesheet swf rather than embed them in our executable swf. I know I can accomplish this by generating a Class for the artwork using UIComponent's getStyle(skinNameInTheStylesheetSwf) and then using that to set the cursor.

[flexcoders] Loading the IDE (Flash Builder) error

2012-05-09 Thread Davidson, Jerry
I got the following error on opening Flash Builder 4 Premium (4.0.1 build 277662): A problem occurred when opening project wvs-flexlib. Try quitting and restarting the application. If the problem persists, you might be using an unsupported project version, or your project files might be

Re: [flexcoders] VerifyError: Error #1014: Class mx.core::ByteArrayAsset could not be found.

2012-05-07 Thread Alex Harui
If you embed a bytearray, the compiler will want to link in a ByteArrayAsset for it, so you will need to link it in or provide it in an RSL. In your command-line, the definition for ByteArrayAsset is somehow being designated as external. One tidbit: In Frame1 of a SWF, all dependencies are

[flexcoders] calling jar file method from FB/Air 3

2012-05-07 Thread MicC
looking for a simple example of using native process to call a jar function ... downloaded 'flerry' but cannot get the example to work, cannot get anything out of 'transmission' either :-( as always tia.

[flexcoders] Slider on image

2012-05-07 Thread cjacquel73
Hello, How to superimpose a slider or an icon on an image ? Thank you, Christophe

[flexcoders] Using Windows fonts in Flex

2012-05-07 Thread michael_regert
How can I use the fonts in the Windows/Fonts directory in Flex? Looks like in Flex 3, I could say @font-face {src:local(fontname_... But, with Flex 4, it says local is no longer supported. I don't want to hardcode a url, like c:\Windows\Fonts given that it may not be installed on C: Michael

[flexcoders] RE: Using Windows fonts in Flex

2012-05-07 Thread michael_regert
Got it working. Michael J. Regert From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Regert, Michael Sent: Monday, May 07, 2012 1:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using Windows fonts in Flex How can I use the fonts in the Windows/Fonts

Re: [flexcoders] Modify label text

2012-05-06 Thread Csomák Gábor
add the datachange event listener to the itemrenderer, and on datachange, set the label, or the variable what you bind to it. you can't bind functions. On Sat, May 5, 2012 at 8:53 PM, cjacquel73 chjacque...@gmail.com wrote: Hello, How to modify the text of a label in an itemrenderer by a

[flexcoders] mx textarea and paragraphs

2012-05-06 Thread faizal_ac
Hi, I have been using the Spark Textarea for displaying responses from my server, and i have been using the paragraphElement to add to this textraea in the proper format. The problem is that some responses are quite large and the performance such as scrolling is compromised using the spark

[flexcoders] VerifyError: Error #1014: Class mx.core::ByteArrayAsset could not be found.

2012-05-06 Thread cuttenv
I have been trying to narrow down this issue for awhile now I think I am rather close but not quite there yet. This is a runtime error that occurs whenever I try to compile my project on the command line. It doesn't happen in Flash Builder. I have an Actionscript only project that is throwing

[flexcoders] Modify label text

2012-05-05 Thread cjacquel73
Hello, How to modify the text of a label in an itemrenderer by a function like this ? s:Label id=labela text={getText()}/ Thank you, Christophe

[flexcoders] Data children disappearing when off range on DateTimeAxis

2012-05-04 Thread k.sigiscar
Hi, I have a mx:CartesianDataCanvas: mx:annotationElements mx:CartesianDataCanvas id=volumeColumnForegroundCanvas / /mx:annotationElements On which I add some data children

<    5   6   7   8   9   10   11   12   13   14   >