[flexcoders] Image Manipulation

2009-01-08 Thread vinod kumar
 I have dynamically added three images with different colors in a canvas.Now when i click a particular color image a border have to be added at the edges to notify that i have clicked that image. How is it possible Add more friends to your messenger and enjoy! Go to http://messenger.yah

RE: [flexcoders] DataGrid selectAll problem

2009-01-08 Thread Alex Harui
Which example did you start with? Which event do you use to deselect the other rows, and what does that code look like? From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Glenn Jones Sent: Thursday, January 08, 2009 9:49 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Module blues...am I going crazy??

2009-01-08 Thread Alex Harui
I'm not familiar enough with the Java class loader to offer any comparisons. For sure, when a class is not found in Actionscript, the whole app halts and any code that was supposed to run after that does not run. Your workaround is indicative of the shared code problem discussed in the present

Re: [flexcoders] display CLOB in datagrid

2009-01-08 Thread Manu Dhanda
Can you debug and see that there are actually some data to display and they are not just null OR simply objects without any typecast? First you need to verify the channel that it actually receiving the data and CORRECT data. And then verify your datagrid that it is actully assigning the correct f

[flexcoders] DataGrid selectAll problem

2009-01-08 Thread Glenn Jones
Hi, I'm using Flex 3.2 and I have a DataGrid which implements a column of checkboxes to select rows. I started with Alex' example. Then I added a header renderer on the checkbox column such that if check the header, then all rows are selected. To implement the select all behavior, I'm creating an

Re: [flexcoders] display CLOB in datagrid

2009-01-08 Thread greg h
CLOB == Character Large OBjects A SQL datatype. Backgrounder here: http://www.oracle.com/technology/sample_code/tech/java/codesnippet/jdbc/clob10g/handlingclobsinoraclejdbc10g.html g

Re: [flexcoders] Namespace declaration problem

2009-01-08 Thread jitendra jain
May be your flex Build path is not pointing to the required path. Thanks, with Regards, Jitendra Jain --- On Fri, 9/1/09, brucewhealton wrote: From: brucewhealton Subject: [flexcoders] Namespace declaration problem To: flexcoders@yahoogroups.com Date: Friday, 9 January, 2009, 7:55 AM

[flexcoders] exposing remote objects from flex using pyamf

2009-01-08 Thread Gautam
Hi, Any idea how to push data from a python server using pyamf to a flex application. Also, is it possible to expose remote objects/methods in flex so that a python server can communicate directly with the remote object with in flex? Thanks, Gautam.

[flexcoders] Re: DataGrid renderering issue - Porting from Flex 2 to Flex 3

2009-01-08 Thread Glenn Jones
FYI - I found the problem - thought I would pass the info along for posterity. My issue was caused by custom header renderers - if every column used a custom renderer, then I would get this problem. Turns out my custom renderers were not setting explicitHeight or measuredHeight, so the mx:DataGri

RE: [flexcoders] Searching Multi Demensional arrays

2009-01-08 Thread Randy Martin
Try this: Public function findPath(items:Array, mypath:String): Object { var mySort:Sort = new Sort(); var myItems:ArrayCollection = new ArrayCollection(items); var itemCursor:IViewCursor = myItems.createCursor(); mySort.fields = [new SortField("path")]; myItems.sort

RE: [flexcoders] Namespace declaration problem

2009-01-08 Thread Gordon Smith
It sounds like you don't have the SWC with the comc.adobe.flex.extras.controls.* classes (which are not part of a standard Flex installation) or it isn't on your library-path. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of bru

[flexcoders] Namespace declaration problem

2009-01-08 Thread brucewhealton
Hello all, I have this code that I copied from a text book on Flex. I'm aware of package notation but I'm not sure how this works in this example and what is going wrong. In the code, I have within the Application tag, a namespace definition. So, the Application tag opens like this: http:

Re: [flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread Sam Lai
As mentioned before, Flex does not run on Flash Lite, nor does any AS3 apps. (unless there's a Flash Lite version newer than 2.0 that I'm not aware of.) I'd suggest you also take a look at how the Chumby has implemented this - it is an embedded Linux device running Flash Lite showing widgets. It

Re: [flexcoders] Datagrid columns autosize

2009-01-08 Thread Doug McCune
But doing some pretty simple calculations based on data type is easy. For example, if you know a field is a date and you want to display the full date and time string, you know how wide that needs to be. Or if a field is a phone number, etc. Unknown strings present problems, but maybe just some sim

Re: [flexcoders]Scope issue - class variable not set

2009-01-08 Thread dorkie dork from dorktown
Thanks guys! I had two instances of the class and two event listeners running one after the other. On Wed, Jan 7, 2009 at 10:15 AM, Tracy Spratt wrote: >You should not attempt any complex assignments or run any functions > outside of a function. > > Tracy > > > -

[flexcoders] Re: Module blues...am I going crazy??

2009-01-08 Thread Jim Boone
Perhaps. However, I am attempting to use PureMVC multi-core and the constants I want to use simple define my notification names. Even thought they are included only in the module code, for some reason the names are "undefined" when PureMVC attempts to register my commands when the module PureMVC in

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread john fisher
Bless you! this is the syntax I didn't get- and behold, it works! excellent. Maciek Sakrejda wrote: > > then inside that loop, for each property you want to graph: > currItem[element.name()] = element.valueOf(); > >

RE: [flexcoders] Best Approach for Flex Applications

2009-01-08 Thread Tracy Spratt
For normal navigation, ViewStack is great. You can drive it with many Uis, tabs, menus, linkbuttons, whatever. Consider using a pop-up for the log-in, but that is just a matter of taste. Tracy Spratt Lariat Services Flex development bandwidth available From

RE: [flexcoders] set data in TreeItemRenderer creates branches twice after reopening

2009-01-08 Thread Tracy Spratt
I do not know if it relates to your problem, but set data gets called too often to do that much work. In set data, store whatever data you need into local instance variables. Call invalidateProperties(). Then do the work in commitProperties or updateDisplayList or createChildren. Tracy

RE: [flexcoders] Datagrid columns autosize

2009-01-08 Thread Tracy Spratt
No, to size a column to the widest content, the datagrid would have to read and compute the size for every field in every record. This would be impossible for large datasets. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcode

RE: [flexcoders] display CLOB in datagrid

2009-01-08 Thread Tracy Spratt
What's a CLOB? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mr Greg Murnock Sent: Thursday, January 08, 2009 12:00 PM To: flexcoders@yahoogroups.com Subj

RE: [flexcoders] Re: looping xml structure

2009-01-08 Thread Tracy Spratt
And don't overlook e4x expressions. It is rare that you need to loop if you have XML. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent: Thursday

RE: [flexcoders] Re: Modify arrayCollection Structure

2009-01-08 Thread Alex Harui
And I think that's the example on my blog... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of jmfillman Sent: Thursday, January 08, 2009 4:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Modify arrayCollection Structure The more I've studied this,

RE: [flexcoders] Instantiating a class from a dynamically loaded swf

2009-01-08 Thread Alex Harui
This is an ApplicationDomain issue. Read the docs, check out the presentations on my blog. One way to solve would be to expose your own getDefinition call on the content so you make the call in its context From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dust

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread john fisher
Thanks Maciek... I actually started that way, but it failed. I'll try again and post if I can't get it to work. Maciek Sakrejda wrote: > It looks like you're creating a String that looks like the code for the > object (i.e., "{ foo: 'bar' }"), and then casting that to Object. That > won't do what

Re: [flexcoders] GPS in Flex

2009-01-08 Thread Doug McCune
Check out Andy Powell's post about using Merapi and GPS: http://www.infoaccelerator.net/blog/post.cfm/live-gps-visualizations-with-air-merapi I have a small app running on my BlackBerry that posts my lat/lon to my own webserver, which just stores it in a DB. The using whatever serverside technolog

Re: [flexcoders] GPS in Flex

2009-01-08 Thread Nate Beck
In addition to what Tim said. The Merapi project (http://merapiproject.net/), is an excellent candidate for a project like this. You can use Java to communicate to the GPS unit's device drivers, and then use that data with webservices or the yahoo maps API to serve maps in real time. Just a thoug

[flexcoders] Re: Flex Photo Gallery

2009-01-08 Thread brucewhealton
Yuri, Wow! That's really nice. Were you going to sell the app when finished or make the code available at all? It is listed as being in a directory called tutorials, will you use this as part of a tutorial? Bruce --- In flexcoders@yahoogroups.com, "aphexyuri" wrote: > > Hey Bruce > It's st

[flexcoders] Re: Modify arrayCollection Structure

2009-01-08 Thread jmfillman
The more I've studied this, the more I think I'm asking the wrong question. I think that I really need to be merging two objects, and then adding them to the arrayCollection. I have object1 that contains: userID, firstName, lastName, phoneNumber and I have object2 that contains: eventID The tr

[flexcoders] Re: Flex Photo Gallery

2009-01-08 Thread brucewhealton
Hi, That is a pretty cool application. It's nice the way the code shows up too. How does one get the code to appear just like that when publishing an application? I'd like to be able to have that with some of the apps that I create. The only thing lacking would be a backend where the

RE: [flexcoders] GPS in Flex

2009-01-08 Thread Tim Rowe
If you want to do it in realtime you're going to first have to decide what devices you support. There might be some standards for communication, but others go off and do their own thing and those might be the ones you want to support. Garmin often take a lot of heat for this (despite what they

[flexcoders] GPS in Flex

2009-01-08 Thread Ben Cessa
Hi, I'm planning to build an AIR application but I have a major doubt here, by looking at the amazing work of Doug McCune I think is possible to integrate real time GPS data into a Map on a Flex application, but my question is: how? Just in case the above is not a completely clear explanati

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread Maciek Sakrejda
It looks like you're creating a String that looks like the code for the object (i.e., "{ foo: 'bar' }"), and then casting that to Object. That won't do what you want. The thing is still a String. You need to actually programmatically create the Object. Alternately, you can use the JSON.decode() me

[flexcoders] Re: Creating mxml components within script block - but they don't appear in disp

2009-01-08 Thread gpe_comp
--- In flexcoders@yahoogroups.com, "Paul Andrews" wrote: > Donning my mind readers hat (since you haven't supplied any code), I suspect > you haven't used addChild() to add the component as a child of the mxml > component. I thought it would be a simple solution. Many thanks, they appear now!

[flexcoders] When "borderStyle" style is used in a custom tooltip, other styles are ignored. + Flex JIRA Confusion

2009-01-08 Thread greg h
I have two questions. BACKGROUND: I pulled the start of the subject line on this thread from the following link on the Flex JIRA: http://bugs.adobe.com/jira/browse/SDK-11342 I am using Flex 3.2 and I am experiencing exactly the same problem detailed in that JIRA bug (bug opened in June 2007). To

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread john fisher
Can I define this better? Anybody got an idea? john fisher wrote: > > > ## This does not work: > simpleData = new ArrayCollection([]); > var st:String = new String(); > > #left out the loops here for clarity#

[flexcoders] JSON decoded multidimensional array Datagrid labelFunction... help

2009-01-08 Thread Brian Vosburgh
Found this older thread below which looks like it could solve my problem if someone could just clarify a couple things for me: I've got a result handler that decodes a json response which is a mutlidimensional array. Right now I pass the event result toString and then set the string to a n

Re: [flexcoders] Creating mxml components within script block - but they don't appear in display

2009-01-08 Thread Paul Andrews
- Original Message - From: "gpe_comp" To: Sent: Thursday, January 08, 2009 10:24 PM Subject: [flexcoders] Creating mxml components within script block - but they don't appear in display >I have a component defined in mxml and want to create many of these >(setting parameter > values

[flexcoders] Instantiating a class from a dynamically loaded swf

2009-01-08 Thread dustyjewett
I'd like to be able to load a swf that has many movieclip assets in it, then instantiate those assets (icons) throughout the application. What I'm doing now is: private function handleSwfLoaded(e:Event):void{ for each(var mc:MovieClip in e.currentTarget.content){ var ui

[flexcoders] Creating mxml components within script block - but they don't appear in display

2009-01-08 Thread gpe_comp
I have a component defined in mxml and want to create many of these (setting parameter values such as x, y etc.) within a Script block. All seems OK, but they do not appear on the display. Hopefully a simple solution but I can't figure it out! help most appreciated.

[flexcoders] compc cli - use packages?

2009-01-08 Thread dnk
Hi there... i have a swc library I have been developing for personal use. I have thus far been just keeping my classes and components in the root. I used to run my compiler as so: ./compc -source-path /Users/me/Zend/workspaces/DefaultWorkspace/sgLib/ -output /Users/me/Desktop/sgLib.swc -in

[flexcoders] Rotation/Zoom effect applied to the Image looks too aliased! How to fight it?

2009-01-08 Thread lytvynyuk
Is there any library which allow you manipulate images but with better resulting quality then original effects in Flex? If you do 5 rotation to an Image it looks really ugly... same with Zoom and scale.

Re: [flexcoders] Get AsDoc-generated information as XML?

2009-01-08 Thread Josh McDonald
Sam, that's perfect, cheers! -Josh On Fri, Jan 9, 2009 at 1:50 AM, Sam Lai wrote: > http://rantworld.blogs.com/flashlit/2007/02/use_asdoc_to_dr.html > > That might help - don't know what info it has in the XML file though. > Look forward to seeing what you come up with - glad I'm not the only >

Re: [flexcoders] How to create dynamically Icon for a Tree

2009-01-08 Thread kiwibloke
Hi Mars, Did you get a custom renderer to work? If so, would you be so kind as to list the code that you used to implement the tree and custom renderer using the IconUtility method please. Thanks, Martyn -- View this message in context: http://www.nabble.com/How-to-create-dynamically-Ico

RE: [flexcoders] Module blues...am I going crazy??

2009-01-08 Thread Alex Harui
If the app references a class in a module, it defeats the whole purpose of modules. That class will still be linked into the main app. Also note that the order that classes get their static initialized is "random" so be careful if static are anything other than simple values. From: flexcoders@

RE: [flexcoders] Dumb question; $inherited variables

2009-01-08 Thread Alex Harui
$width and $height are the original flash.display.DisplayObject.width and height which are overridden by Flex. The DisplayObject version show the bounding box around all drawn pixels in the object, the Flex version shows you the component's size according to the layout rules. They can be diffe

Re: [flexcoders] Re: Release a child .... again

2009-01-08 Thread Paul Andrews
According to your original explanation the only event handler for "remoteDateEvent" is added to the parent container. All the forms do is issue events. If you really are doing addEventListener to child2, then child2.removeEventListener("remoteDateEvent", remoteClickHandler); is what you need.

Re: [flexcoders] Flex Builder 3 + Eclipse plugins vs. MyEclipse + FB3 plugin?

2009-01-08 Thread s.m.srinivas
Hi, I have posted an article in my http://riawanderer.blogspot.com/ blog which explains how to install Flex Builder on MyEclipse. This post has Video, Text & Images showing you the steps to achieve it. Hope it's helpful. Thanks, Srinivas gers32-3 wrote: > > Hi, > > I've been using MyEclips

[flexcoders] Re: Release a child .... again

2009-01-08 Thread markgoldin_2000
I am not removing the handles at all because I dont know where to put code for that. I tried (child2) creationComplete="init();" .. private function init():void { parent.removeEventListener("remoteDateEvent", remoteClickHandler); } Does not help. Children removal is

Re: [flexcoders] Release a child .... again

2009-01-08 Thread Paul Andrews
- Original Message - From: "markgoldin_2000" To: Sent: Thursday, January 08, 2009 7:12 PM Subject: [flexcoders] Release a child again > Still cannot get it work. > Here is my scenario: > > 1. Container adds child1 to itself. > 2. Container adds child2 to itself. > Child2 adds a

[flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread valdhor
Now, that I don't know. Hopefully, someone else can chime in here. --- In flexcoders@yahoogroups.com, "Pankaj Chawla" wrote: > Thanks for all the pointers. So essentially speaking my best option is > PHP + FlashLite working on some flavour of embedded linux. That > leads to the final question.

Re: [flexcoders] use an actionscript class from a SWC in actionscript

2009-01-08 Thread Nate Beck
Using xmlns (XML Namespace) is mostly for the benefit of MXML. In your xmlns you're pointing to "*", which is the default package. So your Tracer.as file is on the root of the SWC file. Let's say you adding a longer package name within your SWC... "net.natebeck.utils.Tracer". Which is essentiall

Re: [flexcoders] use an actionscript class from a SWC in actionscript

2009-01-08 Thread Mac Martine
If you've added the swc to your project you should be able to access it as if the class is in the same project. Try bringing up code hints as you type 'Tracer' and see if it's listed. Otherwise try adding an import to the package that the class is in (assuming it's in a package). On 1/8/09

[flexcoders] Release a child .... again

2009-01-08 Thread markgoldin_2000
Still cannot get it work. Here is my scenario: 1. Container adds child1 to itself. 2. Container adds child2 to itself. Child2 adds a custom event listener to parent (Container): parent.addEventListener("remoteDateEvent", remoteClickHandler, false, 0, true); 3. Child1 dispatches a custom eve

Re: [flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread Pankaj Chawla
On Fri, Jan 9, 2009 at 12:20 AM, valdhor wrote: > If the device itself will have a touchscreen and needs to display a > flash interface then you will need an embedded RTOS that supports flash. > > A quick Google search pulls these: > > > http://www.sysgo.com/news-events/press-releases/article/1/

[flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread valdhor
If the device itself will have a touchscreen and needs to display a flash interface then you will need an embedded RTOS that supports flash. A quick Google search pulls these: http://www.sysgo.com/news-events/press-releases/article/1/sysgo-bietet-adobe-flash-lite-fuer-embedded-linux/ http://www.

[flexcoders] Re: looping xml structure

2009-01-08 Thread Jason B
Nevermind this works var tmp:String = xmlitems; if(tmp.indexOf("NOT PRESENT") > -1) trace("FOUND ITEM AT " + xmlitems); --- In flexcoders@yahoogroups.com, "Jason B" wrote: > > I've so far got an xmlcollection > > using this code shows the xml code > > for each (var x

[flexcoders] Prealoading data and other assets in flex

2009-01-08 Thread Kyle
I'm trying to figure out how to load server side data and assets such as other swf files into my flex app before the preloader is removed. Can anyone point me in the right direction on this? Thanks, Kyle

Re: [flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread Pankaj Chawla
Embedded linux for the device is what I have in mind. Is flash suppported on any other RTOS? If yes I have no problems using that. The hardware will be custom made depending on what software platform we can come up with. On Thu, Jan 8, 2009 at 11:49 PM, valdhor wrote: > OK, so which RTOS are yo

[flexcoders] looping xml structure

2009-01-08 Thread Jason B
I've so far got an xmlcollection using this code shows the xml code for each (var xmlitems in xmlcollection_data) { trace(xmlitems); } but i'd like to know how to loop the collection and search for strings etc.. an

[flexcoders] Odd NoMethodError...

2009-01-08 Thread Hubert
I'm getting an error: NoMethodError (undefined method `find_versions_by_componentid' for "3.1.7.1":String): when calling Version.find_versions_by_componentid(id) And in the version model I have: def self.find_versions_by_componentid(search_id) doing: @result = Version.find_versions_by_component

[flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread valdhor
OK, so which RTOS are you using and does it support flash? --- In flexcoders@yahoogroups.com, "Pankaj Chawla" wrote: > The reason I need AIR on the device is because the device is also going to > have a touchscreen display which will show the flash interface and allow > direction manipulation

[flexcoders] use an actionscript class from a SWC in actionscript

2009-01-08 Thread dnk
Hi there i have written a very simple class in AS that has ben added to a personal library (SWC). Now in mxml I can reference the classes and components easily by putting a: xmlns:mycomps="*" Now what I would like to know is how would I reference a class that is in a SWC from action scri

Re: [flexcoders] Re: security sandbox violation in standalone player but not in browser

2009-01-08 Thread Maciek Sakrejda
Interesting; however I'm using Evolution against an Exchange server, and my previous posts have showed up fine. I haven't gotten any of my messages to the list from that thread, nor Alex's reply (though I can see them through the web interface), but I did get your reply now. Maybe there are goblins

[flexcoders] Dumb question; $inherited variables

2009-01-08 Thread flexaustin
When running in debug mode. I have a component and when I look at the variables or properties in the variables panel I see a "[inherited]" set of variables and in there $width = 800; and $height= 1200; but if I look at the variables without the $ so width & height I see width=694 and height=694.

[flexcoders] Re: Documentation on Flex 3

2009-01-08 Thread Greg
I love the plugin TourdeFlex. It is also an AIR app... you can get it: http://flex.org/tour GregM --- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, "brucewhealton" wrote: > > > > Hello, > > Can someone help me with something. I wanted to know wher

[flexcoders] display CLOB in datagrid

2009-01-08 Thread Mr Greg Murnock
We have EDI data being written into a CLOB datatype field in an Oracle database.  My query returns records ( changed to array collection) however they are not displayed in the datagrid.  There are no errors triggered just no visible data.  Any suggestions?   Oracle 10g CF7 FLEX 3 gmurnock

[flexcoders] Module blues...am I going crazy??

2009-01-08 Thread Jim Boone
Hi, I am attempting to convert an app to use modules but I am seeing strange behavior. For example, say I have a constant that I refer to as (see Constants class below): Constants.something in my code. You would expect it to resolve to the string "someThing". Unfortunately, after being loaded a

Re: [flexcoders] Re: Flex 3 Charts - Issue with Horizontal Axis

2009-01-08 Thread Julien BALMONT
Hi, thanks for your answer. In fact, in the meantime, I've found a new way to do it. Each time the timer launches the process, I add to the dataSet the value and the date as a String. --> In the addData function: dataSet.addItem( { xValue : xValue , nb: nb } ); xDate = new Date(); xValue = Strin

Re: [flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread Pankaj Chawla
On Thu, Jan 8, 2009 at 8:45 PM, Tom Chiverton wrote: >On Thursday 08 Jan 2009, valdhor wrote: > > Assuming the device has a web server of some description (I am > > assuming it does if it supports remoting) then just develop a normal > > Flex application that communicates via remoting to a bac

[flexcoders] Re: Flex 3 Charts - Issue with Horizontal Axis

2009-01-08 Thread Amy
--- In flexcoders@yahoogroups.com, nerique wrote: > > > Hi, > > i'm recent to Flex 3, so maybe my question is easy to answer, or not, I > don't know :) > > I'm making a Real Time chart y using a Timer, and an HTTP Service. (Please > find attached a cleaned copy of my mxml: > http://www.nabbl

[flexcoders] Re: geting info of a user who has loged in

2009-01-08 Thread valdhor
For simplicity's sake, I would add a public var to your Admin component and populate it with pop.username_txt.text: viewstack1.selectedChild = admin; admin.username = pop.username_txt.text; In your Admin component's creationComplete handler, you would have another RemoteObject call to gather user

[flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread valdhor
Yes, but that is required on the users end - not on the embedded Linux device. The device would just need a server to serve up the SWF file and to respond to requests from the SWF. --- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Thursday 08 Jan 2009, valdhor wrote: > > Assuming the

[flexcoders] Re: Documentation on Flex 3

2009-01-08 Thread Amy
--- In flexcoders@yahoogroups.com, "brucewhealton" wrote: > > Hello, > Can someone help me with something. I wanted to know where > one can find the most up to date documentation on the web for the > various Flex 3 Components, classes, language reference and so on. I > did a google searc

RE: [flexcoders] Source Control in Flex Builder

2009-01-08 Thread Yves Riel
I haven't built any batch or Ant file just yet. I wanted to see if others had tackled triggering the Team Refresh functionality form an Ant file before. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tom Chiverton Sent: Thursday,

Re: [flexcoders] Get AsDoc-generated information as XML?

2009-01-08 Thread Sam Lai
http://rantworld.blogs.com/flashlit/2007/02/use_asdoc_to_dr.html That might help - don't know what info it has in the XML file though. Look forward to seeing what you come up with - glad I'm not the only one who finds the standard ASDoc files difficult to use on a regular basis. 2009/1/8 Josh McD

[flexcoders] Re: CrossDomain RSS Error Accessing from Web Server

2009-01-08 Thread valdhor
The problem is not with the crossdomain.xml on your server. Flash is looking at the crossdomain.xml on the remote server. If you look at the file at http://finance.yahoo.com/crossdomain.xml you will see: so unless you have a subdomain of yahoo.com, you do not have access. What you will have to

[flexcoders] Re: Get AsDoc-generated information as XML?

2009-01-08 Thread Amy
--- In flexcoders@yahoogroups.com, "Josh McDonald" wrote: > > Hey guys, > > AsDoc produces some pretty awful HTML. I'd like to get the same information > but as XML in order to build my own browser for it, as the built-in help's > not so useful on Mac (and I'm the kind of jerk who thinks he can

Re: [flexcoders] Source Control in Flex Builder

2009-01-08 Thread Tom Chiverton
On Thursday 08 Jan 2009, Yves Riel wrote: > Yes there is a command line tool but this is the approach I would like > to avoid. I could build an Ant Task that would get the latest from VSS > and then call eclipse.refreshLocal. However, this has the disadvantage > of having to put in an Ant file all

Re: [flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread Tom Chiverton
On Thursday 08 Jan 2009, valdhor wrote: > Assuming the device has a web server of some description (I am > assuming it does if it supports remoting) then just develop a normal > Flex application that communicates via remoting to a back end server A normal Flex application would require either the

[flexcoders] Re: AIR on embedded linux?

2009-01-08 Thread valdhor
I don't believe you need AIR for Linux (Or anything specific to Linux for that matter). Assuming the device has a web server of some description (I am assuming it does if it supports remoting) then just develop a normal Flex application that communicates via remoting to a back end server (The devi

Re: [flexcoders] Re: Flex Photo Gallery

2009-01-08 Thread Haykel BEN JEMIA
Really cool Yuri, what are your plans with it? Haykel Ben Jemia Allmas Web & RIA Development http://www.allmas-tn.com On Thu, Jan 8, 2009 at 2:14 PM, aphexyuri wrote: > Hey Bruce > It's still a work-in-progress, but have a look: > > http://www.theliblab-tutorials.com/bigoso/gallery/ > > Y

RE: [flexcoders] Source Control in Flex Builder

2009-01-08 Thread Yves Riel
Yes there is a command line tool but this is the approach I would like to avoid. I could build an Ant Task that would get the latest from VSS and then call eclipse.refreshLocal. However, this has the disadvantage of having to put in an Ant file all the VSS parameters (including password). The param

[flexcoders] Re: multiple instances of a datagrid

2009-01-08 Thread valdhor
I have done something similar in the past. I used FlexMDI (Part of FlexLib: http://code.google.com/p/flexlib/ . Examples at http://code.google.com/p/flexmdi/) I have a custom datagrid component with all the columns set up the way I need. I have a custom FlexMDI window that has the datagrid embedde

[flexcoders] Re: geting info of a user who has loged in

2009-01-08 Thread stinasius
hi this is my the login code functionality am using that i got from flex cookbook example and works perfect. "login.mxml" http://www.adobe.com/2006/mxml"; layout="absolute" title="Login Form"> [Event(name="loginSuccessful", type="flash.events.Event")]

[flexcoders] Re: rollover effect like in tilelist of flex store application

2009-01-08 Thread valdhor
You do know that you can right click on the application and click "View Source" right? Just download the example and poke through the code. --- In flexcoders@yahoogroups.com, "johndoematrix" wrote: > > hi is there an example on how to create the image rollover effect like > in the tilelist of th

[flexcoders] Re: geting info of a user who has loged in

2009-01-08 Thread valdhor
John Please post the code you have for the login functionality. I can use that to show you how to do the info bit. --- In flexcoders@yahoogroups.com, "johndoematrix" wrote: > > please guys help me out here. >

Re: [flexcoders] Source Control in Flex Builder

2009-01-08 Thread Tom Chiverton
On Wednesday 07 Jan 2009, Yves Riel wrote: > plugin for Eclipse. My problem is that I'm tired to manually refresh all > the projects. Every morning, I have to highlight the project, > right-click and select the Team -> Refresh sub-menu. I would like to Is there a command line tool for VSS ? If so

[flexcoders] how to compile cocoa framework to swc?

2009-01-08 Thread Carlo Gulliani
Hi, everybody, have a great 2009! Maybe who knows how to listen apple remote control in flex application? I have found RemoteControl.framework which was wrote in cocoa... Can i to compile this framework to SWC for example and attach it to my app? general, do u have any ideas about it? Today i've

[flexcoders] Re: Updates Issue in Mozilla ....any thoughts to share???

2009-01-08 Thread akila_ksri
Hi Alex, Thanks a lot for your suggestion. It works just fine:) -akila --- In flexcoders@yahoogroups.com, "oneworld95" wrote: > > You could append a unique value to a querystring on the server URL for > each update, something to fool the browser into clearing the cache. > The date/time worked

[flexcoders] Re: Updates Issue in Mozilla ....any thoughts to share???

2009-01-08 Thread akila_ksri
Hi Alex, Thanks a lot for your suggestion. It works just fine:) -akila --- In flexcoders@yahoogroups.com, "oneworld95" wrote: > > You could append a unique value to a querystring on the server URL for > each update, something to fool the browser into clearing the cache. > The date/time worke

Re: [flexcoders] AIR on embedded linux?

2009-01-08 Thread Tom Chiverton
On Thursday 08 Jan 2009, talk2pankaj wrote: > AIR got released on Linux last month. Has anybody tried using it on > embedded Linux. If yes, I would want to hear your feedback as I am > working on an embedded Linux based hardware device and I am interested > in using Flex/AIR as my platform to devel

[flexcoders] Re: Updates Issue in Mozilla ....any thoughts to share???

2009-01-08 Thread akila_ksri
--- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Wednesday 07 Jan 2009, akila_ksri wrote: > > The application we are developing needs the controls like labels, data > > grid etc., to be updated every second. This works fine without any > > issue in IE 7, but the updates fail to hap

Re: [flexcoders] Re: security sandbox violation in standalone player but not in browser

2009-01-08 Thread Tom Chiverton
On Wednesday 07 Jan 2009, maciek9billion wrote: > Please ignore. I checked using the Yahoo! Groups interface, and the > message showed up just fine. Must be something funky with either my > mail or flexcoders mail. GMail wont show posts you send to mailing lists until someone replies. -- Tom Chi

RE: [flexcoders] Re: Using ActiveXObject with Adobe AIR and Flex

2009-01-08 Thread David Kramer
Two totally different environments. _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of pratikshah83 Sent: Tuesday, January 06, 2009 5:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using ActiveXObject with Adobe AIR and Flex Any he

[flexcoders] Re: CrossDomain RSS Error Accessing from Web Server

2009-01-08 Thread coccolli
I'm running into the same problem with out any success. Did you ever find a solution? Thx --- In flexcoders@yahoogroups.com, "Craig" wrote: > > I have a Flex 3.0 app that connects to RSS feed fine from FlexBuilder > IDE but when deployed on Web Server gets the following error > > Error #2044

RE: [flexcoders] RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-08 Thread freak182
Hello, actaully i inspect my config xml it looks like this: libs/framework.swc framework_3.0.0.477.swz framework_3.0.0.477.swf ...even though i change the value before compiling but i guess this config is replace/overwritten everytime flex compile...how can

[flexcoders] Re: Flex Photo Gallery

2009-01-08 Thread aphexyuri
Hey Bruce It's still a work-in-progress, but have a look: http://www.theliblab-tutorials.com/bigoso/gallery/ Yuri --- In flexcoders@yahoogroups.com, "brucewhealton" wrote: > > Hello all, > Can anyone recommend some good examples of how people have > used Flex to create nice photo galler

[flexcoders] Datagrid columns autosize

2009-01-08 Thread k.sigiscar
Hello, I was wondering if somebody had a solution for sizing automatically the width of datagrid columns based on their content. I have seen some implementations but none are satisfactory in terms of performance/stability. Thanks, Karl.

[flexcoders] AIR on embedded linux?

2009-01-08 Thread talk2pankaj
Hi AIR got released on Linux last month. Has anybody tried using it on embedded Linux. If yes, I would want to hear your feedback as I am working on an embedded Linux based hardware device and I am interested in using Flex/AIR as my platform to develop and deploy application on it. If this op

  1   2   >