Re: [flexcoders] Listening for CollectionEvent in custom component

2010-08-21 Thread Alexander Farber
Hello Wesley and others, I have prepared a simple test case to demo my problem - I'm trying to create a custom component which is being fed with XML repeatedly coming from server. My problem is that the CollectionEvent listener isn't fired. Games.mxml: ?xml version=1.0 encoding=utf-8? mx:VBox

Re: [flexcoders] Listening for CollectionEvent in custom component

2010-08-21 Thread Alexander Farber
Hello Wesley, On Sun, Aug 22, 2010 at 12:47 AM, Wesley Acheson wesley.ache...@gmail.com wrote: This means that your listening to a change in a subsequently unbound collection. oh ok thanks, this makes sense. In that case I probably don't need any events at all, because I read the XML data

Re: [flexcoders] does Flex 5 upgrade? or downgrade in practice? REFdn7076142784

2010-08-19 Thread Alexander Farber
So you think Flex is complex, but then you want it to become multithreaded?

[flexcoders] Listening for CollectionEvent in custom component

2010-08-18 Thread Alexander
Hello, I have 2 problems with my custom component (code below), which works ok otherwise. It represents a list of games, with up to 3 players. I feed it with XML data being pulled from server: game id=42 user . user . user . /game game id=47 user . /game game id=56

[flexcoders] Re: Push verse Poll in Flash Player

2010-08-17 Thread Alexander
, dorkie dork from dorktown dorkiedorkfromdorkt...@... wrote: good idea :) that'll work On Mon, Aug 16, 2010 at 2:42 AM, Alexander Farber alexander.far...@... wrote: An idea: you could open a socket connection (because of corporate proxies best would be the port 80) and try

[flexcoders] Re: Detecting List width from its itemRenderer

2010-08-17 Thread Alexander
Hello Alex and others, --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: The renderer should be given an explicitWidth by the time its measure() method gets called. That would be a good time to choose a different size avatar and report a different measuredHeight. my

[flexcoders] Re: Detecting List width from its itemRenderer

2010-08-17 Thread Alexander
Hello again, I thought I've found a solution by using the List's resize event to change the size of its items, but while it works for the simple test case listed below, it goes into endless loop in my real app with more complex layout and I see the traces: resize list: 0 - 480 resize list:

[flexcoders] Push verse Poll in Flash Player

2010-08-16 Thread Alexander Farber
An idea: you could open a socket connection (because of corporate proxies best would be the port 80) and try to read an integer: private function handleTcpData(event:Event):void { while(_socket.bytesAvailable) { try{ var i:int = _socket.readInt(); fetchHttpData(i); }catch(e:Error){

[flexcoders] List and TileList with same renderer but diff. item sizes

2010-08-14 Thread Alexander
Hello, I'm trying to use List to represent rooms with up to 3 people and a TileList to represent people in the lobby. It works ok, but I wonder how to make the items in the TileList smaller? Ist there a simple way or do I have to introduce a wrapper renderer inbetween? Thank you Alex

[flexcoders] Detecting List width from its itemRenderer

2010-08-14 Thread Alexander
Hello, I have an itemRenderer for a List displaying avatars for users in chat rooms - up to 3 of them. It works ok (code below), but since the List itself is inside of a HDividedBox and its width can be changed, I would like to detect this event and let my itemRenderer to display bigger avatars

[flexcoders] Re: List and TileList with same renderer but diff. item sizes

2010-08-14 Thread Alexander
Thank you, but - --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: What happened when you set columnWidth and rowHeight on the TileLIst? On 8/14/10 7:42 AM, Alexander alexander.far...@... wrote: It works ok, but I wonder how to make the items in the TileList smaller? Ist

[flexcoders] Re: Accessing repeating components through ActionScript

2010-08-12 Thread Alexander
Thanks Oleg, that's a good workaround and - --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: mx:Array id=labels/ mx:Repeater id=rp dataProvider={[0, 1, 2, 3]} mx:Label mx:creationComplete var event:Event = arguments[0] as Event;

[flexcoders] Accessing repeating components through ActionScript

2010-08-10 Thread Alexander
Hello, I'd like to have several labels in alternating colors, and set their text's from XML-data coming from a server. Unfortunately this won't compile: mx:Label id=_leftTxt[0] color=0x00/ mx:Label id=_leftTxt[1] color=0x00/ mx:Label id=_leftTxt[2] color=0x00/ mx:Label

[flexcoders] Setting alignment of a LinkBar

2010-08-09 Thread Alexander
Hello, I have a very newbish question, but just can't find the right attribute in the docs - in a set of 2 LinkBar's, how do you change their alignment? Why do I have the first LinkBar centered, but the 2nd - left-aligned? I tried diff. attributes, like horizontalAlignment etc. Below is my

[flexcoders] Creating blinking glow effect

2010-08-09 Thread Alexander
Hello, does anybody please have an advice on creating a repeatedly blinking Glow effect on a button. Exactly like the example at the Adobe page http://livedocs.adobe.com/flex/3/langref/mx/effects/Glow.html but it should run repeatedly - to draw the user's attention to a particular button. I

[flexcoders] Re: Setting alignment of a LinkBar

2010-08-09 Thread Alexander
horizontalAlign=center width=100% - I was missing the width

[flexcoders] Re: PopUpButton with TileList and custom renderer works, but 2 annoyances

2010-07-27 Thread Alexander
Thanks, I don't have warning anymore after I've changed the code. The horizontal scrolling issue seems to be a Flex 3 bug: when I change the width and height, so that there is only a vertical scrollbar - then everything starts to work ok. = MyRenderer.mxml: ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: PopUpButton with TileList and custom renderer works, but 2 annoyances

2010-07-26 Thread Alexander Farber
Hello again, On Sat, Jul 24, 2010 at 5:39 PM, Alexander Farber alexander.far...@gmail.com wrote: 1) For some reason I get numerous warnings: warning: unable to bind to property 'label' on class 'Object' (class is not an IEventDispatcher) 2) The TileList tl2 has a scrolling issue. I've

[flexcoders] PopUpButton with TileList and custom renderer works, but 2 annoyances

2010-07-25 Thread Alexander Farber
Hello, I'm trying to use a PopUpButton with a red/black colored TileList and it does work, but has 2 minor issues, that I can't figure out. I've prepared a simple test case listed at the bottom, please review it. 1) For some reason I get numerous warnings: warning: unable to bind to property

[flexcoders] Re: Changing color of the PopUpButton

2010-07-23 Thread Alexander Farber
Oh sorry - I was missing: pub.setStyle('color', 0xFF);

[flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-22 Thread Alexander Farber
Thank you, but now I get the runtime error: TypeError: Error #1034: Type Coercion failed: cannot convert rende...@4c310a1 to mx.controls.menuClasses.IMenuItemRenderer. at

[flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-22 Thread Alexander Farber
I've tried another code and still get the error when I click the menu: TypeError: Error #1034: Type Coercion failed: cannot convert myrende...@47410a1 to mx.controls.menuClasses.IMenuItemRenderer. at

[flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-22 Thread Alexander Farber
Now it works (not sure if dispathEvent needed though and why): ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; verticalScrollPolicy=off horizontalScrollPolicy=off implements=mx.controls.menuClasses.IMenuItemRenderer width=100% height=100% mx:Script

[flexcoders] Changing color of the PopUpButton

2010-07-22 Thread Alexander Farber
Hello, I have a working code for displaying red and black entries in the list of a PopUpButton (depending on the card suit). However I'm missing the minor last touch: when the user selects a red entry in the list and I assign its value to the PopUpButton's label, I don't know how to change

[flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-21 Thread Alexander Farber
Hello, I'm trying this code, but get the error about bad casting in Test.mxml: Implicit coercion of a value of type Class to an unrelated type mx.core:IFactory. My Renderer.mxml: ?xml version=1.0 encoding=utf-8? mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Text

[flexcoders] 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-20 Thread Alexander
Hello, I'm trying to port a bigger project from Flash CS4 to Flex 3 and have a problem that the PopUpButton, that is located at the right bottom of my app, opens downwards when I click it and thus is being cut off. Only if I resize the browser, it will open upwards as actually wanted by me. I've

[flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-20 Thread Alexander
Sorry for the double post. Also the mangled Unicode string below is the 4 card suit characters. --- In flexcoders@yahoogroups.com, Alexander alexander.far...@... wrote: bids.unshift({label: i+♠♣♦♥.charAt(j%4)});

[flexcoders] 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-19 Thread Alexander Farber
Hello, I'm trying to port a bigger project from Flash CS4 to Flex 3 and have a problem that the PopUpButton, that is located at the right bottom of my app, opens downwards when I click it and thus is being cut off. Only if I resize the browser, it will open upwards as actually wanted by me. I've

[flexcoders] Re: Flex3: attaching assets from .swf using getDefinitionByName

2010-03-27 Thread Alexander
I'd like to share the solution for my problem for the archives: TestCase.mxml: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=onCreationComplete(); mx:Script ![CDATA[ private function

[flexcoders] Re: Flex3: attaching assets from .swf using getDefinitionByName

2010-03-25 Thread Alexander
I've prepared a much simpler test case and it is still not working - i.e. the icons at the buttons and the drawn circle do work fine, but I can't attach an .swf symbol, it is reported as null (but works ok for button??) - ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Flex3: attaching assets from .swf using getDefinitionByName

2010-03-24 Thread Alexander
Hello, I'm new to this list and also Flex. I'm stuck with a probably simple problem, which I'd like to demonstrate with a short test case: Test.mxml: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

Re: [flexcoders] Flex3: attaching assets from .swf using getDefinitionByName

2010-03-24 Thread Alexander Farber
Hello, On Wed, Mar 24, 2010 at 11:23 PM, Oleg Sivokon olegsivo...@gmail.comwrote: 1. You cannot embed on constants. 2. It is always better to embed on a class then on a variable (you won't be using mx.core.WhateverAsset for the asset factory, but a normal flash.* class. 1) Are you sure?

Re: [flexcoders] Re: Caringorm vs PureMVC

2010-01-11 Thread Julian Alexander
Honestly, nobody can really answer the question of which one is better, as they all are built to server a purpose. As you are going to have to live and breathe whichever framework you choose, you really should research them yourself and try it out, then you'll know which one you prefer and

Re: [flexcoders] Network Topology Diagrams

2009-12-29 Thread Julian Alexander
Check out KapLabs diagrammer - that I think would be your best bet. -Julian From: vin.flex vin.f...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tue, December 29, 2009 12:59:09 PM Subject: [flexcoders] Network Topology Diagrams Hi, I got a requiremnt

Re: [flexcoders] IE6 + SSL + Flex

2009-12-28 Thread Julian Alexander
Dear Venkat, Thanks for the direction, but unfortunately that just made it worse. Any other ideas? -Julian From: venkateswarlu naidu contactve...@yahoo.co.in To: flexcoders@yahoogroups.com Sent: Sat, December 26, 2009 10:43:39 PM Subject: Re: [flexcoders]

Re: [flexcoders] IE6 + SSL + Flex

2009-12-28 Thread Julian Alexander
soon see many of these sorts of problems go away and we could concentrate instead on actually developing content. Guy On 29/12/2009, at 2:37 AM, Julian Alexander wrote: Dear Venkat, Thanks for the direction, but unfortunately that just made it worse. Any other ideas? -Julian

Re: [flexcoders] array count?

2009-12-11 Thread Julian Alexander
myArray.length -J From: tex_learning_flex tex.learning.f...@gmail.com To: flexcoders@yahoogroups.com Sent: Fri, December 11, 2009 9:46:17 PM Subject: [flexcoders] array count? how do I best count items in an array? thanks, Tex

Re: [flexcoders] MAC : TextInput focus

2009-11-24 Thread Julian Alexander
I ran into this same issue but with every browser - however it may be different for you. Either way, the handling is simple: First, the problem is that the SWF file within the browser doesn't have the focus. Within the app your text field has focus, but you'll notice that you won't get any

Re: [flexcoders] byteStream to .txt file

2009-11-24 Thread Julian Alexander
Check out the FileReference class. It has a download() method that can be passed a URLRequest. -Julian From: Matthew fume...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tue, November 24, 2009 9:30:14 AM Subject: [flexcoders] byteStream to .txt file

Re: [flexcoders] Re: byteStream to .txt file

2009-11-24 Thread Julian Alexander
...@yahoogro ups.com, Julian Alexander wb...@... wrote: Check out the FileReference class. It has a download() method that can be passed a URLRequest. -Julian _ _ __ From: Matthew fume...@... To: flexcod...@yahoogro ups.com Sent: Tue, November 24

Re: [flexcoders] Re: byteStream to .txt file

2009-11-24 Thread Julian Alexander
if it could work with an FTP server. I'm guessing from your response that the answer is no, it wouldn't work. --- In flexcod...@yahoogro ups.com, Julian Alexander wb...@... wrote: How are you even getting the byte stream if it's over FTP? _ _ __ From

Re: [flexcoders] MAC : TextInput focus

2009-11-24 Thread Julian Alexander
The other thing is callLater(). I've found also that in some cases the focus only gets partially set when other things are still being initialized. Try calling callLater(myComp.setFocus); after creationComplete. -J From: suman gayakwad srgayak...@gmail.com

Re: [flexcoders] MAC : TextInput focus

2009-11-23 Thread Julian Alexander
Does the screen look like it has focus but when you type it doesn't actually go there? From: Suman srgayak...@gmail.com To: flexcoders@yahoogroups.com Sent: Mon, November 23, 2009 11:37:49 AM Subject: [flexcoders] MAC : TextInput focus Hi, In our

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
for the help Dan --- On Fri, 11/20/09, Julian Alexander wb...@ymail. com wrote: From: Julian Alexander wb...@ymail. com Subject: Re: [flexcoders] Syntax Question To: flexcod...@yahoogro ups.com Date: Friday, November 20, 2009, 10:53 PM You can't access the value from the column

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
objects. var squat:XMLList = squaresGrid. selectedItem. NameCol; will trace as an XML List but I can not seem to get the list to then recast as an XMLListCollection so I can get at it. Thanks Dan --- On Sat, 11/21/09, Julian Alexander wb...@ymail. com wrote: From: Julian Alexander wb...@ymail

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
. --- On Sat, 11/21/09, Julian Alexander wb...@ymail. com wrote: From: Julian Alexander wb...@ymail. com Subject: Re: [flexcoders] Syntax Question To: flexcod...@yahoogro ups.com Date: Saturday, November 21, 2009, 2:08 PM Why the heck do you need to re-cast as an XMLListCollection

Re: [flexcoders] Extremely large HTTP Requests

2009-11-21 Thread Julian Alexander
Tino - thanks. There is a threshold on tomcat that limits the size. I basically got rid of this and it was fine :) -Julian From: Tino Dai obe...@gmail.com To: flexcoders@yahoogroups.com Sent: Sat, November 21, 2009 2:25:33 PM Subject: Re: [flexcoders]

Re: [flexcoders] Syntax Question

2009-11-21 Thread Julian Alexander
since. I would truely like to know why nothing anybody has suggested has worked tho. It really bugs me. Dan --- On Sat, 11/21/09, Julian Alexander wb...@ymail. com wrote: From: Julian Alexander wb...@ymail. com Subject: Re: [flexcoders] Syntax Question To: flexcod...@yahoogro ups.com Date

Re: [flexcoders] Combo box right-anchor

2009-11-20 Thread Julian Alexander
” and/or “move” and reposition then. You may also have to adjust the scrollRect. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs. adobe.com/ aharui From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Julian Alexander Sent: Wednesday, November 18

Re: [flexcoders] Syntax Question

2009-11-20 Thread Julian Alexander
You can't access the value from the column name - getting the selected value will give you the entire row that the datagrid is displaying from which you can get the value you're looking for. In other words, if you have an XMLList as your dataProvider, you can do something like: var

Re: [flexcoders] measureHeightOfItems()

2009-11-18 Thread Julian Alexander
I ended up just hardcoding the heights of the renderers and now it's fine :) Thanks though! From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Mon, November 16, 2009 5:52:10 PM Subject: RE: [flexcoders]

Re: [flexcoders] Combo box right-anchor

2009-11-18 Thread Julian Alexander
That's kinda what I'm trying to do - I've already got it solved where it sets the drop down width dynamically based on the content of the lookup, however the combo box is on the right side of the screen and the drop down gets cut off by the right side of the screen, thus I'm trying to anchor it

Re: [flexcoders] Position elements with different font size against baseline in HBox

2009-09-06 Thread Alexander Tarelkin
alignment perfect automatically, and you do always have to spend much effort to get over this. mx:HBox mx:Label height=100% text=LABEL1 fontSize=10 paddingTop = 2/ mx:Label height=100% text=LABEL2 fontSize=12 paddingTop = 0/ /mx:HBox - Original Message - *From:* Alexander Tarelkin

Re: [flexcoders] LineSeries in LineChart

2009-09-06 Thread Alexander Tarelkin
Types inherited from Series including LineSeries have a filterData property. Hopefully this is all you need. On Sat, Sep 5, 2009 at 10:56 PM, ram ramesh ram_y...@yahoo.co.in wrote: Hi How to block/restrict undefined value or null value in Lineseries before plotted into Chart. I tried

Re: [flexcoders] LineSeries in LineChart

2009-09-06 Thread Alexander Tarelkin
I am sorry/ I missed that you have already tried this. Why don't you want to wrap the collection with an ArrayCollection if it works? On Sun, Sep 6, 2009 at 8:39 PM, Alexander Tarelkin alexander.tarel...@gmail.com wrote: Types inherited from Series including LineSeries have a filterData

[flexcoders] Position elements with different font size against baseline in HBox

2009-09-04 Thread Alexander Tarelkin
does not work, since HBox abolishes absolute positioning. Thank you, Alexander Tarelkin

Re: [flexcoders] Flex Compilation takes long time

2009-07-29 Thread Alexander Tarelkin
. Mayur -- Alexander Tarelkin Web Developer devexperts.com

Re: [flexcoders] Flex Compilation takes long time

2009-07-29 Thread Alexander Tarelkin
-- Alexander Tarelkin Web Developer devexperts.com

Re: [flexcoders] variables name are in array

2009-07-29 Thread Alexander Tarelkin
++) { arrName[i] = arrValue[i]; } Thanks a lot. Mark -- Alexander Tarelkin Web Developer devexperts.com

Re: [flexcoders] FlexBuilder / eclipse Question

2009-07-23 Thread Alexander Tarelkin
Ctrl+F8 jumps between perspectives, and by default will return to the previous one. On Fri, Jul 17, 2009 at 7:21 PM, Libby libbychan...@yahoo.com wrote: Hi FlexBuilders! I was wondering if there is an option or way to automatically return to the development perspective when you shut down

[flexcoders] Sharing DataTransform between series

2009-06-30 Thread Alexander Tarelkin
Hello, I am working on an application that displays several series on the same chart. The series display similar data so they actualy share vertical and horizontal axes. I noticed that series.describeData method is invoked twice for each dimension on any underlying data update. It turnes out

[flexcoders] Good Flex skins

2009-04-24 Thread Alexander Livitz
Hello, I am searching for a great looking Flex skins/themes. Something similar in quality to FlashMint (http://www.flashmint.com). Most of the Flex skins I've seen so far look extremely amateurish, including ScaleNine. Can you point me to a high-quality Flex skins library? Does it even exist?

[flexcoders] Memory Leak and SuperImage

2008-11-04 Thread Alexander Baetz
://www.quietlyscheming.com/blog/2007/01/23/some-thoughts-on-doubt-on-flex-as-the-best-option-orhow-i-made-my-flex-images-stop-dancing/ ) i'm changing this images for mouseover effects and stuff but use allways the same. I hope anybody has an idea what could go wrong. Greetings, Alexander

Re: [flexcoders] Memory Leak and SuperImage

2008-11-04 Thread Alexander Baetz
. Greetings, Alexander CODE: var pt:Point = new Point(event.currentTarget.x, event.currentTarget.y); pt = event.currentTarget.localToGlobal(pt); var curX:Number = pt.x; var curY:Number = pt.y + event.currentTarget.height; tip = new SkillTooltip(); tip.Skill = mySkill

Re: [flexcoders] Dynamicaly loading of images

2008-10-31 Thread Alexander Baetz
Hi, i use the SuperImage component now. Works fine. Thanks to all, Alexander Alexander Baetz schrieb: Hi, for a special tool i want to display buttons with icons that where loaded at runtime (based on an xml document loaded at runtime) in adobe livedocs i read that i cant load icons

[flexcoders] Dynamicaly loading of images

2008-10-30 Thread Alexander Baetz
. So im looking either for a way to store the imagedata and supply it to my Button when necessary. Greetings, Alexander -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Alternative FAQ location: https

[flexcoders] How to Embed an Application that Supports Deep-Linking?

2008-10-29 Thread Alexander Baetz
another domain and make deeplinking still work? I hope somebody out there can help me. Greetings, Alexander script language=JavaScript type=text/javascript !-- // Version check for the Flash Player that has the ability to start Player Product Install (6.0r65) var hasProductInstall

[flexcoders] Event result listener problem

2008-05-14 Thread Alexander Tsoukias
result to the correct popup? Thanks, Alexander

[flexcoders] Variables get overwritten issue...

2008-05-09 Thread Alexander Tsoukias
i have a set of components that comprise the user data section that user data section is used in the main app. but in one place, i use it as a popup the problem is, that any changes i make from the popup to user B, the variables are updated both on popup and main app users data section. So if I

[flexcoders] Re: Variables get overwritten issue...

2008-05-09 Thread Alexander Tsoukias
But it is the same file.mxml Thanks, Alex --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Use separate data models. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Tsoukias Sent

[flexcoders] Total subscribers on LCDS rtmp messaging

2008-04-02 Thread Alexander Tsoukias
Is it possible to get a total count of subscribers on a specific destination/topic/subtopic when using LCDS RTMP messaging? Thanks, Alexander

[flexcoders] External swf as menu in Flex App

2008-04-01 Thread Alexander Tsoukias
What is the best way to have such a menu in a flex app. http://www.reflektions.com/miniml/template_permalink.asp?id=356 Should i build it in FLEX or use this swf which is no more than 60kb? If I should/can use the swf, are there ways to communicate with it from flex? Thanks, Alexander

[flexcoders] Multiple destinations LCDS from one app

2008-04-01 Thread Alexander Tsoukias
clarification here. thanks Alexander

[flexcoders] Re: How to configure LCDS 2.5.1 to make use of Flex 3.0 SDK libraries?

2008-04-01 Thread Alexander Tsoukias
I am also wondering the same now that u mentioned it. Alexander --- In flexcoders@yahoogroups.com, msankar_igst [EMAIL PROTECTED] wrote: Hi, I deployed LCDS 2.5.1 version which uses Flex 2.0 by default. Now i want to use Flex 3.0 with this LCDS. How to configure it? I tried

[flexcoders] Re: flashvars hate me

2008-04-01 Thread Alexander Tsoukias
I've had similar issues but this post had helped me a lot: http://thanksmister.com/?p=27 thanks Alexander --- In flexcoders@yahoogroups.com, dfalling [EMAIL PROTECTED] wrote: I can't get flashvars to work... It seems pretty basic, but no mater what I do they don't seem to show up in flex

[flexcoders] Equivalent of FMS server side object in LC Data services

2008-03-31 Thread Alexander Tsoukias
? Currently i use Data Services which stored the data in a database. In FMS i guess it just keeps it in memory. Any idea? Thanks, Alexander

[flexcoders] Remoting using RTMP protocol

2008-03-31 Thread Alexander Tsoukias
? If not, can this be at all done? Thanks, Alexander

[flexcoders] Re: Remoting using RTMP protocol

2008-03-31 Thread Alexander Tsoukias
://tech.groups.yahoo.com/group/flexcoders/message/108292 Thanks so much, Alexander --- In flexcoders@yahoogroups.com, Anatole Tartakovsky [EMAIL PROTECTED] wrote: The real question is - does it move you in the right direction. Architecturally, (long) RemoteObject call is a one-way-at-a-time road

[flexcoders] itemRenderer on TileList question

2008-03-30 Thread Alexander Tsoukias
on the TileList as a new row. So I guess my question is, how can i EVERYTIME call a function in my itemRenderer component? thanks, Alexander

[flexcoders] Re: itemRenderer on TileList question

2008-03-30 Thread Alexander Tsoukias
Thank you so much for this info, can you possibly give me a code example scenario? thanks alexander --- In flexcoders@yahoogroups.com, Scott Melby [EMAIL PROTECTED] wrote: Alexander - Flex recycles itemRenderers, so it does not create 1 per item in your data provider. Instead it creates

[flexcoders] Re: itemRenderer on TileList question

2008-03-30 Thread Alexander Tsoukias
, then right click on the app to view source. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Alexander Tsoukias wrote: Thank you so much for this info, can you possibly give me a code example scenario? thanks alexander

[flexcoders] Error: Unknown Property: 'constructor'. when using LCDS

2008-03-29 Thread Alexander Tsoukias
The fill method works great using RTMP and it fills a datagrid. When i make the datagrid editable and change a value, It returns this error: Error: Unknown Property: 'constructor'. The backend is connected with coldfusion CFCs. Again the fill method works great. Thanks, Alexander

[flexcoders] Coldfusion changes not applied when using LCDS

2008-03-29 Thread Alexander Tsoukias
reboot the CF server the changes apply. thanks, Alexander

[flexcoders] Flex Data Services (of LiveCycle Data Services)

2008-03-27 Thread Alexander Tsoukias
was using Flash Media Server, I would create server side shared objects). Thanks, Alexander

[flexcoders] Re: Flex Data Services (of LiveCycle Data Services)

2008-03-27 Thread Alexander Tsoukias
be done using server side Shared Objects? Thanks Alexander --- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL PROTECTED] wrote: Take a look at the subtopics feature of the Consumer or the MultiTopicConsumer if you want to receive multiple subscriptions from a single message stream. You'd have

[flexcoders] Disable screen interaction while cursor in busy mode

2008-02-12 Thread Alexander Tsoukias
I would like each time i made a SOAP call and set the Cursor to busy for the screen to get disabled while cursor in busy mode. Any ideas?

[flexcoders] Re: Disable screen interaction while cursor in busy mode

2008-02-12 Thread Alexander Tsoukias
thats exactly what i was looking for. Did not know such thing existed. thanks for pointing out!!! Alex --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: why not just do enabled=false on the Application itself - Original Message From: Alexander

[flexcoders] Re: Picnik photo functions/features RD

2008-01-30 Thread Alexander Tsoukias
Thanks for the input. Would anyone else have any idea on how to accomplish this? So many great minds in here common! thanks alex --- In flexcoders@yahoogroups.com, Jon Bradley [EMAIL PROTECTED] wrote: On Jan 29, 2008, at 10:27 PM, Alexander Tsoukias wrote: Given the nature of picnik, i

[flexcoders] Re: Picnik photo functions/features R

2008-01-30 Thread Alexander Tsoukias
Troy, your response has been the most reasonable, their preview is instant, and if there were sending it back to server and bring it back again so fast they would be the next bill gates. If you get a bitmap as a byte array you can scan through it and apply all sorts of traditional per-pixel

[flexcoders] Losing validation red border on custom skinning

2008-01-30 Thread Alexander Tsoukias
I have skinned my components using custom skinning and now when they go through validation and fail (INVALID) the red border does not appear around the textinput/combobox. any ideas?

[flexcoders] Picnik photo functions/features RD

2008-01-29 Thread Alexander Tsoukias
Hi all, Picnik.com has all these photo effects and I was wondering how are they doing it. Is it built in actionscript as functions? Are they using third party components? Any input is greatly appreciated. PS. Anyone looking to work on this please contact me. Thank you, Alex

[flexcoders] Re: Picnik photo functions/features RD

2008-01-29 Thread Alexander Tsoukias
, Alexander Tsoukias wrote: Hi all, Picnik.com has all these photo effects and I was wondering how are they doing it. Is it built in actionscript as functions? Are they using third party components? Any input is greatly appreciated. PS. Anyone looking to work on this please

RE: [flexcoders] How can google index a Flex / SWF site ?

2007-02-19 Thread Jonathan Deven \(JD\) Alexander
Received. Shall review and reply tonight. Jon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan Meutzner Sent: Monday, February 19, 2007 2:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How can google index a Flex / SWF site ? A bit of

[flexcoders] Re: Module Loader progress bar

2007-02-02 Thread Alexander Tsoukias
Is there a way I could have an example of how this module trick loads another swf file at runtime? {a} --- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] wrote: Yes, the module loading code dispatches loading events, so you can create a component that displays very similar to

[flexcoders] addChild(myFriend) on the fly - possible?

2007-01-31 Thread Alexander Tsoukias
would appreciate any help. Thanks, Alexander

[flexcoders] Is this possible - SVG to PDF(vector) ?

2007-01-31 Thread Alexander Tsoukias
Hi all... How is it possible to take a canvas from FLEX and convert it to vector PDF? Is taking SVG and converting to a PDF a way? Does coldfusion have any way of doing this? Thanks, Alexander

[flexcoders] Re: Is this possible - SVG to PDF(vector) ?

2007-01-31 Thread Alexander Tsoukias
successfully opened in vector format inside Illustrator) by using Print to File with specific print drivers... it's not exactly seamless, but it worked. I can track down the specific print drivers if that would help... Brendan On 1/31/07, Alexander Tsoukias [EMAIL PROTECTED] wrote: Hi all

[flexcoders] Viewstack Navigation Reference problem

2007-01-29 Thread Alexander Tsoukias
to this functionality from within the Step1.mxml file which is in the folder Steps? It doesnt seem to work when i use the same as the button in the main application. Thanks, Alexander

[flexcoders] Loader component instead of busy icon

2007-01-29 Thread Alexander Tsoukias
In a tab navigator, I want as I change through tabs to have a Loader component that loops indefinetly until the results are back from a remote object call instead of that busy icon thing. How would i go about doing this? Thanks, Alexander

[flexcoders] FDS Application takes a while to load

2007-01-18 Thread Alexander Tsoukias
be happening? Thanks, Alexander

  1   2   >