[flexcoders] Security error accessing url - webservices.

2009-06-29 Thread akila_ksri
Hi, I am trying to call a webservice from my flex app. The webservice and the app are both in the same network. When I run the application, I get the following error: Security error accessing url faultCode=Channel.Security.Error faultDetail=Unable to load WSDL. If currently online, please

[flexcoders] addChild using actionscript

2009-06-29 Thread ew6014
hi guys. i was reading flex3 for dummies page 221 on containers and it gave an example of adding childen using actionscript. it worked fine. but i thought about adding a removeChild function. but it doesnt seem to be working. can someone tell me why? i apologize if this is a stupid mistake.

[flexcoders] Re: Flex 3 Exam Cert Question

2009-06-29 Thread ew6014
hi leds thanks for much. i will look into the flex 3 developer guide but there doesnt seem to be a guide on using LCDS. lifecycle is using a lot in the guide but none of them does teach on how to implement lcds messaging and data management wondering if reading the actual documentation of

Re: [flexcoders] Re: Flex 3 Exam Cert Question

2009-06-29 Thread claudiu ursica
Check the lynda.com videos for LCDS. TH, C From: ew6014 ew6...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, June 29, 2009 12:43:47 PM Subject: [flexcoders] Re: Flex 3 Exam Cert Question hi leds thanks for much. i will look into the flex 3

Re: [flexcoders] Re: Flex Browse File

2009-06-29 Thread Tom Chiverton
On Friday 26 Jun 2009, reversible_82 wrote: No, it seem like this class do not exist in flex, should be a way to do this on flex, does anyone have an Idea? FileReference.browse(); -- Helping to ambassadorially participate clicks-and-mortar materials as part of the IT team of the year, '09

[flexcoders] Creating Custom Tooltip

2009-06-29 Thread ursprakash6
Hi i want to show the tooltip with text and image content. but Tooltipmanager.createtooltip() only having the string type argument so i have created one custom class called 'CustomTooltip' Now how to bind this with TooltipManager? Can anybody help me? here is the tooltip component code

[flexcoders] How to use modulemanger to load modules

2009-06-29 Thread j2me_soul
How to load a module ?

Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread claudiu ursica
There is this document issued by adobe where they explain with examples how to handles modules ... http://blogs.adobe.com/flexdoc/pdfs/modular.pdf TH, C From: j2me_soul j2me_s...@163.com To: flexcoders flexcoders@yahoogroups.com Sent: Monday, June 29, 2009

Re:Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread j2me_soul
If I declare a moduleloader object in mxml it works. mx:ModuleLoader url=modules/workalert_mod.swf id=AllStaffLoader width=100% height=292 x=0 y=475 x.workAlert=1 y.workAlert=478/ But I want to dynamically load a module, so I try to do this using modulemanager. private var

[flexcoders] Opening with Wipro

2009-06-29 Thread Ganesh Suyampirakasam
We have Openings for Wipro Technologies -- SFDC FLEX - L2 We are Authorized vendors for Wipro Technologies, Not just a Consultancy we are even into software development. Head quarters in US one of the branch in Hyderabad. Go through the job description mentioned below APPLY Skills and

[flexcoders] Custom serial/deserialization on the client only

2009-06-29 Thread jcrist.pbking
I have an app that needs some custom serialization. I tried to use IExternalizeable. If it worked that would be exactly what I need. But the issue is that I need to do this custom serialization on the client only. To get the IExternalizeableized classes read/write methods called the server

[flexcoders] Re: Flex 3 Exam Cert Question

2009-06-29 Thread hollyschinsky
Hi there, If you haven't found Attest yet, you should check it out. It's a mock exam engine for the Flex 3/AIR Certification test. We cover each area of the exam requirements in the tests and there are a bunch of links for the LCDS questions to where you can learn more. You can download the

Re: Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread claudiu ursica
Your code looks fine to me... Are you sure the getModule() returns a valid instance?? C From: j2me_soul j2me_s...@163.com To: flexcoders flexcoders@yahoogroups.com Sent: Monday, June 29, 2009 2:28:25 PM Subject: Re:Re: [flexcoders] How to use modulemanger to

Re:Re: Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread j2me_soul
I can sure. Because if getModule return a unvalid value the next sentence will be going wrong. I use the Flex4 SDK. Is that make thing complexed? protected function application_initializeHandler():void { module = ModuleManager.getModule(modules/workalert_mod.swf);

Re: Re: Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread claudiu ursica
I dunno haven't switched to F4 yet, at least haven't developed any commercial stuff only played with it a little bit and haven;t touched the modules yet in F4. check help file this http://livedocs.adobe.com/flex/gumbo/html/flex_4_help.pdf maybe they have something in there ... C

Re:Re: Re: Re: [flexcoders] How to use modulemanger to load modules

2009-06-29 Thread j2me_soul
Thanks Claudiu, I put the code into flex3, it works well. I think it's the problem. 在2009-06-29,claudiu ursica the_bran...@yahoo.com 写道: I dunno haven't switched to F4 yet, at least haven't developed any commercial stuff only played with it a little bit and haven;t touched the modules

[flexcoders] TextSnapshot issue within AIR Window

2009-06-29 Thread Muhammad Ahmed Ullah
Hi, In AIR, TextSnapshots are not properly working when used in mx.core.Window's subclass. Details of the scenario is as under: Create and open object of custom subclass of Window in Adobe AIR. Within this subclass do the following: Load the swf file: var loader:Loader

[flexcoders] Re: addChild using actionscript

2009-06-29 Thread Amy
--- In flexcoders@yahoogroups.com, ew6014 ew6...@... wrote: hi guys. i was reading flex3 for dummies page 221 on containers and it gave an example of adding childen using actionscript. it worked fine. but i thought about adding a removeChild function. but it doesnt seem to be working. can

Re: [flexcoders] addChild using actionscript

2009-06-29 Thread Robert VanCuren Jr
You are trying to remove a child that has never been added. In your addCheckBox function you are creating a new CheckBox and then adding it which is fine but then in your removeCheckBox function you are again creating a brand new CheckBox and trying to remove it. This will not work because the new

[flexcoders] Compiling selected files in Flex

2009-06-29 Thread Vaibhav Chauhan
Hi All, My team is working on a large flex application. As required, most of the times we need to make very small change in the files[say some percentage change of a component]. For this, we need to compile whole module. I wanna know if there is a way so that I can compile some selected files

RE: [flexcoders] Watching a class full of bindable properties

2009-06-29 Thread Yves Riel
There are a few glitches with what you propose: First, you cannot create a watcher that monitors all of your properties at once. The binding chain contains a hierachy list of parents and children. The chain is there so that any change on the parents or children will trigger the binding. Your

[flexcoders] Re: How do I create in ActionScript what MXML lets me do?

2009-06-29 Thread valdhor
Alex has sorted you for the AS stuff. If you have a look at your item renderer you will notice two things missing. One is a call to super and the other is to check for null data: super.data = value; if(value != null) --- In flexcoders@yahoogroups.com, Raymond Brown silenttr...@... wrote:

[flexcoders] Re: Security error accessing url - webservices.

2009-06-29 Thread valdhor
If you copy and paste the WSDL URI into a browser, does it appear? Can you post the WSDL? (Or the URI of the WSDL) --- In flexcoders@yahoogroups.com, akila_ksri akila_k...@... wrote: Hi, I am trying to call a webservice from my flex app. The webservice and the app are both in the same

[flexcoders] Re: Creating Custom Tooltip

2009-06-29 Thread valdhor
Google is your friend: http://www.google.com/search?q=flex+custom+tooltip --- In flexcoders@yahoogroups.com, ursprakash6 urspraka...@... wrote: Hi i want to show the tooltip with text and image content. but Tooltipmanager.createtooltip() only having the string type argument so i have

[flexcoders] Absolute positioning of a new window

2009-06-29 Thread cf.ende
Hi, I need to retrieve the absolute and correct x and y coordinates of an inner AIR window relaiv to point (0,0) on the desktop. The normal coordinates doesn't help me if this a normal window. For the correct position of the inner window I need to substract the border-width and the header-height

[flexcoders] Re: addChild using actionscript

2009-06-29 Thread valdhor
You are not removing one of the checkboxes you added. If you check the documentation for VBox at http://livedocs.adobe.com/flex/3/langref/mx/containers/VBox.html you will see there are a couple of ways to remove a single child - removeChild and removeChildAt. removeChild would work if you had

Re: [flexcoders] Compiling selected files in Flex

2009-06-29 Thread claudiu ursica
Since the app is very large you should be using ant or maven. Make a script for every module and another one for the shell ap. The you can make a script that runs the all or you can invoke the ant just on the module that has changed ... C From: Vaibhav

[flexcoders] Configureing AIR app for blazeds messaging

2009-06-29 Thread netdeep
I am trying to get messaging working with my AIR application. I'm converting a Flex application into AIR and everything works in Flex but not in AIR. I can get remoting working, but messaging isn't working. I set up remoting channels at runtime using the examples from this site:

[flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-06-29 Thread Pan Troglodytes
No ideas on how to do this at all? On Tue, Jun 9, 2009 at 4:13 PM, Pan Troglodytes chimpathe...@gmail.comwrote: I've got a bit of a problem and haven't been able to figure it out. When using hierarchical views with ADG, I find that the icon can't be clicked on to select the row. I can't

[flexcoders] Modules and Memory usage.

2009-06-29 Thread flexaustin
So I have built a fairly large application that is an extreme memory usage due to the graphics it contains (large quantity and high res). Right now the app has a single view, but allows the user to switch between two views. When the user switches views I wipe out the contents of the first view

[flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-06-29 Thread valdhor
Why not just use an itemRenderer? AFAIK. you can't capture a mouse event on a Class object as it does not implement iEventDispatcher. I suppose you could extend Class and implement iEventDispatcher but I have never tried it. --- In flexcoders@yahoogroups.com, Pan Troglodytes chimpathe...@...

[flexcoders] Testing Flex client and CF backend with QTP...

2009-06-29 Thread jones_a_h
Trying to cleanup a niggling bug that's gone unresolved for a while. We are using Flex in the client and ColdFusion server on the backend. QTP to test the clients (HTML/Javascript and Flex). This has been fine apart from getting QTP to recognize Flex apps hosted in an index.cfm file...can't get

[flexcoders] Problem using b in htmlText

2009-06-29 Thread greenfishinwater
I am using Flex 3 and have a Text compnent using htmlText. I am using the tags a and b, what I have noticed is that if I use b before a then all the following text is in Bold, even though I use /b to end Bold. This is an example of the code I am using showing the difference. Why? mx:Text

[flexcoders] Re: Problem using b in htmlText

2009-06-29 Thread Tim Hoff
Since you are not closing the a tags, it looks like the /b closing tag is not getting recognized. Just add /a and it works fine: ![CDATA[ ba href=event:1One/a/ba href=event:2 Twoa href=event:2 Two ]] -TH --- In flexcoders@yahoogroups.com, greenfishinwater greenfishinwa...@... wrote: I am

[flexcoders] about Object Shared and clients concurrency

2009-06-29 Thread mhbmarcos
Hi, i have a question about the concurrency and shared object, start with an example, we have a CRUD screen, and at the same moment, a client 1 and client 2 selects the same object for editing, so, the client 1 submited the edition, and then, the client 2, i see into his screen data not

[flexcoders] Re: Memory Leak in DataServices based App ??

2009-06-29 Thread Dharmendra Chauhan
Hi Alex, From allocation trace it seems that almost all loitering objects are being referrenced from referring to remoteObject.send() method and few are referencing to fill method of Data Service . I am clueless as what is wrong with my code.what is the best way to redesin these method. I

[flexcoders] Parsing HTML Dom in Adobe AIR / Actionscript based app

2009-06-29 Thread shizny
Hello, I'm trying to figure out how I can parse the html dom for a html page that has loaded in HTML tag in Adobe AIR. I have an event listener waiting for the html to complete and a function that is being called. I have seen a bunch of examples that use a JavaScriptObject that is created

[flexcoders] Re: Problem using b in htmlText

2009-06-29 Thread greenfishinwater
Thanks Tim, that solved the problem. I don't know how I missed it! Andrew

[flexcoders] Re: Parsing HTML Dom in Adobe AIR / Actionscript based app

2009-06-29 Thread valdhor
I'm no XML expert but why not put the HTML into an XML object and peruse it with e4X ?? --- In flexcoders@yahoogroups.com, shizny w...@... wrote: Hello, I'm trying to figure out how I can parse the html dom for a html page that has loaded in HTML tag in Adobe AIR. I have an event

[flexcoders] How to add custom sorting to AdvancedDataGrid to worked on grouped Data?

2009-06-29 Thread golnooshp
Hi, I have an advancedDataGrid that I need to add custom sorting to it which overrides the original sort! my sorting should work using a combobox to select ascending and desending from with a sort button! I know this is a bug in flex that its original sorting only works in hierarchical data and

[flexcoders] Re: Flex Browse File

2009-06-29 Thread reversible_82
Thanks, but what I'm trying to accomplish is get the String with the folder path, for example: D:/Files/Pic, with FileReference.browse(); I select the folder, so how could I get the String of the folder path... Thanks for your support --- In flexcoders@yahoogroups.com, Tom Chiverton

[flexcoders] Re: What the heck am I doing wrong with my GroupingCollection?

2009-06-29 Thread golnooshp
Hi Mark, Can you sort on groups at all? Because I know this is a bug in flex that you actually cannot sort on grouped data! the groups can only be sorted if the original data is a hierarchicalData and not a flatData! I'm having the same problem! my data is flat! and in my UI, user can add

[flexcoders] ListEvent itemRenderer field null when parent is out of view

2009-06-29 Thread lachance.brian
Hi, Group! I'm having some trouble with the Tree component in the Flex framework: When browsing a Tree with an XML-based dataProvider, I seem to be unable to retrieve the itemRenderer field of the ListEvent event that gets fired when the selected item changes (ListEvent.CHANGE). The itemRenderer

[flexcoders] Re: ListEvent itemRenderer field null when parent is out of view

2009-06-29 Thread Tim Hoff
Hi Brian, Nice post. Yeah, that is wierd; looks like a bug. You can get around it for now, by looking at the data instead: public function handleTreeItemChange(event:ListEvent):void { debugTextArea.text = ListEvent's selectedItem: + testtree.selectedit...@label