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] 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

Re: [flexcoders] Re: HTTPService DELETE/PUT automatically got changed to GET??

2011-08-25 Thread Peeyush Tuli
you can also use extrenalinterface to issue such requests through ajax.. On Wed, Aug 24, 2011 at 12:05 AM, handitan handi@gmail.com wrote: ** Thanks for the insightful info Peter! --- In flexcoders@yahoogroups.com, Peter Coppens pc.subscriptions@... wrote: Fwiw... As far as I

Re: [flexcoders] loading socket policy files from port 80.

2011-08-05 Thread Peeyush Tuli
AFAIK, socket policy files are requested from the port 843 and or from the port where traffic is intended to. So you can only do via 843 or 61613. On Fri, Aug 5, 2011 at 12:41 AM, grimmwerks gr...@grimmwerks.com wrote: ** Ok - slight modification to original question. Can I load a socket

Re: [flexcoders] Modify Flex ComboBox DataProvider

2010-06-06 Thread Peeyush Tuli
If your problem is similar to that discussed on - http://forums.adobe.com/message/2642802 Override the combobox class in a custom component and add the following code - private var mDropDown:ListBase; override public function set dataProvider(value:Object): void { super.dataProvider =

Re: [flexcoders] AS3 to .NET 3.5 WCF Service

2010-05-13 Thread Peeyush Tuli
Use SOAP? googling can give you a lot of sample code. Peeyush Tuli Adobe Certified Expert http://www.metadesignsolutions.com On Fri, May 14, 2010 at 12:41 AM, inteliarchs inteliar...@yahoo.com wrote: Hello, Thank you for your response. Has anyone ventured down the path of writing a AS3

Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-28 Thread Peeyush Tuli
I am not sure why you need to write the plumbing code at that level. It should be handled by the autogenerated code from flex builder webservice wizard itself. On Mon, Apr 26, 2010 at 11:16 PM, sasuke uzumaki.naruto...@gmail.comwrote: @Oleg Mike Thanks for the answers. Multi-invocation

Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-28 Thread Peeyush Tuli
service class has utility invocation methods for each webservice operation to save the manual effort involved. ~Peeyush Tuli Adobe Certified Expert http://www.metadesignsolutions.com On Wed, Apr 28, 2010 at 9:50 PM, Oleg Sivokon olegsivo...@gmail.com wrote: I am not sure why you need

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-05 Thread Peeyush Tuli
Override the combobox class in a custom component and add the following code - private var mDropDown:ListBase; override public function set dataProvider(value:Object):void { super.dataProvider = value; //Bug in Flex SDK 3.5: Once the data provider is set and list base is created

Re: [flexcoders] Re: Best Way To Tweet To Twitter From an Air Application

2010-03-30 Thread Peeyush Tuli
https://imo.im/ this site supports a self contained facebook login which I have not been able to find anywhere. This one also, but does not open right now - http://www.meebo.com/ I'm not sure whether they have private access to facebook authentication service or they could send the credentials

Re: [flexcoders] Re: FileReference does not sending the right header in file upload

2010-03-30 Thread Peeyush Tuli
Use this http://www.charlesproxy.com/ to see the actual http request that your flash player is sending to the server. Then compare the same traffic with the traffic exchanged by your test html page with the server. This should give you ideas over why it fails. ~Peeyush

Re: [flexcoders] How to attach a local file to an email with URLRequest from AIR

2010-03-30 Thread Peeyush Tuli
mailto protocol does not officially support attachments, as mentioned below - http://msdn.microsoft.com/en-us/library/aa767737.aspx Unofficially many versions of outlook till 2003 used to support it but outlook 2007 does not -

Re: [flexcoders] Framework Choice

2010-03-27 Thread Peeyush Tuli
One feature which i dont like about most of the flex frameworks is the use of flex events for business logic communication E.g. one module trying to notify others about a business logic based alert. The synchronous notification pattern borrowed from Cocoa seems to be a better approach in case of

Re: [flexcoders] Inheritance Problem with Webservice generator in Flash Builder 4

2010-03-27 Thread Peeyush Tuli
If your webservice wsdl specifies a parent child relationship in the schema for the classes in question then it is definite bug in the code generator for flash builder. You could always generate the code in fb3 and use it in fb4 if you are short of time. ~Peeyush http://metadesignsolutions.com/

Re: [flexcoders] Lock an application

2010-03-27 Thread Peeyush Tuli
you need to elaborate. On Thu, Mar 25, 2010 at 5:41 PM, Christophe christophe_jacque...@yahoo.frwrote: Hello, How to lock the execution of a flex application, on only one given Url ? (To avoid the unwanted use of the application by someone else). Thank you, Christophe,

Re: [flexcoders] Module's setup / ready event is not dispatched

2010-03-10 Thread Peeyush Tuli
have you added an error event listener to the IModuleInfo reference from getModule to see if there is an error in loading the complete module? On Wed, Mar 10, 2010 at 6:45 PM, Mayur ondemand_ma...@yahoo.com wrote: I am having a problem with Module - SETUP event is not dispatched. Though I

Re: [flexcoders] Re: How to access web page on own web site.

2010-03-09 Thread Peeyush Tuli
designing an mdi ui in flex is not that difficult. A framework is already available for that - http://code.google.com/p/flexmdi/ although as you said.. just copying a desktop design over to a web app might not be a good approach. On Wed, Mar 10, 2010 at 1:32 AM, raja_s_patil

Re: [flexcoders] SWC not getting updated everytime

2010-03-07 Thread Peeyush Tuli
are you compiling a library project and then unable to get the updated swc? - must be an access problem in the output directory or is your flex project dependent one of your library projects? - why did you add the swc as a reference, if you are also coding the lib project. A better practice would

Re: [flexcoders] Trouble with ProgressBar and manual updates.

2010-03-04 Thread Peeyush Tuli
in this case. Even delaying the adds by a callLater does not allow the progressBar to update visually. *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Peeyush Tuli *Sent:* Tuesday, March 02, 2010 10:18 PM *To:* flexcoders@yahoogroups.com *Subject:* Re

Re: [flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread Peeyush Tuli
*Having said that, I created my applications in such a way that my middle tier has a few generic methods for querying, updating, inserting data from a DB (usually Oracle). There is also a generic middle tier routine to handle stored procedures as well. My presentation layer, Flex, builds a SQL

Re: Re[flexcoders] strict user input in TextInput

2010-03-02 Thread Peeyush Tuli
not sure.. but check if this helps http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1049969 you might need to modify the original code.. ~Peeyush http://www.mds.asia On Tue, Mar 2, 2010 at 8:30 PM, sasuke uzumaki.naruto...@gmail.com wrote: Hi all. How would I

Re: [flexcoders] What type of backend Java technology Flex Developer should know?

2010-03-02 Thread Peeyush Tuli
i think a good point to start with how Flex and Java communicate. - Start with some samples of blazeds with flex. Blazeds is an open source java based infrastructure for flex and java communication from Adobe. - If you get hooked, try Merapi. That's how Java and Adobe AIR can communicate. On

Re: [flexcoders] Trouble with ProgressBar and manual updates.

2010-03-02 Thread Peeyush Tuli
it might be that all the processing is too much to be displayed in the same frame. So this might help you http://jimmyflex.blogspot.com/2007/11/dont-forget-power-of-calllater.html ~Peeyush http://www.mds.asia http://jimmyflex.blogspot.com/2007/11/dont-forget-power-of-calllater.html On Wed,

Re: [flexcoders] Having Trouble With Filtering Tilelist's/DataProviders

2010-03-01 Thread Peeyush Tuli
Missing a refresh call on productac after setting the filter function? On 3/2/10, James garymoorcroft_...@yahoo.co.uk wrote: I've done some research on this and I think I'm getting there but I can't seem to get it working in my own app. I have two tilelists categoriesTilelist and

Re: [flexcoders] Flex stress Testing

2010-02-28 Thread Peeyush Tuli
to the server and trace the results about time. As a conclusion, the thing that i want is, a kind of merged version: FlexMonkey functionality + load test for Flex application that sending amf requests from different buttons, actions to server. --- On *Fri, 2/26/10, Peeyush Tuli peeyus...@gmail.com

Re: [flexcoders] Using embedded fonts in modules

2010-02-28 Thread Peeyush Tuli
are all modules loaded in the application yours? http://opensource.adobe.com/wiki/display/flexsdk/Per-Module+Style+Management http://livedocs.adobe.com/flex/3/html/help.html?content=styles_10.html -another module loading its own stylesheet can override your style symbols since StyleManager is a

Re: [flexcoders] Repertory for confidentiality

2010-02-28 Thread Peeyush Tuli
some of my experiences - - load those images over an ssl link. It is possible to load data from a secured link through an unsecured url in flex. - do not expose the actual image url over a file server/ftp server. Rather use some server side scripting(http handler) over a secure link which

Re: [flexcoders] Flex stress Testing

2010-02-26 Thread Peeyush Tuli
it seems like you want to test your system for concurrent sessions/users. I am not sure how does that relate to flex which is a client technology. Do you intend to stress test your back end/server infrastructure like webservices, LCDS/Blazeds infrastructure? On Fri, Feb 26, 2010 at 3:36 PM, as

Re: [flexcoders] SQLite foriegn key not working

2010-02-26 Thread Peeyush Tuli
Can you clarify more?Is the delete not cascading to the child tables and removing the child records with the parent reference? On Fri, Feb 26, 2010 at 2:02 PM, Lexter halfbaked11...@yahoo.com wrote: hello everyone, I have a problem ragarding an sqlite query in AIR application. My foreign key

Re: [flexcoders] Accessing 'change' property in a dynamically-created TextInput.

2010-02-24 Thread Peeyush Tuli
myTextInput.addEventListener( flash.events.Event.CHANGEfile:///C:/Documents%20and%20Settings/peeyushtuli/My%20Documents/flex3_documentation/langref/flash/events/Event.html#CHANGE,myChangeHandler); On Thu, Feb 25, 2010 at 4:44 AM, Laurence lmacne...@comcast.net wrote: Suppose I have the

Re: [flexcoders] Re: Missing component in flexbuilder 3

2010-02-24 Thread Peeyush Tuli
RadioButtonGroup is not a desendant of UIComponent as mentioned in the livedocs so Tim might be right.But what's really interesting is that how does the mx:RadioButtonGroup manage to be visible in the controls section. ~Peeyush http://www.mds.asia On Thu, Feb 25, 2010 at 7:09 AM, aceoohay

Re: [flexcoders] Re: A popupbutton without arrow?

2010-02-23 Thread Peeyush Tuli
i have changed the older url with view source enabled. Clear your browser cache once. On Sat, Feb 20, 2010 at 8:32 AM, Angelo Anolin angelo_ano...@yahoo.comwrote: Mind sharing your code / scripts? Thanks. -- *From:* Leonardo Camargo camargoleona...@gmail.com

Re: [flexcoders] Strategies for switching between testing and deployment addresses

2010-02-22 Thread Peeyush Tuli
you can always read the ip address from an xml file at application startup and bind your service to it.. On Mon, Feb 22, 2010 at 6:30 AM, David Adams dpad...@gmail.com wrote: I've been writing some small programs that use HTTPService calls to fetch data from a back-end. During testing, I'm

[flexcoders] vote for webservice bug

2010-02-22 Thread Peeyush Tuli
Has anybody else encountered this issue before? http://bugs.adobe.com/jira/browse/SDK-25568 If yes, request you to vote for it so that it can get a priority to get fixed. Any workarounds are welcome as this is kind of critical for our project. ~Peeyush http://www.mds.asia

Re: [flexcoders] Re: Compile Error Under 3.5a but not 3.4

2010-02-22 Thread Peeyush Tuli
That is definitely not a bug in 3.5a. I have been using 3.5 for the past week without any such issues. But I have been having this problem on and off for around 3 years since flex builder 2. As far as I can recall, recreating your workspace in different location might be helpful since FB does a

Re: [flexcoders] issue related to embedding a linkbar within a tabnavigator

2010-02-22 Thread Peeyush Tuli
try placing a debug point in the set style method of the linkbar class and investigate. Also check the set styleChanged method. I suspect an inherited style might be a causing a problem here. On Mon, Feb 22, 2010 at 2:42 PM, sharath reddy sharathre...@yahoo.comwrote: Hi, We have a

Re: [flexcoders] Capturing a browser-refresh event...

2010-02-21 Thread Peeyush Tuli
window.onbeforeunload = function() { return It is not recommended to use the browser close/refresh/close buttons unless you have saved your data and logged out; } Add the above code to a javascript section on the html wrapper which loads your application. This will raise a

Re: [flexcoders] Displaying formatted HTML in a flex component?

2010-02-20 Thread Peeyush Tuli
try this - http://code.google.com/p/flex-iframe/ On Thu, Feb 18, 2010 at 7:30 PM, flexnewbie999 wgb.jobsearch@gmail.comwrote: I'm redoing an existing site and the client wants the same HTML that already exists to be displayed in the Flex front end. I'm relatively new to this and

Re: [flexcoders] error in consumer

2010-02-19 Thread Peeyush Tuli
you need to be more detailed. Check section 5 on how to post a query which will fetch you helpful replies as explained here- https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847 On Wed, Feb 17, 2010 at 9:49 AM, Abhishek Saxena abhisheksaxena...@yahoo.co.in wrote:

Re: [flexcoders] Best way to implement WebService Resend functionality?

2010-02-19 Thread Peeyush Tuli
An elegant design pattern would be to implement a request queue. All the requests that your webservice needs to send should be put in a queue. This queue can be a collection.Each item of this collection should have the following properties - -Request data -Operation/Webmethod Name -Function

Re: [flexcoders] Flex Builder build and search functions die on Vista

2010-02-19 Thread Peeyush Tuli
Does changing the workspace location and recreating it help? Do you have any source linkages in any of the projects to folders located outside the workspace? On Fri, Feb 19, 2010 at 10:00 PM, Tom McNeer tmcn...@gmail.com wrote: Very strange. Vista, 32-bit. Flex Builder 3 plug-in. Eclipse

Re: [flexcoders] NetConnection.Call.Failed - Need to diagnose

2010-02-19 Thread Peeyush Tuli
Did you try to monitor the HTTP traffic in a test environment? It gives you a good idea what goes behind the scenes. http://soenkerohde.com/2008/04/debug-air-remote-traffic/ On Fri, Feb 19, 2010 at 9:02 PM, Battershall, Jeff jeff.battersh...@dowjones.com wrote: I’ve built an AIR app using

Re: [flexcoders] WSDL objects - Flex value objects

2010-02-03 Thread Peeyush Tuli
Why dont you use this? http://shardulbartwal.wordpress.com/2008/03/20/import-web-servicewsdl-wizard-in-flex-30/ its the easiest way to convert a wsdl to AS3 client stubs. On Tue, Feb 2, 2010 at 8:57 PM, Nick Middleweek n...@middleweek.co.ukwrote: Hello, Does anyone know of a way to

Re: [flexcoders] Google combo like Flex interface

2010-02-03 Thread Peeyush Tuli
http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1047291 On Wed, Feb 3, 2010 at 8:27 PM, Christophe christophe_jacque...@yahoo.frwrote: Hello, I have a client table in a mySql database, and I want to propose in a Flex RIA a search interface for the client list

Re: [SPAM] Re: [flexcoders] Loading XML

2010-02-03 Thread Peeyush Tuli
All requests to load resources are HTTP requests in Flex.flex is not the best at returning you the exact HTTP status codes in these situations(which will tell you the true reason for the error). Try using an HTTP traffic monitor like http://www.charlesproxy.com/ It will tell you exactly what

Re: [flexcoders] Localization problems mainly on Macs - Cannot switch to second input Language

2010-02-03 Thread Peeyush Tuli
No work around, but i think that the problem is that flash player in combination with some browsers (mentioned above) 'eats' the ALT-SHIFT / change language event - i might be wrong... you might be absolutely correct.The browser stealing keyboard shortcut problem has been there for at least a

Re: [flexcoders] Re: Override FileReference Class [1 Attachment]

2010-02-03 Thread Peeyush Tuli
I think I get what you mean. Mr. Flex, there are two ways to enable filedownload from a server script in flex - - Using a script which contains an html content in itself and thus the need to do a navigatetourl so that it should be opened in different browser window. In dotnet terminology an .aspx

Re: [flexcoders] Re: Error 1069 Decoding Error

2008-08-13 Thread Peeyush Tuli
Could be a problem with a malformed soap response which is not confirming to the schema bound in the wsdl. Please use a HTTP proxy like Charles to verify the response from the server. Check if a fault element is in the xml response, which a soap webservice enabled server should send in most

[flexcoders] Pass Parameters to swf from url link

2008-05-14 Thread Peeyush Tuli
Hi, I need to specific parameters to a flex app embedded in an html wrapper. These parameters can be sent appended to the url link of the html wrapper. One way which I thought was to map the url to a server side script which could manipulate the html file ( as a string) to contain these

[flexcoders] Re: Pass Parameters to swf from url link[solved]

2008-05-14 Thread Peeyush Tuli
http://flex-apollo.blogspot.com/2007/06/passing-parameters-to-swf.html ~Peeyush On Wed, May 14, 2008 at 3:27 PM, Peeyush Tuli [EMAIL PROTECTED] wrote: Hi, I need to specific parameters to a flex app embedded in an html wrapper. These parameters can be sent appended to the url link

Re: [flexcoders] How do I repaint?

2008-04-23 Thread Peeyush Tuli
A wild guess but I think the updateDisplaylist method is called by flex to redraw the icon when you mouseover. You might have to call this method explicitly. ~Peeyush On Tue, Apr 22, 2008 at 11:05 PM, Matt [EMAIL PROTECTED] wrote: I am dynamically setting the 'icon' to a LinkButton using

Re: [flexcoders] Re: How do I repaint?

2008-04-23 Thread Peeyush Tuli
! --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Peeyush Tuli [EMAIL PROTECTED] wrote: A wild guess but I think the updateDisplaylist method is called by flex to redraw the icon when you mouseover. You might have to call this method explicitly. ~Peeyush On Tue, Apr

Re: [flexcoders] Getting Error #2032: Stream Error randomly in Flex3.0

2008-04-21 Thread Peeyush Tuli
-- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Peeyush Tuli *Sent:* Monday, April 21, 2008 11:03 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Getting Error #2032: Stream Error randomly in Flex3.0 There can be issue with parsing the SOAP

Re: [flexcoders] Getting Error #2032: Stream Error randomly in Flex3.0

2008-04-20 Thread Peeyush Tuli
There can be issue with parsing the SOAP message server-side or client side. Please use an HTTP Proxy like Charles to check the request - response message in detail. It will report you the correct error message. ~Peeyush On Mon, Apr 21, 2008 at 10:58 AM, Gupta, Pradeep [EMAIL PROTECTED] wrote:

Re: [flexcoders] WS call returning error from Flex 2

2008-04-03 Thread Peeyush Tuli
Please install an http debugging proxy like http://www.xk72.com/charles/ Look for the request response in the particular operation call. Flex is not able to decipher the exact error message in a soap fault sometimes, which you will be able to view in the response tab in charles. Most probably

Re: [flexcoders] Portal with Flex

2008-03-31 Thread Peeyush Tuli
Maybe any J2ee gurus can comment better, but here are my 2 cents. Regarding point 2, Flex is a client side technology, while session management and clustering are server side concerns. Is it not all about appending a session id as one of the parameters in the remote call for the calling client.

Re: [flexcoders] Re: Flex 3: Cloning WebService instance

2008-03-22 Thread Peeyush Tuli
():WebService { //This is where the cloning takes place } public populateGridWS():void { var ws:WebService = getWS(); ws.populateGrid(); } } Hope this is pretty clear. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Peeyush Tuli [EMAIL PROTECTED] wrote: Can you let us know

Re: [flexcoders] How to load and display favicon.ico in Flex.

2008-03-21 Thread Peeyush Tuli
http://code.google.com/p/flexlib/wiki/ComponentList Check IconLoader . Works for Flex 2 but not sure about 3. ~Peeyush On Fri, Mar 21, 2008 at 10:10 AM, flexindesign [EMAIL PROTECTED] wrote: I have some difficulties displaying favicon.ico files in Flex 3. Any suggestion? I tried image

Re: [flexcoders] how to copy a DisplayObject

2008-03-21 Thread Peeyush Tuli
I am not aware whether this is possible or not, but I am pretty sure it is not the best approach to do it. Why dont you make a separate mxml component and then use it at both the places? This way you can maintain the any coding changes at one place, unless there is something else you imply by

Re: [flexcoders] Flex 3: Cloning WebService instance

2008-03-20 Thread Peeyush Tuli
Can you let us know the your requirement for doing this? ~Peeyush On Fri, Mar 21, 2008 at 4:01 AM, handitan [EMAIL PROTECTED] wrote: Howdy, I have been trying to clone a WebService instance with no result. Is it really possible to do it? I have looked on the web and Flex 3 help but I

Re: [flexcoders] How to make Web Service

2008-03-20 Thread Peeyush Tuli
Try to open the wsdl url in a browser window and check if it is correct. ~Peeyush On Mon, Mar 17, 2008 at 5:15 PM, qau_yasir [EMAIL PROTECTED] wrote: Hi! I have created a simple web service in Flex 3. It is simple java class that has two methods. One of the method, Fun()method returns

Re: [flexcoders] Filtering Function Question

2008-03-13 Thread Peeyush Tuli
Are you using an XMLListCollection as the dataprovider here? ~Peeyush On Thu, Mar 13, 2008 at 6:32 PM, Mark Forsberg [EMAIL PROTECTED] wrote: I have the following code that I'm trying to use to filter an arrayCollection. public function filterDocuments(item:Object):Boolean{ var

Re: [flexcoders] Re: mx:webservice and .NET 2.0 webservices

2008-03-06 Thread Peeyush Tuli
BEFORE I call the webmethod. I am using the latest beta, we are in the middle of a build so we can upgrade to the release thanks r --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Peeyush Tuli peeyush81@ wrote: flex 2 and .Net 2 webservices mix pretty well

Re: [flexcoders] Re: mx:webservice and .NET 2.0 webservices

2008-03-05 Thread Peeyush Tuli
flex 2 and .Net 2 webservices mix pretty well. What's your flex version? Are you getting the error at the time of loading the wsdl itself , i.e without invoking any webmethod? Are your request response message types defined in a particular namespace in the xsd? ~Peeyush On Thu, Mar 6, 2008 at

Re: [flexcoders] Question about SoapDecoder and Sequence XSD Schema Types

2008-03-04 Thread Peeyush Tuli
In your xsd there are no occurence attributes specified , so the elements have default occurrence attributes, minoccurs=1 and maxoccurs = 1 In other words, they are always required once. Are you sure this is the exact schema which defines your response element? ~Peeyush On Tue, Mar 4, 2008 at

Re: [flexcoders] Re: Question about SoapDecoder and Sequence XSD Schema Types

2008-03-04 Thread Peeyush Tuli
%40yahoogroups.com, Peeyush Tuli [EMAIL PROTECTED] wrote: In your xsd there are no occurence attributes specified , so the elements have default occurrence attributes, minoccurs=1 and maxoccurs = 1 In other words, they are always required once. Are you sure this is the exact schema which defines

Re: [flexcoders] Shortcut Keys

2008-02-24 Thread Peeyush Tuli
http://tech.groups.yahoo.com/group/flexcoders/message/91469 http://tech.groups.yahoo.com/group/flexcoders/message/90567 The solution lies in javascript/externalInterface. Can you be specific on the browser/OS you intend to support? On Sat, Feb 23, 2008 at 3:35 AM, David C. Moody [EMAIL

Re: [flexcoders] how create dynamic menubar as per database data

2008-02-24 Thread Peeyush Tuli
modify its dataprovider when required? On Sat, Feb 23, 2008 at 12:32 PM, imran shaikh [EMAIL PROTECTED] wrote: hello all, i want to know about how to create menubar as dynamic please response as soon as possible. -- 5, 50, 500, 5000 - Store N number of mails

Re: [flexcoders] problem with XMLListCollection addItem()

2008-02-24 Thread Peeyush Tuli
Can you post some sample code coz the code below does not behave as you mentioned. private function oncomplete():void{ var xmlListColl:XMLListCollection = new XMLListCollection; var x:XMLList = p1/p/; xmlListColl.addItem(x); } On Sat, Feb 23, 2008 at 7:00 PM, xmwang1982 [EMAIL

Re: [flexcoders] XMListCollection change async.

2008-02-24 Thread Peeyush Tuli
When you apply the filterfunction, you can check in the debugger also that the collection length would be reduced to the length filtered items.So at a given point say the filtered length is 2 and you try to add at 8 , it is bound to throw the exception. One way could be to use filterfunction =

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread Peeyush Tuli
I did some work earlier on switching between two fixed resolutions. I may not be totally correct but based on my observations, If you change the scaleX property of the parent layout component, it more or less resizes the child component accurately. (although I had to resize down and up on a button

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread Peeyush Tuli
, Peeyush Tuli [EMAIL PROTECTED] wrote: I did some work earlier on switching between two fixed resolutions. I may not be totally correct but based on my observations, If you change the scaleX property of the parent layout component, it more or less resizes the child component accurately

Re: [flexcoders] how to de-serialize objects

2008-02-19 Thread Peeyush Tuli
Are you sure about the code where you set the dataprovider to be 100% correct as I have never encountered such a scenario of no serialization. One quick recall i have is that flex was not able to de-serialize date types when used with a dotnet webservice, it rather takes them as a string. Can

Re: [flexcoders] Re: Datagrid headers without separators

2008-02-19 Thread Peeyush Tuli
The way you are doing it will do it only once, then the view is refreshed to original. You need to override the protected method updateDisplayList and then call clearSeparators. updateDisplayList is the method invoked by flex itself to update the view of a component. override protected

Re: [flexcoders] flex + webservices

2008-02-18 Thread Peeyush Tuli
My code is consuming dot net web services for a long time without using the file you mentioned. As far as I know you would only require the webservice endpoint url and some security policy file configuration to consume webservices. On Feb 18, 2008 10:39 AM, cool buddy [EMAIL PROTECTED] wrote:

Re: [flexcoders] Multiple popups in flex application

2008-02-18 Thread Peeyush Tuli
Yes that is possible. I assume by modules you mean visual components in an application. Use PopUpManager.addPopUp for that. ~Peeyush On Feb 19, 2008 3:23 AM, Danish Tehseen [EMAIL PROTECTED] wrote: Is it possible to open multiple popups from different modules, without bluring the

Re: [flexcoders] Send event to all objects?

2008-01-03 Thread Peeyush Tuli
One way can be to add an event listener of each ball instance with the parent application using the parentapplication handle. parentapplication.addEventListener(customevent, handler); you can do it in the creationcomplete method of the ball instance. When you capture the mouse event, just

Re: [flexcoders] Re: SharedObject security

2007-12-31 Thread Peeyush Tuli
Can you check if there's a way to retrieve such information via javascript? If yes then you can use external interface to get that information in Flex and so on. On Dec 30, 2007 11:02 PM, Ralf Bokelberg [EMAIL PROTECTED] wrote: Good point. I'm not aware of a possibility to identify a client

[flexcoders] Nested rows in Datagrid Flex 2

2007-12-18 Thread Peeyush Tuli
Hi All, Has anybody tried something like a nested row in a datagrid in flex 2, which has a collapse and restore button with it?( Screenshot attached) Thanks, Peeyush attachment: Snap.JPG

Re: [flexcoders] CSS usage?

2007-12-06 Thread Peeyush Tuli
http://fleksray.org/Flex_skin.html#Flekristal have a look at the demo with this skin. Explains the usage of mx.styles.StyleManager to change the style attributes like color ,transparency configurable by a user at runtime. Thanks, Peeyush Tuli MetaDesign Solutions. On Dec 6, 2007 5:59 AM, Lex

[flexcoders] Re: Treat RadioButton Column in Datagrid as Group

2007-10-30 Thread Peeyush Tuli
Correction, I meant to show a radio button per row. On 10/30/07, Peeyush Tuli [EMAIL PROTECTED] wrote: Hi, I want to add a column in a datagrid which would show a datagrid column per row. That was accomplished by using a custom item renderer, I want to treat the whole column as a single

[flexcoders] Treat RadioButton Column in Datagrid as Group

2007-10-30 Thread Peeyush Tuli
Hi, I want to add a column in a datagrid which would show a datagrid column per row. That was accomplished by using a custom item renderer, I want to treat the whole column as a single radio button group and have the same properties. Any suggestions on what could be the best approach of doing it?

Re: [flexcoders] Escaping data-

2007-10-25 Thread Peeyush Tuli
I dont know anything about Janus but do you just want to append escape characters to reserved ones in the user input so that your sql query remains valid? If yes then you can do that either on server or client side by calling a string manipulation function like replace in AS3. Thanks, Peeyush

Re: [flexcoders] webparts in flex?

2007-10-23 Thread Peeyush Tuli
these settings, you can do that using a shared object on the client side or a database on the server side. Thanks, Peeyush Tuli MetaDesign Solutions - Original Message - From: Jaganathan.K To: flexcoders@yahoogroups.com Sent: Tuesday, October 23, 2007 11:40 AM Subject: [flexcoders

Re: [flexcoders] KeyBoard Event Simulation

2007-10-23 Thread Peeyush Tuli
handling in most of the browsers. So I would be really grateful to Adobe if they could share some resources, tutorials and best practices related to this issue. Thanks, Peeyush Tuli MetaDesign Solutions - Original Message - From: Alex Harui To: flexcoders@yahoogroups.com Sent

Re: [flexcoders] Method for Currently focussed Component

2007-10-23 Thread Peeyush Tuli
I used getFocus() inherited from UIComponent. Thanks, Peeyush Tuli MetaDesign Solutions - Original Message - From: Alex Harui To: flexcoders@yahoogroups.com Sent: Thursday, October 18, 2007 10:36 PM Subject: RE: [flexcoders] Method for Currently focussed Component I

[flexcoders] Method for Currently focussed Component

2007-10-18 Thread Peeyush Tuli
Hi, Is there a way to determine at the application level, the child UI Component having the current focus ? Regards, Peeyush Tuli MetaDesignSolutions

Re: [flexcoders] Method for Currently focussed Component

2007-10-18 Thread Peeyush Tuli
I got the solution. Regards, Peeyush Tuli MetaDesign Solutions - Original Message - From: Peeyush Tuli To: flexcoders@yahoogroups.com Sent: Thursday, October 18, 2007 6:40 PM Subject: [flexcoders] Method for Currently focussed Component Hi, Is there a way

[flexcoders] KeyBoard Event Simulation

2007-10-17 Thread Peeyush Tuli
= event.keyCode; evt.charCode = event.charCode; // dispatch event to the uitextfield on the second textinput t1.getChildAt(1).dispatchEvent(evt); Am I missing something? Regards, Peeyush Tuli MetaDesignSolutions

Re: [flexcoders] ALTGr key gives two keyboard events

2007-10-14 Thread Peeyush Tuli
following to prevent IE7 from blocking the ctrl keyboard events to Flash player plug-in ? Thanks, Peeyush Tuli MetaDesign Solutions - Original Message - From: Alex Harui To: flexcoders@yahoogroups.com Sent: Friday, October 12, 2007 11:40 PM Subject: RE: [flexcoders] ALTGr key gives