[flex_india:32005] Handling large volumes of data

2010-11-17 Thread Kronos
Hi, I have a flex web application that uses a .Net web service to access the database. This service retrieves the details of projects matching the search parameters from flex. The problem occurs when a wild card search or blank search is made in which case large volumes of projects ( in thousands)

[flex_india:32837] Re: assign value to input when initializing and creating popupwindow

2011-02-02 Thread Kronos
Hi, You had the right idea in the first place. After you created the popup you can set that variable from outside the popup only if the variable is public. So all u need to do is change var op from private to public. After that u can use the textInput or change event provided in the TextInput to

[flex_india:32849] Re: Cannot access image component inside module

2011-02-04 Thread Kronos
Sorry cant help u much... the code looks fine. However my guess is that your module is not getting loaded for some reason. Why dont u debug the code and see if ur onHeaderModuleReady function is getting called or not. The most likely expanation is that it isnt and because of that ur variable jpl_he

[flex_india:32868] How to find out which module has been loaded in the Module Loader?

2011-02-07 Thread Kronos
Hi, I am using a Module Loader that dynamically loads different modules in the same Module Loader. The problem is if I am unloading a particular module say "X" and loading any other, I need to call one last function from X (like a destructor in C++) . I need to know before I unload my module if X w

[flex_india:32907] Re: How to find out which module has been loaded in the Module Loader?

2011-02-10 Thread Kronos
t 10:18 PM, Preetham Hegde > wrote: > > > *In module event you find the url of the module loaded.* > > * > > * > > *moduleEvent.module.url* > > > Regards, > > Preetham Hegde > > > On Mon, Feb 7, 2011 at 3:26 PM, Kronos wrote: > > >> H

[flex_india:32907] Re: How to find out which module has been loaded in the Module Loader?

2011-02-10 Thread Kronos
Event.module.url* > > Regards, > Preetham Hegde > > On Mon, Feb 7, 2011 at 3:26 PM, Kronos wrote: > > Hi, > > I am using a Module Loader that dynamically loads different modules in > > the same Module Loader. The problem is if I am unloading a particular > > module

[flex_india:33252] Creating a Ant Flex Build for a .Net Web Service project without WebORB or any other 3rd party tool

2011-03-15 Thread Kronos
Hi, I am working on a project that uses .Net Web services for calling data from the database. The problem is that these services have been configured by using the inbuilt Fiber plugin of Flex Builder which adds the services automatically once the wsdl url is provided. Everything builds perfectly fr

[flex_india:33257] Re: Duplicate data in DB

2011-03-16 Thread Kronos
If the ID field is created as an identity field, then u will have to reset the identity to the last used value so that the next generated ID will be ur free one. This is the syntax for MS SQL databases dbcc checkident(table_name, value, "reseed") dont know the syntax for oracle db. On Mar 11

[flex_india:33257] Re: Find file on foler

2011-03-16 Thread Kronos
Hi, I dint quite understand what u meant by search for a module & load it. In our application we have many modules & based on the user interaction the module is loaded or unloaded. But the code supports all module loading at runtime. I think you can do this for ur project too. Based on the client u

[flex_india:33257] Re: Through Indian Astrology you can get anything!

2011-03-16 Thread Kronos
How is flex supposed to solve this ??? hahaha marked as spam On Mar 14, 4:55 pm, Olivia wrote: > Indian Astrology goes by many names such as joytish or jyotisha in the > native language. In modern day it is also referred to as vedic > astrology. Unlike any other kind of astrology followed all ove

[flex_india:33342] Re: Show flex popup in a new Tab

2011-03-24 Thread Kronos
My guess is that u need to work on both windows. I suggest u use the ResizableTitleWindow that allows one to minimize the popup window to the taskbar and continue working on the main application rather than force the popup to open in a new tab. I have the code for the same but I dont know how to at

[flex_india:33368] Re: Creating a Ant Flex Build for a .Net Web Service project without WebORB or any other 3rd party tool

2011-03-31 Thread Kronos
account all the plugins that are used by Flash Builder to build your project. On Mar 15, 8:10 pm, Kronos wrote: > Hi, > I am working on a project that uses .Net Web services for calling data > from the database. The problem is that these services have been > configured by using the i

[flex_india:33368] Command Line interface to invoke/simulate the Data Services Wizard.

2011-03-31 Thread Kronos
Hi, I have a flex project that uses the Data Service Wizard in Flash Builder 4 to connect to .Net Web Services. Now I want to automate the build by using ANT tasks. However the services from the .Net side are generally manually entered in the project. If there is a command line interface to do the

[flex_india:33376] Re: call actionscript function through javascript

2011-04-01 Thread Kronos
Refer this link http://www.flexafterdark.com/docs/Flex-JavaScript It will solve all ur doubts. On Apr 1, 10:31 am, chandra sekhar wrote: > Hi , > >   Can please explain the call action script function through javascript.I > want to load modules through some operation in html. how to load the > m

[flex_india:33376] Re: Need to load a Tree with a Node expanded

2011-04-01 Thread Kronos
Initially the tree always loads collapsed. So what u need to do is select the first node (root node) & expand it tree.selectedIndex = 0 tree.expandItem(tree.selectedItem,true); Then u need to move to the child node that u need to expand tree.selectedIndex = x ( where x is the child node that nee

[flex_india:33378] Re: DataGrid

2011-04-01 Thread Kronos
Hi, My guess is that u have not set the "selectable" property in your Advanced Data grid to true. That is why u are getting selecteditem as null inspite of selecting a row. Its a common mistake happened to me alot :) Let me know if it doesnt work. On Mar 31, 3:18 pm, Gautham wrote: > hi, > >

[flex_india:33401] Re: call actionscript function through javascript

2011-04-05 Thread Kronos
So what seems to be the problem ??? Call back a function from the javascript end and in that function manipulate the Module Loader to load what ever module you want. You can even pass the name of the module from the javascript end to the function that ur calling back. That should work as u require.

[flex_india:33401] Re: Need to load a Tree with a Node expanded

2011-04-05 Thread Kronos
t; > > On Fri, Apr 1, 2011 at 6:39 PM, Kronos wrote: > > Initially the tree always loads collapsed. So what u need to do is > > select the first node (root node) & expand it > > > tree.selectedIndex = 0 > > tree.expandItem(tree.selectedItem,true); &g

[flex_india:33403] Re: Image Upload with height and width limitations??

2011-04-05 Thread Kronos
I'm not sure of this one bcoz i have not worked much on images but this is what I found after a little bit of googling. It seems that u can get the properties of the image when the init event is called (after creation complete u get the properties of the image control rather than the image itself)

[flex_india:33406] Re: DataGrid

2011-04-05 Thread Kronos
Sorry buddy, "Selectable = true" was the ace up my sleeve. The code looks fine except one minor thing. o['country']= countryId.selectedItem.value; should be o['country']= countryId.selectedItem.display; unless ur arraycollection "countries" has a value property. Still that doesnt solve ur proble

[flex_india:33441] Re: up down arrow button in Flex

2011-04-08 Thread Kronos
Hi, We will need to see a snipet of ur code to tell u what is wrong (there could be a number of reasons why u dont get the icons). U have the correct logic so I dont think any one can pinpoint the exact reason without seeing ur code. On Apr 8, 9:22 am, Malek S wrote: > HI , > I have a requriement

[flex_india:33442] Re: Please look at my problem

2011-04-08 Thread Kronos
Hi Sudha, What is the logic with which u are asking the user to click the allow button. If u are using Alert.show() then there is a parameter (closehandler) in the function prototype that allows u to call a function after Ok or Cancel is clicked. Just give the name of any function there without pa

[flex_india:33444] Re: Flex Progress Bar

2011-04-08 Thread Kronos
Hi Deepa, How are u adding the component to ur code? Debugging wont let u see how the css is being applied so its of no use. I think maybe there is something in the spinner code that is clashing with style sheet resulting in non functioning of the css (like similar component id for 2 different com

[flex_india:33480] Re: Event Listener invoke difference and which one is better

2011-04-18 Thread Kronos
Refer the link: http://stackoverflow.com/questions/3267056/how-does-flex-click-event-work-inside-of-containers It describes the same scenario for the Click event but I think the same applies to your case as well. It think that in place of Click event u will have to implement the various change eve

[flex_india:33498] Re: Data Grid Tabbing

2011-04-19 Thread Kronos
Hi Akshay, I have a suggestion but I dont think u will like it. It works on your own logic that u have stated. What u were doing is that after every tab event from Textfield3 you were dispatching an event. Now in the event listener function, u are able to get the next rowIndex & columnIndex.

[flex_india:33520] Re: Data Grid Tabbing

2011-04-20 Thread Kronos
icular cell next to my old > cell in DG. > How to get object of itemrenderer for particular cell ? > > On Apr 19, 3:23 pm, Kronos wrote: > > > Hi Akshay, > > >      I have a suggestion but I dont think u will like it. It works on > > your own logic that u have stated

[flex_india:33556] Re: Display PDF in flex

2011-04-26 Thread Kronos
Or if u dont want too much hassle u can throw the pdf at the browser with the navigateToURL and let the browser render the PDF. That way no extra code is necessary. On Apr 26, 6:02 pm, naveen SR wrote: > Hi Kapil, > > You can use Flex Paper component -->  http://flexpaper.devaldi.com/. There > is

[flex_india:33557] Re: MOving datagrid up and down on click of button

2011-04-27 Thread Kronos
Hi, >From what I understand of ur code posted before, u want to physically move the data one index above or below in the dataprovider array and display it on the datagrid. If this is correct then ur code looks fine, but there is one problem. U have handled the boundary condition for Move Up functi

[flex_india:33558] Re: MOving datagrid up and down on click of button

2011-04-27 Thread Kronos
Sorry its dg.dataprovider.length -1 for the last row selected. On Apr 27, 2:09 pm, Kronos wrote: > Hi, > From what I understand of ur code posted before, u want to physically > move the data one index above or below in the dataprovider array and > display it on the datagrid. If thi

[flex_india:33579] Re: Display PDF in flex

2011-04-28 Thread Kronos
the destination of the file that was written on the server. navigateToURL(urlrequest,"_blank"); This should be enough to display ur pdf. See if this helps. On Apr 27, 12:10 pm, kapilan Thangalakshmi wrote: > Hi Kronos, >   Thank u >              Nw i

[flex_india:33599] Re: Loading problem external swf with parameters?

2011-04-29 Thread Kronos
Hi, You need to check out flashvars Just read this link http://www.actionscript.org/forums/showthread.php3?t=175951 On Apr 29, 3:59 pm, Sudhakar wrote: > Hi all > >            i sticked with one problem anybody please give me solution. > > My Targets: > >  1) Loading external "SelectedQues

[flex_india:33619] Re: Loading problem external swf with parameters?

2011-05-02 Thread Kronos
to Google ... its as essential as breathing for developers ;) *** On Apr 29, 9:13 pm, Sudhakar Kilaparti wrote: > Hi Kronos, > > I tried with the give URL it did't work to me. :( > > *my ExternalSWFLoader.mxml code:* > > id="mapLoader" width="300" he

[flex_india:33692] Re: Numeric Steeper

2011-05-09 Thread Kronos
Hi Praveen, Have u considered the fact that there might be a maximum limit to the font size for textarea. I dont know for sure but looking at ur problem i am guessing this might be the reason that the font size does not increase beyond a point. Let me check it out and confirm this. On May 6, 3:47

[flex_india:33695] Re: Numeric Steeper

2011-05-09 Thread Kronos
Hi Praveen, I was right ... check out this link. http://blog.flexcommunity.net/?p=46 The author has used scaling as a workaround for this issue. On May 9, 2:48 pm, praveen Kumar wrote: > Hi  Kronos; > > Thanks For Interest on it; > > Actually Client Uses Big Card

[flex_india:33724] Re: Hai

2011-05-12 Thread Kronos
Hi, To learn flex refer the link provided by Vivian Richard To learn about Flex-Mojo goto their home page http://flexmojos.sonatype.org/ On May 11, 8:41 pm, "B.Praveen" wrote: > Hai Friends Am New To Flex ; How to use this flex-mojo build; > > Can Any One Guide Me  or Some Sample Example on thi

[flex_india:33747] Re: Crop underlying image in a circle which can move over it

2011-05-15 Thread Kronos
Hi Pritesh, You can add a sprite on top of ur canvas and draw whatever u want on it. I have used this technique to highlight certain parts of the image but I have never tried to crop an image. I think if u draw a circle on the new sprite on top of the image and blank out everything outside of the

[flex_india:33751] Re: HOw to change behaviour of CheckBox List

2011-05-16 Thread Kronos
Hi Malek, I cant think of a straight forward way to do it because the component designed by Adobe itself has that feature. You will have to create your own custom component to mimic the working of the checkbox. Use a label & a small rectangle which when clicked will display the tick. You can even

[flex_india:33754] Re: HOw to change behaviour of CheckBox List

2011-05-16 Thread Kronos
Nice one ... I dint think of leaving the label blank for the checkbox ... good thinking Santosh. On May 17, 9:45 am, Santosh wrote: > Hi malek, > > Its straight forward doesn't require munch effort.create a custom > component > > > > > leave the label field of chechbox.let me know if u still

[flex_india:33770] Re: Keep sprite objects on page after refresh

2011-05-17 Thread Kronos
What do u mean by page refresh ??? If you are reloading the page from the browser then there is nothing that u can do to prevent it. If not, you will have to redraw the polygons every time the page is refreshed. You could move the code to the creationComplete of the page (unless the code is user e

[flex_india:33772] Re: Need to add close button to tabbar components?

2011-05-18 Thread Kronos
Check this out http://www.flexibleexperiments.com/Flex/ExtendedTabNavigator/Sample.html Its the sample of an extended TabNavigator with way more features including the one that u want. The view source is enabled so use that to have a look at the code. On May 18, 8:58 am, Navin wrote: > Need to a

[flex_india:33794] Re: Keep sprite objects on page after refresh

2011-05-19 Thread Kronos
bunch of shapes. > > Also if there is any other approach such as Sessions please do > suggest. > > Thanks. > > Abhilash > > On May 18, 11:46 am, Kronos wrote: > > > > > > > > > What do u mean by page refresh ??? > > If you are reloading

[flex_india:33822] Launching a batch file from Adobe AIR 2.0

2011-05-24 Thread Kronos
Hi, I have been trying to launch a batch file from my Adobe AIR application. I have followed the code sample provided in this link http://forums.adobe.com/thread/662058?decorator=print&displayFullThread=true However my code does not invoke the batch file while the author of the post claims his doe

[flex_india:33837] Re: Need to create an image with name...

2011-05-24 Thread Kronos
Hi Navin, Check out http://www.switchonthecode.com/tutorials/simple-flex-drag-and-drop for code on dragging the image from one panel to another. After that in ur drawing area, add a sprite on top of the existing container (can be anything that has been derived from UIComponent). Consider Vgroup

[flex_india:33838] Re: Exporting the contents of a canvas to a image file

2011-05-25 Thread Kronos
Hi Akshar, Have a look at http://www.mehtanirav.com/2007/09/10/taking-a-snapshot-of-flex-app-from-flex/ But this does require some server side coding & using a third party library. See if u can find a work around for it. On May 25, 10:51 am, Akshar wrote: >  I have a canvas which is showing som

[flex_india:33839] Re: Exporting the contents of a canvas to a image file

2011-05-25 Thread Kronos
On second thoughts, Check this http://www.jamesward.com/2006/08/16/flex-paint-flex-display-object-to-png/ the author has avoided the server part. On May 25, 10:51 am, Akshar wrote: >  I have a canvas which is showing some graphical information to user. I want > to add an export to image functi

[flex_india:33864] Re: flex_forum

2011-05-26 Thread Kronos
Hi Prakhar, Its obvious that if u r expecting large amounts of data for your forum then database is the right choice. If not then go for the xml approach. (It takes a lot longer to parse a large xml) On May 26, 1:56 am, Prakhar wrote: > hello all of u , > I like to make a forum using flex > at on

[flex_india:33892] Re: Generating .SWF at runtime

2011-05-30 Thread Kronos
Hi Prasad, If its acceptable, why not just take a snapshot of the chart created on the webpage and embed that image into PowerPoint ??? It is way simpler than what u want to do. On May 30, 5:59 pm, Pranav Negandhi wrote: > Generating .swf files at runtime sounds like a terrible security nightmar

[flex_india:33893] Re: How can we make image as a link in Flex

2011-05-30 Thread Kronos
Hi Madhavi, What Vikas said is right ... Check this link for the code http://www.mattlefevre.com/viewExample.php?tut=flex&proj=Image%20Hyperlink On May 31, 10:34 am, Vikas Madan wrote: > Why not use image and set useHandCursor, buttonMode, mouseChildren > properties. The image will now act like a

[flex_india:33928] Re: Flex type conversion with third party tool issue

2011-06-03 Thread Kronos
Hi Abhilash, Still stuck on the same thing ??? Post some code snippet so that we can understand what u've done. What is the error that u are getting ??? P.S Next time continue the previous thread rather than creating a new one. On Jun 2, 5:29 pm, Flex based developments wrote: > I am using too

[flex_india:33930] Re: How to save and retrieve xml into/from database?

2011-06-03 Thread Kronos
What kind of database are u planning to use ??? Basically whichever database u use , u will need a middle server side layer to interact with the database since u cant interact with a database directly through flex. Generally people use .Net or LCDS (java) to interact with the database. Its a very

[flex_india:33961] Re: Ant build script for Flex library project

2011-06-08 Thread Kronos
You must have forgotten to add some code in your ant build.xml Use a software SourceMate for auto generation of the ant build script directly from ur Flash Builder IDE. Its a licensed software but the trial version does the job nicely. Thats what i used. On Jun 8, 3:50 pm, chandra sekhar wrote: >

[flex_india:33981] Re: Migrating from Flex3 to Flex4

2011-06-12 Thread Kronos
Hi, Please check http://www.learnosity.com/techblog/index.cfm/2010/3/21/Flex-3-to-Flex-4-Migration-Howto Also search the previous posts before creating a new thread ... some one almost always has asked the same question before. On Jun 13, 10:28 am, S k R p wrote: > Hi All , > >    We have a Proj

[flex_india:34000] Re: How to build component : Text Input with the Container attached to it?

2011-06-15 Thread Kronos
Hi Ashok, Cant see the exact requirement u want but from ur description it looks simple enough. All u need to do is create a textInput and a panel/canvas/form below it. Just hide the panel on load of the application After the user focuses on the textInput u can show the panel. Use the mouseOver pr

[flex_india:34148] Re: Automatically down load air installer if not available

2011-07-08 Thread Kronos
Hi, I dont think there is any way to automatically download the Adobe Air installation if it is not installed mainly becoz no one has found a way to check if the air installation has been done or not. One thing u can do is that u can bundle the air installation setup with ur application setup. Then