Re: [flexcoders] Re: FTP question

2008-08-21 Thread Maximilian Nyman
It's true that you can't just read the file system of the client But that doesn't mean that you can't build a FTP client. You should still be able to use FileReference and binary sockets to create an upload only FTP client. /Max On Thu, Aug 21, 2008 at 5:41 PM, andrew_young.rm <[EMAIL PROTECTED]

Re: [flexcoders] URL of the loaded swf.

2007-12-04 Thread Maximilian Nyman
Application.application.url On 12/5/07, ivansebastiansurya <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > I'm just wondering if anyone knows how to detect the url from which > our swf application is loaded from inside the Flex code. I need to do > this as I need to refer to some other script (co

Re: [flexcoders] Binding Array as Data Provider for Combobox.

2007-11-05 Thread Maximilian Nyman
Generally Arrays for which the data is changing should not be used for binding since Flex will NOT be able to determine when Array data has changed. Now, for your issue there are two different solutions: 1. Use an ArrayCollection instead of an Array for you "ta" Array variable 2. Have a temporary

Re: [flexcoders] Text truncateToFit

2007-10-24 Thread Maximilian Nyman
truncateToFit has no effect on Text. If you want that behavior, you either need to implement it yourself, or find someone that already has. >From http://livedocs.adobe.com/flex/201/langref/mx/controls/Text.html - unlike Label, Text does not truncate its text with "..." /Max On 10/24/07, kramus

Re: [flexcoders] Flex 3 cost

2007-10-23 Thread Maximilian Nyman
http://blog.digitalbackcountry.com/?p=1110 On 10/24/07, George Lu <[EMAIL PROTECTED]> wrote: > > > Hi, > > Has anyone got an idea how much the Flex 3 will be cost? This is for > budgeting purpose. > > Thanks, > George

Re: [flexcoders] not able to load svg format images?

2007-09-15 Thread Maximilian Nyman
You can't load SVG images at runtime, you need to embed them. http://livedocs.adobe.com/flex/201/langref/mx/controls/Image.html /Max On 9/15/07, arpan srivastava <[EMAIL PROTECTED]> wrote: > > > Hi All, > > I am making an application which will run on server and loads image > files. My app

Re: [flexcoders] Rounded corners

2007-09-14 Thread Maximilian Nyman
Note: If you use cornerRadius you need to have borderStyle="solid". (It could be borderThickness=0, but it has to be existent) /Max On 9/14/07, Sheriff <[EMAIL PROTECTED]> wrote: > > > you can create your own skin and apply it otherwise you can use the > cornerRadius > > > - Original Message

Re: [flexcoders] @ symbol and xml

2007-09-11 Thread Maximilian Nyman
Accesses the attribute(s) of the XML tag. See example: http://livedocs.adobe.com/flex/201/langref/XML.html#includeExamplesSummary On 9/11/07, Mark Ingram <[EMAIL PROTECTED]> wrote: > > > Hi, what does the "@" symbol do when using the xml class? I had the following > columns in a datagrid and w

Re: [flexcoders] Builder 3 and "unable to resolve a class for resourcebundle: charts" - Help needed asap!

2007-09-04 Thread Maximilian Nyman
me what voodoo I have to do in order to register > charts then? =) I put the key in when I installed flex 3, but I'm getting the > "trial" plastered on my charts. It's one of those things that's hard as hell > to google for because of all the warez clogging up the

Re: [flexcoders] Builder 3 and "unable to resolve a class for resourcebundle: charts" - Help needed asap!

2007-09-04 Thread Maximilian Nyman
gt; > OK That's my bad, I was using spotlight to try and find the directories in > question, as I hate trying to navigate inside an application, but there's two > very similar paths inside the Flex app, one under /plugins the other under /. > > Cheers, > -Josh >

Re: [flexcoders] Builder 3 and "unable to resolve a class for resourcebundle: charts" - Help needed asap!

2007-09-04 Thread Maximilian Nyman
Google: unable to resolve a class for resourcebundle: charts - http://www.google.com/search?q=unable+to+resolve+a+class+for+resourcebundle%3A+charts&sourceid=navclient-ff&ie=UTF-8&rlz=1B3GGGL_enAU231AU231 The very first result: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=7

Re: [flexcoders] Re: Set as Default Application: for an AS Class

2007-03-26 Thread Maximilian Nyman
Anthony, This is kind of a workaround-ish way of doing it, but it works ;) 1. Create a new Flex Project [ASTest] 2. Create a new AS File [ASTest.as] and make it extend mx.core.Application 3. Close your newly created Flex Project 4. Open the "//.actionScriptProperties" in some text editor 5. Chan

Re: [flexcoders] number to big for AS

2006-12-06 Thread Maximilian Nyman
int.MAX_VALUE /Max On 12/7/06, Yaison Alcantara <[EMAIL PROTECTED]> wrote: hi coders; I made an app that does a lot of matematical functions and handlers a lot numbers, but there is an error when the app multiplies some int. It have to return the number -2147408896 but it returns 2147408896.