[flex_india:19513] Re: Facing some problem while accessing simple web service

2009-02-19 Thread Thayz...
Thanks Nargis. I had put crossdomain.xml in D:/JBoss/server/default/deploy/ folder. But when I am starting the JBoss server I am getting the following error message. --- Incompletely deployed packages --- org.jboss.deployment.deploymenti...@7d55f897 { url=file:/D:/ Jboss-4.2.2.GA/server/default/d

[flex_india:19512] Re: drag and drop problem

2009-02-19 Thread subeesh a
Hi, Check this link http://livedocs.adobe.com/flex/3/html/help.html?content=dragdrop_5.html There is an example. Hope that may help -- Subeesh http://subeesh.co.nr --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

[flex_india:19511] Re: problem in binding binding tags, for one change it call 4 times the setter method

2009-02-19 Thread kundan singh
thanks for ur response. u are right , I have solved my problem with the help of change event of comBox , and again on change event of combo Box , I am calling setter method. it is working fine. But when I am binding this setter method with change of id of comboBox it is firing a request 4 times

[flex_india:19510] Re: Static variables in Flex

2009-02-19 Thread sudhi
Thanks Shaleen and Dinesh It is the same case as Shaleen said.. So that means i cant access the variable like that... Not a problem it was just a curiosity question... I did it using some other way.. Ayways thanks for your answers.. Regards Sudhi... --~--~-~--~~~--

[flex_india:19508] Re: Handler to active container

2009-02-19 Thread edwin . vgwhiz
Can you code that for us. Thanks in advance. On Thu, Feb 19, 2009 at 1:11 PM, Ravi wrote: > > focusIn is the event gets fired when an object comes in focus. using > event.currentTarget you can get the TitleWindow which is currently in > focus. > > HTH, > > -Ravi > > On Feb 19, 11:03 pm, sal wro

[flex_india:19509] drag and drop problem

2009-02-19 Thread peter.du...@googlemail.com
hi, my question is how can i do following: - i have treelist, swfloader and canvas - i want to chose item from list, drop it on canvas, but not an item but defined swf (as vector graphics).. that means that selected item in a list will change image in swfloader (that is allready implemented) but i

[flex_india:19507] Re: Static variables in Flex

2009-02-19 Thread Dinesh Kumar
hi sudhi, you can declare the varibles in Main.mxml as: [Bindable] static public var STR:String = "FLEX"; In your actionscript class get the value like: Trace(Main.STR); Thanks, DineshKumar.T On Thu, Feb 19, 2009 at 4:25 PM, sudhi wrote: > > Dear Aksh

[flex_india:19506] Re: Static variables in Flex

2009-02-19 Thread Shaleen Jain
Hello Sudhi, Here is a catch. Are you trying to access some variable of your application file (defined under script tag) in AS classes of your library and did you include your swc file in the main application? If that is the case, then I am sorry to say, you can't do that. if that is not the cas

[flex_india:19505] Re: problem in binding binding tags, for one change it call 4 times the setter method

2009-02-19 Thread Shaleen Jain
Not sure, why your setter is called 4 time. you need to paste your code for that. As Ravi has already suggested, combobox change event is best place to send httpservice and NOT the setter method. -Shaleen Jain http://shaleenjain.blogspot.com On Feb 19, 11:34 pm, Ravi wrote: > Why are u calling

[flex_india:19504] Re: problem in binding binding tags, for one change it call 4 times the setter method

2009-02-19 Thread Ravi
Why are u calling the service in the setter of other comboBox component? Why don't you call on Change event of Country comboBox? -Ravi On Feb 19, 9:00 am, kundan singh wrote: > Hi friends, > > I have created two custom component let say country and state. > data is filled in state comboBox acco

[flex_india:19503] Re: Roll over or mouseMove in Data Grid

2009-02-19 Thread Ravi
itemRollOver is the event you are looking for :) -Ravi On Feb 19, 6:05 pm, Gerald Anto Fernando wrote: > Friends, > I have a datagrid which shows city names and address.ok > > now, when i roll over or mouse move event to the data grid  it should > display the name of the city in the text area.

[flex_india:19502] Re: Handler to active container

2009-02-19 Thread Ravi
focusIn is the event gets fired when an object comes in focus. using event.currentTarget you can get the TitleWindow which is currently in focus. HTH, -Ravi On Feb 19, 11:03 pm, sal wrote: > I have a main flex application which generates multiple title windows > and each title window loads a m

[flex_india:19501] Re: adding column fields within a datagrid

2009-02-19 Thread Ravi
Hi Asim, When you click on confirm button, call a function which parse through the arraycollection(that you are using as dataprovider of the datagrid). Then check which row item has the account no. same as the value entered in from account box and check which row item has similar to value in to a

[flex_india:19500] Handler to active container

2009-02-19 Thread sal
I have a main flex application which generates multiple title windows and each title window loads a module that has a button which when clicked says "Hello World". Now the problem is that when I click the button in one title window the text "Hello World" gets displayed in all the title windows. Is

[flex_india:19499] adding column fields within a datagrid

2009-02-19 Thread Asim
Hi I came across a weird requirement in my project with datagrids, hope someone can help me out. I'm a newbie so im sorry if i'm doing anything wrong. Lemme post the Code to describe the problem better: ActionScript: [QUOTE] package com { public class AccountHolder {

[flex_india:19498] Re: ViewStack unselecting first selecting

2009-02-19 Thread edwin . vgwhiz
Try selectedIndex="-1" as the property. On Thu, Feb 19, 2009 at 10:04 AM, Romulko wrote: > > Hello guys. > Please, help me to resolve this issue - > I have a ViewStack component and it have some count of children's. By > default, every-time when the View Stack was init, it selects the first > e

[flex_india:19497] Re: Module Loader Problem

2009-02-19 Thread Nargis
This may help you http://blog.flexexamples.com/2007/08/06/building-a-simple-flex-module/ Nargis Himani On Feb 19, 4:56 pm, Pradip Jadhav wrote: > Hi All, > > I am new in FLEX technology. > > Does anybody give me example of module loader..? > > Regards, > Pradip Jadhav --~--~-~--~-

[flex_india:19496] Re: Facing some problem while accessing simple web service

2009-02-19 Thread Nargis
for crossdomain.xml you can use below xml which will allow all the domain 'allow-access-from domain="*"' save this as crossdomain.xml, and placed on the site root of server that the needs to access. Nargis Himani On Feb 19, 5:27 pm, "Thayz..." wrote: > Dear All, > I have created a simpl

[flex_india:19495] ViewStack unselecting first selecting

2009-02-19 Thread Romulko
Hello guys. Please, help me to resolve this issue - I have a ViewStack component and it have some count of children's. By default, every-time when the View Stack was init, it selects the first element. How do I can unselect the first element and hold this state until when a user makes first click

[flex_india:19494] Roll over or mouseMove in Data Grid

2009-02-19 Thread Gerald Anto Fernando
Friends, I have a datagrid which shows city names and address.ok now, when i roll over or mouse move event to the data grid it should display the name of the city in the text area. i am not asking for data grid click event but for rollOver or mouseMove is it possible? if possible let me know th

[flex_india:19493] Facing some problem while accessing simple web service

2009-02-19 Thread Thayz...
Dear All, I have created a simple web service program which is deployed in JBoss app server. I have written a simple Flex program to call a web service. When I try execute, I am getting the following error message: [RPC Fault faultString="Security error accessing url" faultcode="Channel.Security.E

[flex_india:19492] Re: itemrender trouble in a list

2009-02-19 Thread Jose
hi, I already tryed that but i doesn't work! i'm starting to be desesperate about this problem... I can't figure out what's wrong withe the code --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" g

[flex_india:19491] Module Loader Problem

2009-02-19 Thread Pradip Jadhav
Hi All, I am new in FLEX technology. Does anybody give me example of module loader..? Regards, Pradip Jadhav --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group,

[flex_india:19490] Re: Complex header in datagrid

2009-02-19 Thread Shishir
Hi Prakash , If i am not mistaken you are referring to the grouping of items to form a vertical tree like structure in AdvancedDataGrid. My requirement is a bit different . Example : |Place | Occupation | |Country|State |Field| Sub-field| |India |AP|Software | Web

[flex_india:19489] Re: Static variables in Flex

2009-02-19 Thread sudhi
Dear Akshay I have created seperate files for every class So i dont have any problem in accessing the variables in Actionscript classes... My problem is i have a main Flex apllication which loads some display object from the Actionscript library and show it. I have a Script block in my Flex(.m

[flex_india:19488] Re: Complex header in datagrid

2009-02-19 Thread Shishir
Hi Prakash, Thanks for the reply . Actually i need to do this for advanceddatagrid only. Could you please provide a sample code or point me to the appropriate resources to solve the above problem? Thanks, Shishir. On Feb 19, 10:05 am, kash ash wrote: > Hi Shishir, > > For this problem, by usin

[flex_india:19487] Re: Static variables in Flex

2009-02-19 Thread akshay gore
Hey sudhi Have you defined all classes inside one package ? If yes then there will be no problem as all members inside single package defined in different class is accessible when declared as public.. Could you explain ur structure .. You can do one thing that static variable could get in differen

[flex_india:19486] Re: Static variables in Flex

2009-02-19 Thread sudhi
Thanks a lot Akshay, But i couldn't inderstand it much.. I meant in Actionscript if you have a static variable in a class you can access it from any other class using ClassName.StaticVariable.. Similarly i want to have a static variable in Flex application which i should be able to access in Ac

[flex_india:19485] Re: Column Chart

2009-02-19 Thread sudhi
Oops i am very sorry for forgetting to paste the code.. This one has the link.. http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_07.html http://livedocs.adobe.com/flex/3/html/help.html?content=charts_displayingdata_09.html just check the second example in the first li

[flex_india:19481] Re: flex e book

2009-02-19 Thread comgeek
goto knowfree.net and search under flash section On Feb 18, 8:52 pm, Flex Baby wrote: > Hi i want to download flex learning Ebooks(simple). > > plz provide me link or book. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[flex_india:19483] Re: Column Chart

2009-02-19 Thread Gaurav
Hi sudhi, You forgot to paste the link. Thanks in advance. On Feb 19, 12:33 pm, sudhi wrote: > Dear Gaurav > > The below link will solve your problem.. > > The example deals with clustered charts > and you can make the required changes in that sample code. > > Regards > Sudhi --~--~-~-

[flex_india:19482] Openings With NESS Technologies for SR Flex Developers and TL positions-,Bangalore

2009-02-19 Thread Meena-HR Division
Dear Keshav, As per our discussion I am sending you company details and job description. Kindly refer me if any of your friends are interested. To give you a brief introduction to Talent Asset Software and Consulting (TASC), TASC is a young organization servicing different geographies for the las

[flex_india:19484] Re: Column Chart

2009-02-19 Thread Gaurav
Hi Jignesh, Thanks. But i need one color shades to one column in chart. So its like red color shades for first column, green color shades for second column etc. On Feb 19, 12:33 pm, sudhi wrote: > Dear Gaurav > > The below link will solve your problem.. > > The example deals with clustered chart

[flex_india:19478] Re: Adobe AIR SaaS application licensing

2009-02-19 Thread Devaraj
Hi, Try this link, it deals with same situation http://nsdevaraj.wordpress.com/2009/01/20/licensing-flex-air-application/ Regards, Devaraj On Feb 18, 9:23 pm, "Nirav Thakker" wrote: > Hi Tejas, > I am working on something on similar lines. What I am planning to do is > provide every user a seria

[flex_india:19473] Re: map source code

2009-02-19 Thread edwin . vgwhiz
Anyone have the code to the following link? http://gis.cityofboston.gov/solarboston/ On Wed, Feb 18, 2009 at 12:03 PM, dostro wrote: > > Or something similar to this one, which I would like to be able to > customize: > http://www.foxnews.com/politics/elections/states_map/index.html > > On Feb 18

[flex_india:19477] RTMP Protocols

2009-02-19 Thread Jagadish M
Hiee can any body give me the clear guidance for how to use RTMP Protocals in step by step process. if possible send me links for this topic.. Thanks in Advance.. Jagan Mady's --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

[flex_india:19479] Re: Column Chart

2009-02-19 Thread edwin . vgwhiz
Hi All, How can I make the email a mailto: Link See Below. http://www.adobe.com/2006/mxml"; layout="vertical" verticalAlign="top" horizontalAlign="center" backgroundGradientColors="[0x00,0x323232]" paddingTop="0" viewSourceURL="srcview/index.html"> Chris Coenra

[flex_india:19476] Openings With NESS Technologies for SR Flex Developers and TL positions,Bangalore

2009-02-19 Thread Meena-HR Division
Hi, To give you a brief introduction to Talent Asset Software and Consulting (TASC), TASC is a young organization servicing different geographies for the last 7 years. We have marquee clients around the world. Our flagship has been consulting and staffing in the IT industry but over the years, TA

[flex_india:19480] Re: Flex Easy?

2009-02-19 Thread ganaraj p r
Hi, If what you are referring to is "pass by value", then no.. Flex only has pass by reference. No pass by value . On Wed, Feb 18, 2009 at 9:36 PM, Flex Baby wrote: > > hi , > i am beginner of flex/ > is it easy? > i feel difficultly. > i could not understood the value flows. > i know dot net. >

[flex_india:19474] Openings With NESS Technologies for SR Flex Developers and TL positions-,Bangalore

2009-02-19 Thread Meena-HR Division
Hi, The opening stands for our Client partner, Ness Technologies, Bangalore About NESS: Ness Technologies (NASDAQ: NSTC) is a global provider of end-to-end IT services and solutions designed to help clients improve competitiveness and efficiency. The Ness portfolio of solutions and services consi

[flex_india:19475] Re: Complex header in datagrid

2009-02-19 Thread kash ash
Hi Shishir, For this problem, by using advanceddatagrid we can display this header grouped cols. Cheers, Prakash On Wed, Feb 18, 2009 at 11:52 PM, Shishir wrote: > > Hi, > > I have a requirement to display data in a datagrid with a complex > header structure as follows : > > |A

[flex_india:19472] problem in binding binding tags, for one change it call 4 times the setter method

2009-02-19 Thread kundan singh
Hi friends, I have created two custom component let say country and state. data is filled in state comboBox according to the selection of country. I am using http service to get data for country and state. for filling data in state comboBox I have used Binding tags. like now the problem is whe

[flex_india:19471] Re: Static variables in Flex

2009-02-19 Thread akshay gore
Hi sudhi, Hey you can pass the reference of the variable.. for that create object of the class where u want to access that variable n catch that variable in class's constructor.. so that u will get reference of that variable.. Now u can use that variable inside action script class.. T