[flexcoders] Re: Turn off Validators

2006-04-19 Thread Tim Hoff



If you just want to turn off the visual indication, you can clear the errorString property of the control.  Tip:  For custom validation, you can write your own error message to errorString.  This will trigger the red border and error message to appear.
As I understand the Flex framework, you have three states of validation.  You can validate "as-you-go" and/or validate in response to a gesture (like clicking a search button).  I like validating as-you-go when at all possible.  It notifies the user immediately that they need to make a correction before proceeding.  Usually, controls that always need to be validated should be validated as-you-go.  In addition, you can create a "catch-all" function that selectively validates controls before submitting a request to the server.  As a practical matter, you can choose to validate the as-you-go controls in this function as well.  This may be overkill, but I don't like embarrassing the application by asking the server an impossible question.
For controls that may or may not need to be validated, depending on the state of other controls, you should try to organize the validation into functional groups/collections in the catch-all function.   From here, you can manually control the error state of the controls.  I'm sure that there is a possible reason for disabling a validator, but I prefer avoiding this approach.  imho, I think that this creates code that is more difficult to maintain.  Instead, I would move the validation to the catch-all function.  
I'm really not sure if this applies to your particular situation, but I hope that this helps you.
Tim Hoff
--- In flexcoders@yahoogroups.com, "mvbaffa" <[EMAIL PROTECTED]> wrote:>> Hi everybody,> > I need to turn off or disable a validator. > > After an error is detected in the associated field I cannot turnoff > the visual indication or the error message, even if I write "" to the > textinput or set the enabled property of the valdator to false.> > When I first show the screen I make the validator disabled so that > required fields can be blank and it worked. But at moment an error is > detected I can only turnoff the validator if I set the textinput with > a valid value, in this case a number.> > How can I make it work ?> > Thanks in advance>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Repost: Drag from Tree to List

2006-04-19 Thread judah






This was originally posted as "Drag from Tree, drop to List?". 
---
Hi Paul,

Could you check into some possible bugs for me? When I test this code
the drag separator appears to jump around when dragging inside the
tree. For example, drag the "Sent" folder up and down the Tree and
watch the location of the drag separator. 

Also, there seems to be a couple of times that it does not drop into
the correct location. For example, run the project and drag and drop
the "Inbox" node below the "Sent" node. In my tests it is being placed
below the "Trash" node. 

On a design side (feature request), I can see the need to be able to
drop "into" a list row, such as when someone wants to drag and drop a
file into a folder. 

Best Regards,
Judah Frangipane
PS I'm reattaching the code below:


    "http://www.adobe.com/2006/mxml"
xmlns="*" layout="absolute" creationComplete="initApp();">
        
            
                
                
                    
                    
                    
                    
                
                
                
                
            
        
        
                showRoot="false"
                labelField="@label"
                dragEnabled="true" dropEnabled="true"
                allowMultipleSelection="true"
                creationComplete="initApp();"/>
        
            
                
            
        
        
            
        
    



Paul Williams wrote:
 
 
I think you
will need to write event
handlers to allow the list control to accept items from a tree control.
In
addition to the docs, there’s a sample chapter on the labs with some
good
drag-and-drop tutorials:
 
 
 
http://labs.macromedia.com/wiki/index.php/Flex_Framework:tutorials:tfts_drag_drop
 
 
 
See below
for a very simple example based
on your code (flex 2 beta 2).
 
 
 
Paul
 
 
 

 
"http://www.adobe.com/2006/mxml"
xmlns="*"
layout="absolute" creationComplete="initApp();">
 
   
    
 
   

 
   

 
   

 
   

 
   

 
   
   
        
 
   

 
   

 
   

 
   

 
   

 
   

 
   

 

 
  
 
   

 
   
showRoot="false"
 
   
labelField="@label"
 
   
dragEnabled="true"
dropEnabled="true"
 
   
allowMultipleSelection="true"
 
   
creationComplete="initApp();"/> 
 
 
 
   

 
   

 
   

 
   
  

 
   

 
   
        
 
   
    
 
   

 
   

 
   
 
 
    
 

-- 
"Always bear in mind that your own resolution to succeed is more important than any one thing."

"You can have anything you want - if you want it badly enough. You can be anything you want to be, do anything you set out to accomplish if you hold to that desire with singleness of purpose." 

- Abraham Lincoln






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  










Re: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread judah






What I want to know is how do you say it? Is there history behind the
name? 

Judah

Steven Webster wrote:

  Oh man, I write a 6 page article series and still people go on and on
and on about ViewLocators :)  We innovated the ModelLocator pattern in
Cairngorm, and have done our best to communicate the practices around
using the ModelLocator, over ViewLocator (a relic from our Flash RIA
days).

Cairngorm and ARP are both implementations of the same design patterns;
so the approach in terms of breaking down your application's technical
architecture over a microarchitecture will be very similar.  You'll
start thinking in terms of all the same concepts, you'll approach your
application development the same way.  The frameworks are more similar
than different, imho.

We took a very strategic decision with Cairngorm, only to support the
Flex framework; the framework started life in the Flash world, but we
believed that Flex would become the defacto technology for building RIAs
of any complexity that merits a microarchitecture, and so have made
conscious decision not to support back to Flash or any other Flash
platform technologies.  In that way, we can focus on leveraging the Flex
framework without concering ourselves deeply with how this translates to
the non-Flex world.  We do have developers using Cairngorm on Flash
projects - but that's not the expected use-case.

There's a 6-page article series on Cairngorm on Macromedia Devnet,
starting here:

http://www.macromedia.com/devnet/flex/articles/cairngorm_pt1.html

We'll continue to make these articles available to you through devnet,
and through blogs, to enable you to be successful in building more
complex RIAs upon this architecture, and to guide you in how we think
the architecture fits with new features of the Flex framework, be that
States, Internationalisation, Flex Data Services, etc.

If you follow that article series, you'll be ready in a few hours to
start building RIAs today, with Flex 2 and ActionScript 3.0, on
Cairngorm.  As we start to move through the final betas, and into
release of Flex 2.0, a number of us within Adobe Consulting are
absolutely committed and ready to ship the community updated versions of
Cairngorm as required - we're using it on a significant number of our
own Flex 2.0 projects here, and are a step ahead of the public beta
programs that you have access to.

There's a huge number of people on the flexcoders list successfully
using Cairngorm; so once you have more specific questions, I'm sure
we'll be able to help you in your application development.

Good luck !

Best,

Steven

--
Steven Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
p: +44 (0) 131 338 6108
m: +44 (0) 7917 428 947 
[EMAIL PROTECTED] 


  
  
On 4/19/06, JesterXL <[EMAIL PROTECTED]> wrote:


  If you are coming with Flash, stick with ARP.  If you want to learn 
something new, try Cairngorm as it has a VeiwLocator.  Most Flex 
developers utilize Cairngorn, but both know what a Command, 
  

Delegate, 


  ServiceLocator, and ModelLocator is so the lingo is very similiar 
since they have a lot in common.

- Original Message -
From: "arieltools" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, April 19, 2006 9:11 AM
Subject: [flexcoders] Flex framework: ARP, Cairngorm... 
  

Which to use?


  
Arp? Cairngorm? ...?

A little of you light on this matter would be appreciated.

I've been using ARP for a while with Flash projects. I've read that 
migrating would be as easy as change the ArpForms to MXML 
  

forms. So it 


  sound very promising.

By the other hand, I've heard Cairngorm is more wide-spread between 
programmers.

The thing is I think I have to decide now wich to use, as I will be 
programming a new RIA on Flex and would like to ensure it's quality 
from the begginning :)

Thanks!





--
Flexcoders Mailing List
FAQ: 
  

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt


  Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: 
  

http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt


  Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links







  


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 





  
  

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from th

[flexcoders] Re: Can't use RemoteObject on HTTPS ONLY Server?

2006-04-19 Thread Steven Toth



Here are the console messages from the non-secure amf:

[Flex] Channel endpoint my-amf received request.
[Flex] Deserializing AMF/HTTP request
Version: 3
  (Message #0 targetURI=null, responseURI=/1)
    (Array #0)
  [0] = (Typed Object 
#0 'flex.messaging.messages.CommandMessage')
    messageRefType = null
    operation = 6
    correlationId = ""
    headers = (Object #1)
    messageId = "7872E161-B9A4-4841-5F6D232B"
    timeToLive = 0
    timestamp = 0
    clientId = null
    body = (Object #2)
    destination = ""

[Flex] Executed command: (default service)
  commandMessage: Flex Message 
(flex.messaging.messages.CommandMessage)
    operation = client_ping
    messageRefType = null
    clientId = 233EDFBE-1D0A-4948-4537-EC592DCACD7F
    correlationId =
    destination =
    messageId = 7872E161-B9A4-4841-5F6D232B
    timestamp = 1145493517421
    timeToLive = 0
    body = {}
  replyMessage: Flex Message 
(flex.messaging.messages.AcknowledgeMessage)
    clientId = 233EDFBE-1D0A-4948-4537-EC592DCACD7F
    correlationId = 7872E161-B9A4-4841-5F6D232B
    destination = null
    messageId = 233EDFBE-1D1D-C0FC-936D-FA6B34623DC5
    timestamp = 1145493517421
    timeToLive = 0
    body = null

[Flex] Serializing AMF/HTTP response
Version: 3
  (Message #0 targetURI=/1/onResult, responseURI=)
    (Typed Object #0 'flex.messaging.messages.AcknowledgeMessage')
  destination = null
  headers = (Object #1)
  correlationId = "7872E161-B9A4-4841-5F6D232B"
  messageId = "233EDFBE-1D1D-C0FC-936D-FA6B34623DC5"
  timeToLive = 0.0
  timestamp = 1.145493517421E12
  clientId = "233EDFBE-1D0A-4948-4537-EC592DCACD7F"
  body = null

[Flex] Channel endpoint my-amf received request.
[Flex] Deserializing AMF/HTTP request
Version: 3
  (Message #0 targetURI=null, responseURI=/2)
    (Array #0)
  [0] = (Typed Object 
#0 'flex.messaging.messages.RemotingMessage')
    source = null
    operation = "authenticateUser"
    headers = (Object #1)
  endpoint = "my-amf"
    messageId = "09226E93-C2DA-A5E4-CCE6D97E"
    timeToLive = 0
    timestamp = 0
    clientId = null
    body = (Array #2)
  [0] = (Typed Object 
#3 'com.logicseries.services.security.authenticati
on.AuthenticatedUserValue')
    currentLogonDateTime = null
    username = "XX"
    lastLogonDateTime = null
    password = "XX"
    invalidLogonAttempts = NaN
    name = null
    profile = "">
    authorizedRoles = null
    personId = NaN
    destination = "lsSecurity"




Here are the console messages from the secure amf:

[Flex] Channel endpoint my-secure-amf received request.
[Flex] Deserializing AMF/HTTP request
Version: 3
  (Message #0 targetURI=null, responseURI=/1)
    (Array #0)
  [0] = (Typed Object 
#0 'flex.messaging.messages.CommandMessage')
    operation = 6
    messageRefType = null
    correlationId = ""
    messageId = "E41A269A-9553-977E-525A3BB0"
    timeToLive = 0
    timestamp = 0
    clientId = null
    body = (Object #1)
    destination = ""
    headers = (Object #2)

[Flex] Serializing AMF/HTTP response
Version: 3
  (Header #0 name=AppendToGatewayUrl, mustUnderstand=false)
    ";jsessionid=c030f64fa6665e267f2d"

  (Message #0 targetURI=/1/onResult, responseURI=)
    (Typed Object #0 'flex.messaging.messages.AcknowledgeMessage')
  destination = null
  headers = (Object #1)
  correlationId = "E41A269A-9553-977E-525A3BB0"
  messageId = "2345E298-890B-5740-1E8D-72D6ED468800"
  timeToLive = 0.0
  timestamp = 1.145493705625E12
  clientId = "2345E271-790C-307C-1DE9-1CB848FC58D2"
  body = null



On the non-secure amf channel I get RemotingMessage traces after the 
AcknowledgeMessage.  I never get anything on the secure amf channel 
after the AcknowledgeMessage.  Any thought???




--- In flexcoders@yahoogroups.com, "Steven Toth" <[EMAIL PROTECTED]> 
wrote:
>
> Thanks for the notes.  I wasn't aware of the fact that you need to 
> specify the context root on the compiler.  I assumed (I know it's 
not 
> good to assume) that whatever was in the config files in WEB-
INF/flex 
> directory of the web app would be loaded and used at runtime.  I 
> guess it's based on experiences with other 
languages/applications.    
> 
> You're summary of the configuration is correct.  I misspoke of JMS 
> messages, these are the Command and Remoting Messages, my 
apologies.  
> 
> I already had the log level turned up, and I do see the Command 
and 
> Remoting Messages over HTTP, but only one of them over HTTPS (I'm 
not 
> see the message with the data for the objects being passed back 
and 
> forth).  I will re-run a test and capture the sets of messages 
over 
> HTTP and HTTPS and post them here later tonight.  
> 
> Sorry if I'm not articulat

[flexcoders] Turn off Validators

2006-04-19 Thread mvbaffa



Hi everybody,

I need to turn off or disable a validator. 

After an error is detected in the associated field I cannot turnoff 
the visual indication or the error message, even if I write "" to the 
textinput or set the enabled property of the valdator to false.

When I first show the screen I make the validator disabled so that 
required fields can be blank and it worked. But at moment an error is 
detected I can only turnoff the validator if I set the textinput with 
a valid value, in this case a number.

How can I make it work ?

Thanks in advance










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: parseDateString and parseNumberString

2006-04-19 Thread mvbaffa



Thanks !!!

--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
>
> parseDateString is a protected static method on the DateFormatter 
it
> appears.  Which means you would need to write a subclass of
> DateFormatter and then you could call the static method from 
within it
> (via DateFormatter.parseDateString).  
> 
> Matt
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of mvbaffa
> Sent: Saturday, April 15, 2006 3:00 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] parseDateString and parseNumberString
> 
> Hi everybody,
> 
> I am using Flex 2 Beta 2.
> 
> I have a date formatter and a currency formatter they work fine 
when 
> I use the format method. When the form is submitted I have parse 
> these values to save a date and a number.
> 
> I am trying to use parseDateString and parseNumberString. I tried:
>    - DateFormatter.parseDateString(dateField);
> 
> and Flex gives me the error:
> "Attempted access of inaccessible method 'parseDateString' through 
> a reference with static type 'Class'"
> 
> Then I tried with the instance of the formatter and Flex gives the 
> error:
> "Call to a possibly undefined method 'parseDateString' through a 
> reference with static type 'mx.formatters:DateFormatter'"
> 
> I need special formatting and I need to parse the values back. Can 
> anybody help me !
> 
> Thanks in advance
> 
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Re: importing button designed in flash

2006-04-19 Thread loftling



--- In flexcoders@yahoogroups.com, "Chaitanya" <[EMAIL PROTECTED]> wrote:
>
> Hi,
> 
>    I am trying to import a button designed in flash into my flex
> project and use it. I imported it and I can see it in my navigator
> view. But when I try to drag it into my Panel I cant do it. Looks like
> something is wrong with the way I am doing it or flash designed
> buttons or components cannot be imported into Flex. Could somebody
> please help.

Flex components must extend mx.core.UIComponent, and your button is
probably just a DisplayObject.









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Workspace Overlapping

2006-04-19 Thread Bjorn Schultheiss



Hi List,

When my workspace is set to its default location

C:\Documents and Settings\\My Documents\Flex

And I create a new flex project, with the location

C:\Documents and Settings\\My Documents\Flex

Things work fine :)


Well if I switch workspaces to 

C:\DEV\FLEXB2\

And try to create a new project

Untick default location, which was still set to C:\Documents and
Settings\\My Documents\Flex

And I try to set the location to

C:\DEV\FLEXB2\

I get "C:\DEV\FLEXB2\ overlaps the workspace location C:\DEV\FLEXB2\"

Isn't that contradicting  



Bjorn Schultheiss 
Senior Flash Developer 

QDC
Personalised Communication Power

Level 2, 31 Coventry St.
South Melbourne
3205, VIC Australia

T:  +61 3 9674 7400
F:  +61 3 9645 9160
W:  http://www.qdc.net.au/qdc
 
((This transmission is confidential and intended solely for the
person or organization to whom it is addressed. It may contain privileged
and confidential information. If you are not the intended recipient, you
should not copy, distribute or take any action in reliance on it. If you
believe you received this transmission in error, please notify the
sender.---))







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: Flex2b2: Problem casting super to an Interface

2006-04-19 Thread loftling




> IInterface( super ).InterfaceMethod();


It seems to me that the bug is that super is allowed to be used by
itself (without calling a method). It seems that the compiler is just
treating "super" as an alias for "this", which is about the most
sensible thing it can do other than generate an error.









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Re: How do I access URL vars in onCreationComplete?

2006-04-19 Thread Nathan



Thanks Peter - will give it a go.

Cheers

Nathan

--- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> wrote:
>
> In MXML, try getting the values from Application.application.parameters 
> 
> 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: Loading an SWC into Flex 2 Beta 2

2006-04-19 Thread ben.clinkinbeard



Just as another resource, this is a pretty thorough article on this
same subject.

http://www.asserttrue.com/articles/2006/04/18/library-type-assets-in-actionscript-3-0-using-the-embed-metatdata-tag


--- In flexcoders@yahoogroups.com, "Harris Reynolds" <[EMAIL PROTECTED]>
wrote:
>
> Has anyone had success importing a 3rd party SWC into a Flex 2 Beta 2 
> project?  I have tried two different components and each time I get the 
> following error:
> 
> "unable to load SWC componentnamehere.swc: unknown element swc found in 
> componentPackage section in catalog.xml."
> 
> Does anything special need to be done to the SWC to make it compatible 
> with Flex 2?
> 
> thanks,
> 
> ~harris
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sof4real03



Simeon,

Thanks as well. Putting the dynamic in the VO class definition worked.
I'd like to try the UIDD solution as well for completness. Is this a
bug or by design?

Thanks,
Sof
--- In flexcoders@yahoogroups.com, "sufibaba" <[EMAIL PROTECTED]> wrote:
>
> Simeon,
> 
> Excellent tip, you've come through full power again.   My setup is with 
> coldfusion the " Dynamic"  seemed to have solved the comboBox display
> problem.   Even though that is fixed, I am getting binding problems in
> other parts of the App.  BTW, everything was working fine in Beta1.
> 
> Problem in the following scenario:
> 
> A TileList that is being populate by an Array of CategoryVO's
> 
> 
>  xmlns:mx="http://www.adobe.com/2006/mxml"
>  dataProvider="{model.templateList}"
>  width="100%"
>  itemRenderer="Thumbnail"
>  columnWidth="200"
>  height="100%"
>  dragEnabled = "false"
>  backgroundColor="#C0CCD2"
>  creationComplete="InitEvent()"
>  >
> 
> The Thumbnail ItemRenderer has problems with data binding .
> 
> -ThumbNail.mxml --
> 
>  
> fontWeight="bold"/>
>  
>  id="image" x="{image.width/2}" y="{image.height/2}"
>  horizontalAlign="center"
>  source="http://company.test.net{data.data.URL as String}"
>  click="thumbClicked()"
>   scaleX=".7" scaleY=".7"
>   rollOverEffect="zoomIn"
>   rollOutEffect="zoomOut"/>
> 
>  Error message from the Debugger -
> 
> warning: unable to bind to property 'data' on class
> 'com.mycompany.templateEditor.vo::CategoryVO'
> warning: unable to bind to property 'name' on class
> 'com.mycompany.templateEditor.vo::CategoryVO'
> warning: unable to bind to property 'data' on class
> 'com.mycompany.templateEditor.vo::CategoryVO'
> 
> Any help on this is greatly appreciated.
> 
> Cheers,
> 
> Tim
> 
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "Simeon Bateman" 
> wrote:
> >
> > Hey Gang,
> >
> > Here is the deal as I understand it.  In order for list based
> components to
> > visually respond correctly they need to have certain things
> implemented in
> > the VO in the dataProvider.
> >
> > At the base level what really needs to happen is that if you value
> objects
> > are going to be used as the dataProvider for a list based control,
> they need
> > to implement the IUID interface.  All that really means is you need to
> > import mx.core.IUID and then define your class as "public class
> implements
> > IUID".  Then have a getter and setter for uid.
> >
> > I ran into some problems implementing this with objects that were
> being
> > passed back from ColdFusion, and found that another solution was to
> just
> > defind your class as dynamic.(thanks Darron)  For me this was a hack
> and not
> > the best option, but it was the only workaround i could make work.
> >
> > Anyway, if your value objects implement the IUID interface i think you
> will
> > see the visual cues i the list work correctly.  I know this was the
> case for
> > me with lists and dataGrids.
> >
> > simeon
> >
>











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Problem with AMFGateway and Sessions - please help

2006-04-19 Thread Dmitry Miller



trying to retrieve session in my request handler class via

flashgateway.Gateway.getHttpRequest().getSession(true);

The problem is that flashgateway.Gateway.getHttpRequest() returns null

I am using Flex 1.5
Any suggestions?

Thanks










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sufibaba



Good question,

Where do you make them bindable... In the thumbnail.mxml or in the
mxml where the TileList is? 


Tim



--- In flexcoders@yahoogroups.com, "Simeon Bateman" <[EMAIL PROTECTED]>
wrote:
>
> Glad that worked for you :)
> 
> Well I will go with the full on silly question.  Are you marking those
> properties as bindable?
> 
> simeon
> 
> 
> >
> >  Error message from the Debugger -
> >
> > warning: unable to bind to property 'data' on class '
> > com.mycompany.templateEditor.vo::CategoryVO'
> > warning: unable to bind to property 'name' on class '
> > com.mycompany.templateEditor.vo::CategoryVO'
> > warning: unable to bind to property 'data' on class '
> > com.mycompany.templateEditor.vo::CategoryVO'
> >
> >
> >  --
> >
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sufibaba



Good question,

Where do you make them bindable... In the thumbnail.mxml or in the
mxml where the TileList is? 


Tim



--- In flexcoders@yahoogroups.com, "Simeon Bateman" <[EMAIL PROTECTED]>
wrote:
>
> Glad that worked for you :)
> 
> Well I will go with the full on silly question.  Are you marking those
> properties as bindable?
> 
> simeon
> 
> 
> >
> >  Error message from the Debugger -
> >
> > warning: unable to bind to property 'data' on class '
> > com.mycompany.templateEditor.vo::CategoryVO'
> > warning: unable to bind to property 'name' on class '
> > com.mycompany.templateEditor.vo::CategoryVO'
> > warning: unable to bind to property 'data' on class '
> > com.mycompany.templateEditor.vo::CategoryVO'
> >
> >
> >  --
> >
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread Simeon Bateman



Glad that worked for you :)Well I will go with the full on silly question.  Are you marking those properties as bindable?simeon


 Error message from the Debugger -

warning: unable to bind to property 'data' on class 'com.mycompany.templateEditor.vo::CategoryVO'
warning: unable to bind to property 'name' on class 'com.mycompany.templateEditor.vo::CategoryVO'
warning: unable to bind to property 'data' on class 'com.mycompany.templateEditor.vo::CategoryVO'


  















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Combobox not highlighting on mouseOver (Flex2Beta2)

2006-04-19 Thread sufibaba



Simeon,

Excellent tip, you've come through full power again.   My setup is
with  coldfusion the " Dynamic"  seemed to have solved the
comboBox display problem.   Even though that is fixed, I am
getting binding problems in other parts of the App.  BTW,
everything was working fine in Beta1. 

Problem in the following scenario:

A TileList that is being populate by an Array of CategoryVO's


    xmlns:mx="http://www.adobe.com/2006/mxml" 
    dataProvider="{model.templateList}"
    width="100%"
    itemRenderer="Thumbnail"
    columnWidth="200"
    height="100%" 
    dragEnabled = "false"
    backgroundColor="#C0CCD2"
    creationComplete="InitEvent()"
    >

The Thumbnail ItemRenderer has problems with data binding .

-ThumbNail.mxml --

        
        
            id="image" x="{image.width/2}" y="{image.height/2}"
            horizontalAlign="center" 
            source="http://company.test.net{data.data.URL as String}"
            click="thumbClicked()"
 scaleX=".7" scaleY=".7"
 rollOverEffect="zoomIn"
 rollOutEffect="zoomOut"/>

 Error message from the Debugger -

warning: unable to bind to property 'data' on class 'com.mycompany.templateEditor.vo::CategoryVO'
warning: unable to bind to property 'name' on class 'com.mycompany.templateEditor.vo::CategoryVO'
warning: unable to bind to property 'data' on class 'com.mycompany.templateEditor.vo::CategoryVO'

Any help on this is greatly appreciated.

Cheers,

Tim



--- In flexcoders@yahoogroups.com, "Simeon Bateman" <[EMAIL PROTECTED]> wrote:>> Hey Gang,> > Here is the deal as I understand it.  In order for list based components to> visually respond correctly they need to have certain things implemented in> the VO in the dataProvider.> > At the base level what really needs to happen is that if you value objects> are going to be used as the dataProvider for a list based control, they need> to implement the IUID interface.  All that really means is you need to> import mx.core.IUID and then define your class as "public class implements> IUID".  Then have a getter and setter for uid.> > I ran into some problems implementing this with objects that were being> passed back from ColdFusion, and found that another solution was to just> defind your class as dynamic.(thanks Darron)  For me this was a hack and not> the best option, but it was the only workaround i could make work.> > Anyway, if your value objects implement the IUID interface i think you will> see the visual cues i the list work correctly.  I know this was the case for> me with lists and dataGrids.> > simeon>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Flex app URL

2006-04-19 Thread Dmitry Miller



Thanks a lot, Tom


--- In flexcoders@yahoogroups.com, "Tom Ortega" <[EMAIL PROTECTED]> wrote:
>
> Funny you ask that, I just found an old flexcoders message from Matt
Chotin
> yesterday that said:
> 
>  Application.application.url will give you the url to the main SWF.
> 
> Matt
> 
> 
> 
> On 4/19/06, Dmitry Miller <[EMAIL PROTECTED]> wrote:
> >
> >  Does anyone know how to retrieve url of the Flex app from within the
> > application?
> >
> >
> >
> >
> >
> >  --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >
> >
> >  --
> > YAHOO! GROUPS LINKS
> >
> >
> >    -  Visit your group
"flexcoders"
> >    on the web.
> >
> >    -  To unsubscribe from this group, send an email to:
> >    
[EMAIL PROTECTED]<[EMAIL PROTECTED]>
> >
> >    -  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> >    Service .
> >
> >
> >  --
> >
>











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Peter Farland



ObjectProxy is a Flex specific subclass of Proxy for wrapping anonymous
Objects that are dynamic and can't be predictably made bindable to
report property change events. It shouldn't be used to wrap typed
objects like instances of B (see later). You can never cast ObjectProxy
to B... the as operator never throws class cast exceptions, it just
returns null if the type isn't correct. If you _did_ happen to end up in
the situation that B was wrapped in an ObjectProxy then you'd have to
unwrap the instance:

var b:B = B(ObjectProxy(o).object_proxy::object);


...but this would be unusual since for serialization purposes in FDS we
do not support typed objects being wrapped in ObjectProxy instances and
sent to the server.

Instead you should add [Bindable] metadta to public class B definition.

If you somehow ended up with an ObjectProxy in the result from an FDS
RPC service (like RemoteObject), then it's likely that the
makeObjectsBindable attribute was true on your service but the type
wasn't registered correctly with a remote class alias. In this case
you'd add [RemoteClass(alias="com.mycompany.B")] to your public class B
definition.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Vadim Melnik
Sent: Wednesday, April 19, 2006 6:09 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] How to override type cast operator @ runtime?

Hi All,

flash.util.Proxy/mx.utils.ObjectProxy classes allow us to override
properties access, methods call etc. Is it possible to override type
cast operations at runtime, like IUnknown:QueryInterface in COM? For
example:


public class B {}

...

var o:* = new ObjectProxy(new B());
var b:B = o as B;
trace(b); // <- writes "null"
   // but I am looking for solution to
   // hook type cast operation as well
   // in other words need in ActionScript 3
   // "universal delegate"
 
--
Thanks,
Vadim Melnik.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Re: How to override type cast operator @ runtime?

2006-04-19 Thread Johannes Nel



i have seen this eact behaviour when deserilazing something from a bytearray as well :(On 4/19/06, Vadim Melnik <
[EMAIL PROTECTED]> wrote:>> have you tried an explicit coercion? <<
Yep, it produced runtime error:TypeError: Error #1034: Type Coercion failed: cannot convertmx.utils::[EMAIL PROTECTED] to B--Thanks,Vadim Melnik.--- In 
flexcoders@yahoogroups.com, "Johannes Nel" <[EMAIL PROTECTED]>wrote:>> have you tried an explicit coercion?> var o:* = new ObjectProxy(new B());> var b:B = B(o);>
> On 4/19/06, Vadim Melnik <[EMAIL PROTECTED]> wrote:> >> > Hi All,> >> > flash.util.Proxy/mx.utils.ObjectProxy classes allow us tooverride> > properties access, methods call etc. Is it possible to override
type> > cast operations at runtime, like IUnknown:QueryInterface in COM?For> > example:> >> >> > public class B {}> >> > ...> >> > var o:* = new ObjectProxy(new B());
> > var b:B = o as B;> > trace(b); // <- writes "null"> >// but I am looking for solution to> >// hook type cast operation as well> >// in other words need in ActionScript 3
> >// "universal delegate"> >> > --> > Thanks,> > Vadim Melnik.> >> >> >> >> >> >> > --
> > Flexcoders Mailing List> > FAQ:http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> > Search Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.com> > Yahoo! Groups Links> >> >> >
> >> >> >> >>  --> j:pn> http://www.lennel.org>--Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: 
http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/-- j:pn http://www.lennel.org







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Updating and Retriving Data From XML File FLEX 2

2006-04-19 Thread livnginabluewrld



Would there be any way I could get this sample sent to me? I don't see
if there's a way to download it, it says the .zip "is not stored".

Thank you!!

--- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote:
>
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of mdoberenz
> Sent: Monday, April 17, 2006 4:31 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Updating and Retriving Data From XML File FLEX
> 2
> 
> --- In flexcoders@yahoogroups.com, Faisal Abid  wrote:
> >
> > Tracy Spratt wrote:
> > > In case you missed it, I posted a sample done in 1.5 that may 
> help.  It
> > > is under the subject, "1.5 Sample App to read,edit and save XML 
> file"
> > >
> > > Tracy
> > >
> > > -Original Message-
> > > From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On
> > > Behalf Of Faisal Abid
> > > Sent: Sunday, April 16, 2006 8:38 PM
> > > To: flexcoders@yahoogroups.com
> > > Subject: [flexcoders] Updating and Retriving Data From XML File 
> FLEX 2
> > >
> > > Does anyone know how to retrive and update data from an XML file 
> in Flex
> > > 2??
> > >
> > >
> > > --
> > > Flexcoders Mailing List
> > > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives:
> > > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > --
> > > Flexcoders Mailing List
> > > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives: http://www.mail-archive.com/flexcoders%
> 40yahoogroups.com
> > >
> > >
> > > -
> ---
> > > YAHOO! GROUPS LINKS
> > >
> > > *  Visit your group "flexcoders
> > >   " on the web.
> > >    
> > > *  To unsubscribe from this group, send an email to:
> > >    [EMAIL PROTECTED]
> > >   
> subject=Unsubscribe>
> > >    
> > > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms 
> of
> > >   Service .
> > >
> > >
> > > -
> ---
> > >
> > Yes indeed i did get that sample, thank you so much :)
> >
> Could someone please post the zip file again?  I found the original 
> post, but the zip file has been removed.
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Re: How to override type cast operator @ runtime?

2006-04-19 Thread Vadim Melnik



>> have you tried an explicit coercion? <<

Yep, it produced runtime error:

TypeError: Error #1034: Type Coercion failed: cannot convert 
mx.utils::[EMAIL PROTECTED] to B

--
Thanks,
Vadim Melnik.

--- In flexcoders@yahoogroups.com, "Johannes Nel" <[EMAIL PROTECTED]> 
wrote:
>
> have you tried an explicit coercion?
> var o:* = new ObjectProxy(new B());
> var b:B = B(o);
> 
> On 4/19/06, Vadim Melnik <[EMAIL PROTECTED]> wrote:
> >
> > Hi All,
> >
> > flash.util.Proxy/mx.utils.ObjectProxy classes allow us to 
override
> > properties access, methods call etc. Is it possible to override 
type
> > cast operations at runtime, like IUnknown:QueryInterface in COM? 
For
> > example:
> >
> >
> > public class B {}
> >
> > ...
> >
> > var o:* = new ObjectProxy(new B());
> > var b:B = o as B;
> > trace(b); // <- writes "null"
> >    // but I am looking for solution to
> >    // hook type cast operation as well
> >    // in other words need in ActionScript 3
> >    // "universal delegate"
> >
> > --
> > Thanks,
> > Vadim Melnik.
> >
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> >
> 
> 
> --
> j:pn
> http://www.lennel.org
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Johannes Nel



have you tried an explicit coercion?var o:* = new ObjectProxy(new B());var b:B = B(o);On 4/19/06, Vadim Melnik <
[EMAIL PROTECTED]> wrote:Hi All,flash.util.Proxy/mx.utils.ObjectProxy classes allow us to override
properties access, methods call etc. Is it possible to override typecast operations at runtime, like IUnknown:QueryInterface in COM? Forexample:public class B {}...var o:* = new ObjectProxy(new B());
var b:B = o as B;trace(b); // <- writes "null"   // but I am looking for solution to   // hook type cast operation as well   // in other words need in ActionScript 3   // "universal delegate"
--Thanks,Vadim Melnik.--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/
-- j:pn http://www.lennel.org






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] How to override type cast operator @ runtime?

2006-04-19 Thread Vadim Melnik



Hi All,

flash.util.Proxy/mx.utils.ObjectProxy classes allow us to override 
properties access, methods call etc. Is it possible to override type 
cast operations at runtime, like IUnknown:QueryInterface in COM? For 
example:


public class B {}

...

var o:* = new ObjectProxy(new B());
var b:B = o as B;
trace(b); // <- writes "null"
   // but I am looking for solution to
   // hook type cast operation as well
   // in other words need in ActionScript 3
   // "universal delegate"
 
--
Thanks,
Vadim Melnik.










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Steven Webster





hey Robert,
 
Latest build is here http://www.richinternetapps.com/archives/000145.html
 
Bear with us until Cairngorm has it's new home.   
It's not primarily for data services either, it was conceived and has evolved 
long before data services was a twinkle in someone at Macromedia's 
eye...
 
Best,
 
Steven
 


  
  

  


  
  

Steven WebsterPractice Director (Rich 
Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs 
Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 
6108
m: +44 (0) 7917 428 947 [EMAIL PROTECTED] 
  
 

  
  
  From: Robert Thompson 
  [mailto:[EMAIL PROTECTED] Sent: 19 April 2006 
  22:25To: flexcoders@yahoogroups.comSubject: RE: 
  [flexcoders] Is This Accurate >> Cairngorm architectural framework in a 
  word (well a few words)
  Thanks Steve.  Thus far, however, I've not found the 0.99 
  release of Carnigorm for download so I can begin to follow it's architectural 
  framework.  Is it primarily for Flex Data 
Services?





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Tim Hoff



Robert,
To learn more about Cairngorm, I highly recommend that you read the 6-part article series that starts here: http://www.macromedia.com/devnet/flex/articles/cairngorm_pt1.html.
- TH
--- In flexcoders@yahoogroups.com, Robert Thompson <[EMAIL PROTECTED]> wrote:>> Thanks Steve. Thus far, however, I've not found the 0.99 release of Carnigorm for download so I can begin to follow it's architectural framework. Is it primarily for Flex Data Services?> > Steven Webster [EMAIL PROTECTED] wrote: Works for me :)> > Steven Webster> Practice Director (Rich Internet Applications)> Adobe Consulting> Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK> p: +44 (0) 131 338 6108> m: +44 (0) 7917 428 947 > [EMAIL PROTECTED] > > > > > > > -> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Thompson> Sent: 19 April 2006 18:26> To: flexcoders@yahoogroups.com> Subject: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)> > > > Cairngorm is very interesting. I've read the docs and understand the purpose.> > Would it be fair to say that Cairngorm is essentially the following:> > An architectural framework (not app framework) that serves as sort of a "rudder" (as you would find on a boat) for standard development patterns that are often repeated over and over again from app to app, but far too often stray into inconsistent territory. Carnigorm provides a general direction in the sea of architectural possibilities; and thus helps the overall development community communicate their solutions better -- and thus have better standards of practice; especially among B2B, Web Service Persistent solutions.> > I'm just trying to make sure my overall big picture is accurate myself. > > --> Flexcoders Mailing List> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > > > > -> YAHOO! GROUPS LINKS > > > Visit your group "flexcoders" on the web.> > To unsubscribe from this group, send an email to:> [EMAIL PROTECTED]> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. > > > -> > > > > > -> Love cheap thrills? Enjoy PC-to-Phone calls to 30+ countries for just 2¢/min with Yahoo! Messenger with Voice.>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Oriol Gual



You can download 0.99 from here: http://www.iterationtwo.com/open_source_cairngorm.htmlOriol.2006/4/19, Robert Thompson <
[EMAIL PROTECTED]>:


Thanks Steve.  Thus far, however, I've not found the 0.99 release of Carnigorm for download so I can begin to follow it's architectural framework.  Is it primarily for Flex Data Services?Steven Webster <
[EMAIL PROTECTED]> wrote:
   Works for me :) 
 

 
 Steven WebsterPractice Director (Rich  Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs  Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338  6108
 m: +44 (0) 7917 428 947 [EMAIL PROTECTED]
  
  From: flexcoders@yahoogroups.com[mailto:
flexcoders@yahoogroups.com] On Behalf Of RobertThompsonSent: 19 April 2006 18:26
To:flexcoders@yahoogroups.comSubject: [flexcoders] Is This Accurate>> Cairngorm architectural framework in a word (well a fewwords)
   Cairngorm is very interesting.  I've read the docs andunderstand the purpose.Would it be fair to say that Cairngorm isessentially the following:
Anarchitectural framework (not app framework) that serves as sort of a "rudder"(as you would find on a boat) for standard development patterns that are oftenrepeated over
 and over again from app to app, but far too often stray intoinconsistent territory.  Carnigorm provides a general direction in thesea of architectural possibilities; and thus helps the overall developmentcommunity communicate their solutions better -- and thus have better standardsof practice; especially among B2B, Web Service Persistentsolutions.
I'm just trying to make sure my overallbig picture is accurate myself.  
  YAHOO! GROUPS LINKS   Visit your group "
flexcoders" on the web.     To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED]     Your use of Yahoo! Groups is subject to the 
Yahoo! Terms of Service. 

		Love cheap thrills? Enjoy PC-to-Phone 
 calls to 30+ countries for just 2¢/min with Yahoo! Messenger with Voice.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.



  















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Flex app URL

2006-04-19 Thread Tom Ortega



Funny you ask that, I just found an old flexcoders message from Matt Chotin yesterday that said:


Application.application.url will give you the url to the main SWF.

Matt On 4/19/06, Dmitry Miller <[EMAIL PROTECTED]> wrote:



Does anyone know how to retrieve url of the Flex app from within the
application?









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 

   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.



  
















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Robert Thompson



Thanks Steve.  Thus far, however, I've not found the 0.99 release of Carnigorm for download so I can begin to follow it's architectural framework.  Is it primarily for Flex Data Services?Steven Webster <[EMAIL PROTECTED]> wrote:   Works for me :)  
  Steven WebsterPractice Director (Rich  Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs  Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338  6108 m: +44 (0) 7917 428 947 [EMAIL PROTECTED]    From: flexcoders@yahoogroups.com[mailto:[EMAIL PROTECTED] On Behalf Of RobertThompsonSent: 19 April 2006 18:26To:flexcoders@yahoogroups.comSubject: [flexcoders] Is This Accurate>> Cairngorm architectural framework in a word (well a fewwords)   Cairngorm is very interesting.  I've read the docs andunderstand the purpose.Would it be fair to say that Cairngorm isessentially the following:Anarchitectural framework (not app framework) that serves as sort of a "rudder"(as you would find on a boat) for standard development patterns that are oftenrepeated over
 and over again from app to app, but far too often stray intoinconsistent territory.  Carnigorm provides a general direction in thesea of architectural possibilities; and thus helps the overall developmentcommunity communicate their solutions better -- and thus have better standardsof practice; especially among B2B, Web Service Persistentsolutions.I'm just trying to make sure my overallbig picture is accurate myself.YAHOO! GROUPS LINKS   Visit your group "flexcoders" on the web.     To unsubscribe from this group, send an email to: [EMAIL PROTECTED]     Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
		Love cheap thrills? Enjoy PC-to-Phone  calls to 30+ countries for just 2¢/min with Yahoo! Messenger with Voice.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex app URL

2006-04-19 Thread Dmitry Miller



Does anyone know how to retrieve url of the Flex app from within the
application?









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Accordian from XML

2006-04-19 Thread Michael Schmalle



BTW,

I can see in my head quite a few different tecniques to do this. It
really depneds on what you are ACTUALLY doing. Rereading your post,
this might be some of what you want but, not exactly.

Peace, MikeOn 4/19/06, Michael Schmalle <[EMAIL PROTECTED]> wrote:
Hi,

Yeah, use the ...


   
   


var myXML:XMLList = myXML..item;

then iterate through the list using [EMAIL PROTECTED]

in loop ...
var child = new Canvas()
child.label =  [EMAIL PROTECTED]
accorion.addChild(child)

use addChild() with the component you want while setting it's label property from your @label attribute.

You could even get funky by putting another attribute in your xml that
stated the component classpath to use and use the get class reference
function in as3 to create it dynamically. You have to create a
dependency with any component you will use though if you use strings to
reference a class.

Sorry, not enought time to show a true example but, this could get you started.

Peace, MikeOn 4/19/06, alehrens <
[EMAIL PROTECTED]> wrote:



I'm a newbie to both Flex and FlexCoders...  How would you go about 
populating an accordian tab/data from an XML file?  Specifically, I 
have an XML file that contains a label, data and description.  I'd 
like to use the label as the tab of the accordian, then show the data 
and description inside the accordian.  Is there a clean and simple way 
to do this?









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt


Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com







  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 

[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.





  









-- What goes up, does come down.

-- What goes up, does come down.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Accordian from XML

2006-04-19 Thread Michael Schmalle



Hi,

Yeah, use the ...


   
   


var myXML:XMLList = myXML..item;

then iterate through the list using [EMAIL PROTECTED]

in loop ...
var child = new Canvas()
child.label =  [EMAIL PROTECTED]
accorion.addChild(child)

use addChild() with the component you want while setting it's label property from your @label attribute.

You could even get funky by putting another attribute in your xml that
stated the component classpath to use and use the get class reference
function in as3 to create it dynamically. You have to create a
dependency with any component you will use though if you use strings to
reference a class.

Sorry, not enought time to show a true example but, this could get you started.

Peace, MikeOn 4/19/06, alehrens <[EMAIL PROTECTED]> wrote:



I'm a newbie to both Flex and FlexCoders...  How would you go about 
populating an accordian tab/data from an XML file?  Specifically, I 
have an XML file that contains a label, data and description.  I'd 
like to use the label as the tab of the accordian, then show the data 
and description inside the accordian.  Is there a clean and simple way 
to do this?









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  









-- What goes up, does come down.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: Accordian from XML

2006-04-19 Thread Doug Lowder



Building the accordion tabs is very easy.  You'll need some extra 
work to create the children of the accordion; probably a custom 
component instead of the Canvas tag used in the below example.  BTW, 
I think I got the basis for this sample code from someone's site, 
probably Jester's, but I couldn't find the direct link.

Data.xml:
---

  
  
  
 

app.mxml:



http://www.macromedia.com/2003/mxml" 
width="100%" height="100%">




    
    
label="{rp.currentItem.label}"/>
    





Enjoy!
Doug


--- In flexcoders@yahoogroups.com, "alehrens" <[EMAIL PROTECTED]> wrote:
>
> I'm a newbie to both Flex and FlexCoders...  How would you go 
about 
> populating an accordian tab/data from an XML file?  Specifically, 
I 
> have an XML file that contains a label, data and description.  I'd 
> like to use the label as the tab of the accordian, then show the 
data 
> and description inside the accordian.  Is there a clean and simple 
way 
> to do this?
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Getting Drap Drop Panels

2006-04-19 Thread Michael Schmalle



Hi,

There was a link a while ago, Waldo Smeets started something in Flex
1.5. That should give you an idea of the complexity of it and where to
start ;-)

Peace, Mike

PS There are many things that need to be taken into account for when doing it.On 4/19/06, Faisal Abid <[EMAIL PROTECTED]
> wrote:


Does Anyone Know How To Impliemet Drag And Drop Panels






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com






  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: 
[EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.




  









-- What goes up, does come down.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Jennifer Larkin



Sorry. I posted the link to the BACFUG mailing list but I haven't
posted the link to my sitre yet. I'm trying to get our website
working. The URL is http://adobechats.breezecentral.com/bacfug0406/

On 4/19/06, Faisal Abid <[EMAIL PROTECTED]> wrote:
> Okay thanks,  but its still much better to see this happeing live , I
> wonder where Jen is, she hasnt even put the link on her site
>
>
>
> Simeon Bateman wrote:
> > Hey I will have NO hecklers!  Mr Reactor Assembler maker!
> >
> > Thats a good question though, and one I will have to defer to Jen to
> > answer :)
> >
> > simeon
> > PS. I am the presenter tonight, and the sample code will be on
> > http://flexcf.com after the meeting.
> >
> > On 4/19/06, *Faisal Abid* <[EMAIL PROTECTED]
> >  > wrote:
> >
> > What IS The URL For The Breeze Meetng Today for BACFUG? The one about
> > passing data between flex and coldfusion
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >
> >
> > 
> > YAHOO! GROUPS LINKS
> >
> > *  Visit your group "flexcoders
> >   " on the web.
> >
> > *  To unsubscribe from this group, send an email to:
> >    [EMAIL PROTECTED]
> >   
> >
> > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> >   Service .
> >
> >
> > 
> >
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>


--
"Then you'll learn, Intern. You will learn." How to Make a Monster

Now blogging
http://www.blivit.org/blog/index.cfm
http://www.blivit.org/mr_urc/index.cfm






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: Components do not respond to Click event

2006-04-19 Thread azhofeling



My apologies for not doing better homework before posting --

In trying to create code to duplicate the problem which I could post 
here, I found that when I remove one of my custom components from the 
application, the problem went away with it. 

Thanks for your quick replies.

Troy

--- In flexcoders@yahoogroups.com, "azhofeling" <[EMAIL PROTECTED]> wrote:
>
> I have noticed that when using buttons to control navigation (i.e. 
> BACK, NEXT, FINISH, etc) the buttons will not respond to repeated 
click 
> events without first moving the mouse. This was resolved with the 
> trackAsMenu attribute set to true. However, I also observe this same 
> behavior with the Date Picker and ComboBoxes in Tab Navigator and 
> Accordion containers. Unfortunately, trackAsMenu does not seem to fix 
> the problem with these components. 
> 
> Has anyone else experienced and solved this? Having to click the Date 
> Picker three times while moving the mouse between the second and 
third 
> click would make the UI pretty much useless.
> 
> Thank You,
> Troy Hofeling
>











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Accordian from XML

2006-04-19 Thread alehrens



I'm a newbie to both Flex and FlexCoders...  How would you go about 
populating an accordian tab/data from an XML file?  Specifically, I 
have an XML file that contains a label, data and description.  I'd 
like to use the label as the tab of the accordian, then show the data 
and description inside the accordian.  Is there a clean and simple way 
to do this?









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Getting Drap Drop Panels

2006-04-19 Thread Faisal Abid



Does Anyone Know How To Impliemet Drag And Drop Panels






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5

2006-04-19 Thread moyosaned



So the ctrl come true only the multiselection is not working it is
suddenly single selection

--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
>
> I believe there are known issues with wmode where sometimes the ctrl key
> won't be passed through to us.  Does holding shift work?
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of moyosaned
> Sent: Friday, April 14, 2006 1:34 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5
> 
> Ok... got the problem I am loading a Iframe over the flex-app.
> therefore i'm using wmode="opaque". this will make my tilelist
> single-select
> anybody?
> 
> --- In flexcoders@yahoogroups.com, "moyosaned" 
> wrote:
> >
> > I've got a problem! I'm using a TileList with mulitiselect is true.
> > 
> > it is all working just fine when I request the mxml, but when I use
> > the generated SWF in a html-template it's suddenly single select.
> > 
> > weird huh..?
> > 
> > 
> > /*** SAMPLE *>
> > 
> > width="100%" height="100%" direction="horizontal"
> >   multipleSelection="true"
> >   selectable="{ModelLocator.applicationProps.selectableView}"
> >   rowCount="4" columnCount="4"
> > cellRenderer="ThumbItem"
> > itemWidth="135" itemHeight="141" dragEnabled="false"/>
> >
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
>










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5

2006-04-19 Thread moyosaned



I'm using a keylistener that enables the selection of a TileList. Do
you mean I have to try listenming to the Shift instead of the ctrl.. 


I not great solution, becaue .. we sold it with ctrl-click..you see

--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
>
> I believe there are known issues with wmode where sometimes the ctrl key
> won't be passed through to us.  Does holding shift work?
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of moyosaned
> Sent: Friday, April 14, 2006 1:34 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: MultipleSelection onTileList in HTML Flex 1.5
> 
> Ok... got the problem I am loading a Iframe over the flex-app.
> therefore i'm using wmode="opaque". this will make my tilelist
> single-select
> anybody?
> 
> --- In flexcoders@yahoogroups.com, "moyosaned" 
> wrote:
> >
> > I've got a problem! I'm using a TileList with mulitiselect is true.
> > 
> > it is all working just fine when I request the mxml, but when I use
> > the generated SWF in a html-template it's suddenly single select.
> > 
> > weird huh..?
> > 
> > 
> > /*** SAMPLE *>
> > 
> > width="100%" height="100%" direction="horizontal"
> >   multipleSelection="true"
> >   selectable="{ModelLocator.applicationProps.selectableView}"
> >   rowCount="4" columnCount="4"
> > cellRenderer="ThumbItem"
> > itemWidth="135" itemHeight="141" dragEnabled="false"/>
> >
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
>











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Faisal Abid



Okay thanks,  but its still much better to see this happeing live , I 
wonder where Jen is, she hasnt even put the link on her site



Simeon Bateman wrote:
> Hey I will have NO hecklers!  Mr Reactor Assembler maker!
>
> Thats a good question though, and one I will have to defer to Jen to 
> answer :)
>
> simeon
> PS. I am the presenter tonight, and the sample code will be on 
> http://flexcf.com after the meeting.
>
> On 4/19/06, *Faisal Abid* <[EMAIL PROTECTED] 
>  > wrote:
>
> What IS The URL For The Breeze Meetng Today for BACFUG? The one about
> passing data between flex and coldfusion
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
> 
> YAHOO! GROUPS LINKS
>
> *  Visit your group "flexcoders
>   " on the web.
>    
> *  To unsubscribe from this group, send an email to:
>    [EMAIL PROTECTED]
>   
>    
> *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>   Service .
>
>
> 
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Simeon Bateman



Hey I will have NO hecklers!  Mr Reactor Assembler maker!Thats a good question though, and one I will have to defer to Jen to answer :)simeonPS. I am the presenter tonight, and the sample code will be on 
http://flexcf.com after the meeting.On 4/19/06, Faisal Abid <[EMAIL PROTECTED]
> wrote:


What IS The URL For The Breeze Meetng Today for BACFUG? The one about 
passing data between flex and coldfusion











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] What IS The URL For The Breeze Meetng Today for BACFUG

2006-04-19 Thread Faisal Abid



What IS The URL For The Breeze Meetng Today for BACFUG? The one about 
passing data between flex and coldfusion






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Re: Flex webservices framework

2006-04-19 Thread Tim Hoff



You can find an mxml example in the live docs: Flex Live Docs.  Go to "Getting Started with Flex" and select "Data: Use Web Services.  If you are interested in an AS3 class for web services, the following link should give you some good ideas:  http://jeff.mxdj.com/as3_datamanager.htm.
Cheers,
Tim Hoff
 
--- In flexcoders@yahoogroups.com, "Jonas Windey" <[EMAIL PROTECTED]> wrote:>> Hi,> > > > I'm looking for the link I came across some weeks ago, with a nice framework> on using webservice classes in Flex 2.0 (I think it was still the alpha> version)> > It provided some example classes that you could use to simplify the events> etc.> > > > Anyone remembers this? Thanks for your help.> > > > Jonas>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Re: RemoteObject Issue

2006-04-19 Thread Geoffrey



How crazy is this!  I took your advise and moved a few things 
around.  In my Unit test file I changed it to:

http://www.macromedia.com/2003/mxml"
  xmlns:sdm="sdm.*"
  xmlns:services="services.*">
    <---changed
    <---changed


Basically just swapping the order of the services and sdm tag made it 
work.

Thanks for all your efforts Doug!

Geoff


--- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> 
wrote:
>
> It seems like siteDataServices hasn't been created at the time the
> SMDelegate constructor is being called.  You'll need to dig through
> your code to find out why, e.g. check where you're calling
> ReviewKeywordsCommand(), and possibly call the constructor at some
> other point when you know the remote object has been created.
> 
> Regarding parameter passing, the constructor example you gave is
> exactly what I had in mind.  The value you're passing isn't a string
> though, it's a reference to the RemoteObject that you gave the id
> "siteDataServices" to.  Personally, I'd probably pass the service 
as a
> parameter, but as long as the delegate constructor is called only
> after you know the service object exists, either way should work.
> 
> I hope this helps, and another thing to note is that the work you're
> doing now to implement these design patterns will pay off down the
> road - especially if you're implementing a large-scale app.
> 
> Doug
> 
> --- In flexcoders@yahoogroups.com, "Geoffrey"  wrote:
> >
> > I tried to dump myServices via:
> > Dumper.dump
(mx.core.Application.application.myServices); 
> > during the Delegate constructor, and it came up 'undefined'.
> > 
> > I tried a creationComplete and an Initialize event to dump 
> > siteDataServices upon startup of the main mxml file.  Both had 
this 
> > to say:
> > 
> > [INFO]: (Object)
> >  log: (Object)
> >   level: 1 (Number)
> >   name: RemoteObject_AMF (String)
> >  __conn: (Object)
> >   contentType: application/x-fcs (String)
> >   _headerAdded: false (Boolean)
> >   _config: (Object)
> >    m_debug: true (Boolean)
> >    app_server: (Object)
> > coldfusion: true (Boolean)
> > amfheaders: false (Boolean)
> > amf: false (Boolean)
> > httpheaders: false (Boolean)
> > recordset: true (Boolean)
> > error: true (Boolean)
> > trace: true (Boolean)
> > _debug: true (Boolean)
> >    realtime_server: (Object)
> > trace: true (Boolean)
> > _debug: true (Boolean)
> >    client: (Object)
> > rtmp: true (Boolean)
> > http: true (Boolean)
> > recordset: true (Boolean)
> > trace: true (Boolean)
> > _debug: true (Boolean)
> >    _debug: true (Boolean)
> >   _protocol: http (String)
> >   _id: 0 (Number)
> >   netDebugProxyFunctions: true (Boolean)
> >  _allowRes: true (Boolean)
> >  __serviceName: 
com.foo.test.business.SiteMaintenanceDelegate 
> > (String)
> >  __responder: (Object)
> >   __obj: undefined (undefined)
> >   __onFault: _resp5_fault (String)
> >   __onResult: _resp5_result (String)
> >  __name: siteDataServices (String)
> >  __showBusyCursor: true (Boolean)
> >  __concurrency: 0 (Number)
> >  __parentDocument: undefined (undefined)
> > 
> > Looks like it's available at both initialization and 
creationComplete 
> > time frames.
> > 
> > I'm curious why the examples taken from the books website would 
prove 
> > to be this difficult to implement.
> > 
> > When you say "pass the service to your delegate constructor as a 
> > parameter", do you mean as a string?  Like the following:
> > 
> >   public function ReviewKeywordsCommand() {
> >   this.delegate = new SDMDelegate( this, mx.core.Application.\
> > application.myServices.siteDataServices );
> >   }
> > 
> > 
> > sorry if these are really basic questions, but I'm new to RIA 
> > development.
> > 
> > Thanks,
> > Geoff
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "Doug Lowder"  
> > wrote:
> > >
> > > The parentApplication property is a reference to the Application
> > > object (the nesting refers to applications loaded within other
> > > applications with the Loader control and probably doesn't apply 
to
> > > your case), but it's a property of mx.core.UIObject, which your
> > > SDMDelegate obviously isn't extending and probably shouldn't.  
Have
> > > you tried dumping mx.core.Application.application.myServices in 
the
> > > delegate constructor to see if it exists at that point?  You 
could
> > > also try adding a creationComplete event to the application to
> > > determine exactly when the siteDataServices remote object is
> > > available; something like
> > > creationComplete="Dumper.dump(myServices.siteDataServices

Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread Valy Sivec



Thanks Jester.ValyJesterXL <[EMAIL PROTECTED]> wrote: http://www.darronschall.com/weblog/archives/000224.cfm   - Original Message -  From: Valy Sivec   To: flexcoders@yahoogroups.com  Sent: Wednesday, April 19, 2006 2:27 PM Subject: Re: [flexcoders] Flex 2b2: TitleWindow &  Cairngorm I tried to dispatch an event registered with the  Cairngorm controller from a titlewindow but without much luck.The  following code doesn't work used from the TitleWindow but works when called from  the main panel that creates the TitleWindow.  // dispatch  event  var evnt : SaveIndividualEvent = new  SaveIndividualEvent(model._individual);  dispatchEvent( evnt  );The event is registered with the controller just fine but it looks  that cannot dispatch the event
 from the TitleWindow. Am I missing something  here?. Had the same scenario in Flex 1.5 and didn't have any issue with  it.Any suggestions?Thanks,Valy   How low will we go? Check out Yahoo! Messenger�s low PC-to-Phone  call rates.   
	
		Celebrate Earth Day everyday!  Discover 10 things you can do to help slow climate change. Yahoo! Earth Day





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] importing button designed in flash

2006-04-19 Thread Chaitanya



Hi,

   I am trying to import a button designed in flash into my flex
project and use it. I imported it and I can see it in my navigator
view. But when I try to drag it into my Panel I cant do it. Looks like
something is wrong with the way I am doing it or flash designed
buttons or components cannot be imported into Flex. Could somebody
please help.

Thanks

Chaitu.

 










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread JesterXL





http://www.darronschall.com/weblog/archives/000224.cfm
 
- Original Message - 
From: Valy Sivec 

To: flexcoders@yahoogroups.com 
Sent: Wednesday, April 19, 2006 2:27 PM
Subject: Re: [flexcoders] Flex 2b2: TitleWindow & 
Cairngorm
I tried to dispatch an event registered with the 
Cairngorm controller from a titlewindow but without much luck.The 
following code doesn't work used from the TitleWindow but works when called from 
the main panel that creates the TitleWindow.  // dispatch 
event  var evnt : SaveIndividualEvent = new 
SaveIndividualEvent(model._individual);  dispatchEvent( evnt 
);The event is registered with the controller just fine but it looks 
that cannot dispatch the event from the TitleWindow. Am I missing something 
here?. Had the same scenario in Flex 1.5 and didn't have any issue with 
it.Any suggestions?Thanks,Valy


How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone 
call rates. 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] importing button designed in flash

2006-04-19 Thread Chaitu Vadlapatla










 

Hi,

   I am trying to import a button designed in
flash into my flex project and use it. I imported it and I can see it in my
navigator view. But when I try to drag it into my Panel I cant do it. Looks
like something is wrong with the way I am doing it or flash designed buttons or
components cannot be imported into Flex. Could somebody please help.

Thanks

Chaitu.

 

 

 


 
  
  
  
  
  CHAITU VADLAPATLA
  SOFTWARE ENGINEER
  
 
 
  
  T8DESIGN.COM
  | P 319.266.7574 - x145 | 877.T8IDEAS | F 888.290.4675
  
 



This e-mail, including attachments, is
covered by the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521, is
confidential, and may be legally privileged. If you are not the intended
recipient, you are hereby notified that any retention, dissemination,
distribution, or copying of this communication is strictly prohibited. Please
reply to the sender that you have received the message in error, and then
please delete it. Thank you.

 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Flex 2b2: TitleWindow & Cairngorm

2006-04-19 Thread Valy Sivec



I tried to dispatch an event registered with the Cairngorm controller from a titlewindow but without much luck.The following code doesn't work used from the TitleWindow but works when called from the main panel that creates the TitleWindow.  // dispatch event  var evnt : SaveIndividualEvent = new SaveIndividualEvent(model._individual);  dispatchEvent( evnt );The event is registered with the controller just fine but it looks that cannot dispatch the event from the TitleWindow. Am I missing something here?. Had the same scenario in Flex 1.5 and didn't have any issue with it.Any suggestions?Thanks,Valy
		How low will we go? Check out Yahoo! Messenger’s low  PC-to-Phone call rates.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Components do not respond to Click event

2006-04-19 Thread Gordon Smith



Flex 1.X or Flex 2? If Flex 2, which Beta?

If this is a problem in Flex Beta 2, can you please post some code that
demonstrates the problem?

Does it happen only when the button you click does some navigation that
causes that button to go away and be replaced with another, possibly
identical-looking, button which is now under the mouse?

- Gordon


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of azhofeling
Sent: Wednesday, April 19, 2006 11:05 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Components do not respond to Click event

I have noticed that when using buttons to control navigation (i.e. 
BACK, NEXT, FINISH, etc) the buttons will not respond to repeated click 
events without first moving the mouse. This was resolved with the 
trackAsMenu attribute set to true. However, I also observe this same 
behavior with the Date Picker and ComboBoxes in Tab Navigator and 
Accordion containers. Unfortunately, trackAsMenu does not seem to fix 
the problem with these components. 

Has anyone else experienced and solved this? Having to click the Date 
Picker three times while moving the mouse between the second and third 
click would make the UI pretty much useless.

Thank You,
Troy Hofeling





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Components do not respond to Click event

2006-04-19 Thread JesterXL



Assuming Flex 1.5 as this was fixed in 2 I hear.  Hack is to call this 
method twice after a click event:

mx.events.LowLevelEvents.onMouseMove();
mx.events.LowLevelEvents.onMouseMove();

That'll update the mouse position and hopefully update those who care.  If 
this doesn't fix your problem, let us know.

- Original Message - 
From: "azhofeling" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, April 19, 2006 2:04 PM
Subject: [flexcoders] Components do not respond to Click event


I have noticed that when using buttons to control navigation (i.e.
BACK, NEXT, FINISH, etc) the buttons will not respond to repeated click
events without first moving the mouse. This was resolved with the
trackAsMenu attribute set to true. However, I also observe this same
behavior with the Date Picker and ComboBoxes in Tab Navigator and
Accordion containers. Unfortunately, trackAsMenu does not seem to fix
the problem with these components.

Has anyone else experienced and solved this? Having to click the Date
Picker three times while moving the mouse between the second and third
click would make the UI pretty much useless.

Thank You,
Troy Hofeling





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












RE: [flexcoders] Flex2b2: Question about controls and mouse events

2006-04-19 Thread Gordon Smith










This is a bug and should be fixed in Beta
3.

 

- Gordon

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tobias Patton
Sent: Wednesday, April 19, 2006
10:50 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex2b2:
Question about controls and mouse events



 

Hello List;

 

One of the panels in my appliction has a
check box immediately to the left of a text input field. I noticed that when I
would click and drag (right to left) to select all the text in the text input,
sometimes the value of the check box would change. It turns out that to change
the value of the check box, all that is required is that a mouse-up event occur
with the mouse above the control. I was a bit sloppy with my drag select, and
was releasing the mouse beyond the left bounday of the text input, over the
check box control, and thereby changing its value.

 

Is this behavior by design? In every UI
framework I’ve worked with, both Windows and Macintosh, for a control to
change its value there must be a mouse down within the control’s click
region, followed by a mouse-up also in the click region. This allows the user
to change his mind. If the user presses the mouse button over the control, he
can move the pointer away from the control before releasing the button to avoid
activating the control. In Flex 2b2, this is not the case. This same sequence
of events activates the control. Also, in Flex 2b2, pressing the mouse button
when the pointer is not over the control, then moving the pointer over the
control before releasing the button changes the control’s value (as in
the example above). 

 

Am I the only one that thinks this
behavior is non standard, and perhaps a bit unintuitive the the typical user?

 

Here’s a small application that
demonstrates what I’m describing.

 





   
xmlns:mx="http://www.adobe.com/2006/mxml"

   
xmlns="*" 

   
layout="vertical">

   


   


   


   


 

   


   


   
mouseDown="EventHandler( event )"

   
mouseUp="EventHandler( event )"

   
buttonDown="EventHandler( event )"

   
click="EventHandler( event )"

   
valueCommit="EventHandler( event )"/>

   


   




 

Thanks.
Tobias.

Kodak Graphic Communications Canada Company

Tobias Patton | Software Developer | Tel: +1.604.451.2700
ext: 5148 | mailto:[EMAIL PROTECTED] | http://www.creo.com 

 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Components do not respond to Click event

2006-04-19 Thread azhofeling



I have noticed that when using buttons to control navigation (i.e. 
BACK, NEXT, FINISH, etc) the buttons will not respond to repeated click 
events without first moving the mouse. This was resolved with the 
trackAsMenu attribute set to true. However, I also observe this same 
behavior with the Date Picker and ComboBoxes in Tab Navigator and 
Accordion containers. Unfortunately, trackAsMenu does not seem to fix 
the problem with these components. 

Has anyone else experienced and solved this? Having to click the Date 
Picker three times while moving the mouse between the second and third 
click would make the UI pretty much useless.

Thank You,
Troy Hofeling









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Flex 2b2: [repost] Cairngorm SequenceCommand question

2006-04-19 Thread Tobias Patton










Hello list;

 

SequenceCommand contains the
executeNextCommand() method:

 

   
    public function executeNextCommand() : void

   
    { 

   
   var isSequenceCommand : Boolean = (
nextEvent != null );

   
   if( isSequenceCommand ) 

   
   { 

   
  dispatchEvent( nextEvent
); 

   
   } 

   
    }

 

I found that when executing this method in
the result handler of a SequenceCommand subclass, the FrontController’s
event handler was never invoked. I changed:

 

 
dispatchEvent( nextEvent ); 

 

to: 

 
Application.application.dispatchEvent( nextEvent ); 

 

And then the FrontController’s event
handler was invoked as expected. This makes sense to me, since the
SequenceCommand object was not part of the application’s display list,
the event would never bubble up to the application.

 

Has anyone come across this problem before?
Is there a different solution that doesn’t involve modifying the
Cairngorm source?

 

Thanks.

Tobias.

 

 

Kodak Graphic Communications Canada Company

Tobias Patton | Software Developer | Tel: +1.604.451.2700
ext: 5148 | mailto:[EMAIL PROTECTED] | http://www.creo.com 

 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread Carson Hager



The duplicate request problem is a known issue.  With Java implementations, we catch and ignore IOException. It's not optimal because we can't differentiate between the faulty player upload and an actual IO problem.

I remember there being some case sensitivity issue with file_io.swf. I want to say it's reference somewhere in mixed case and other places in lower case. I think we renamed it to lower case. If you're not using a Unix or Java web server, this likely won't matter but it was a problem with Tomcat.


Carson 



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Wednesday, April 19, 2006 10:28 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

Ok some info:

Just tried now with firefox since the only problem with it is the fact that cfm pages used for uploading files can't access authentication set by setCredentials:

Call from a cfc:
Request:

POST /flashservices/gateway?macromedia=rocks HTTP/1.1
Host: srv_desenvol
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.2) Gecko/20060308 Firefox/1.5.0.2
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Proxy-Connection: keep-alive
Cookie: CFID=2604; CFTOKEN=5b2143fe2d5264da-B30636F5-E7FB-56A4-4AD662DB629EC7FB; JSESSIONID=62308294b8863ef71442
Content-Type: application/x-amf
Content-Length: 303

Response:
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:13:54 GMT
X-Powered-By: ASP.NET
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:14:01 GMT
X-Powered-By: ASP.NET
Content-Type: application/x-amf
Content-Length: 31
 
When uploading the file (weird I got 2 requests a 400 responde and a 200 when I only make 1 request)
400 request: 
POST /pt/cofina/utils/upload/upload.cfm?id=B3237956-E7FB-56A4-49BBBF0C490FD672 HTTP/1.0
Accept: text/*
Content-Type: multipart/form-data; boundary=--Ef1ei4cH2Ij5Ij5gL6gL6GI3ei4GI3
User-Agent: Shockwave Flash
Host: srv_desenvol
Content-Length: 0
Proxy-Connection: Keep-Alive
Pragma: no-cache

400 response:
HTTP/1.1 400 HTTP method POST is not supported by this URL
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:13:54 GMT
X-Powered-By: ASP.NET
Content-Language: pt-PT

200 Request:
POST /pt/cofina/utils/upload/upload.cfm?id=B3237956-E7FB-56A4-49BBBF0C490FD672 HTTP/1.0
Accept: text/*
Content-Type: multipart/form-data; boundary=--Ef1ei4cH2Ij5Ij5gL6gL6GI3ei4GI3
User-Agent: Shockwave Flash
Host: srv_desenvol
Content-Length: 130385
Proxy-Connection: Keep-Alive
Pragma: no-cache

200 Response:
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:13:54 GMT
X-Powered-By: ASP.NET
Set-Cookie: CFID=2608;expires=Fri, 11-Apr-2036 17:13:55 GMT;path=/
Set-Cookie: CFTOKEN=4d13da091700b518-B324D1A1-E7FB-56A4-4695681993B38760;expires=Fri, 11-Apr-2036 17:13:55 GMT;path=/
Set-Cookie: JSESSIONID=62308d8c1a01629431d5;path=/
Set-Cookie: CFAUTHORIZATION_Distribuicao=;expires=Tue, 19-Apr-2005 17:13:55 GMT;path=/
Content-Type: text/html; charset=UTF-8

I can see that The session is different but I don't understand why. For uploading, I'm using the File_IO.swf.


João Fernandes
Dep. Informática - Área de Desenvolvimento
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: quarta-feira, 19 de Abril de 2006 18:19
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

Right...those other tools will work just fine. The headers are the key to everything here.  There are known issues in 8,0,22 that are the cause of some of the file upload strangeness. Those issues have been noted here in the past.


Carson 



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Wednesday, April 19, 2006 9:52 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

No problem Carson,

I'm only using http and relative paths for upload. I'll hardcode the full URL and see if the same behavior is confirmed. 

For the headers part, something like serviceCapture or Paros right?

Hope you'll recover soon :)


João Fernandes
Dep. Informática - Área de Desenvolv

RE: [flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Steven Webster





Works for me :)
 


  
  

  


  
  

Steven WebsterPractice Director (Rich 
Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs 
Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 
6108
m: +44 (0) 7917 428 947 [EMAIL PROTECTED] 
  
 

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Robert 
  ThompsonSent: 19 April 2006 18:26To: 
  flexcoders@yahoogroups.comSubject: [flexcoders] Is This Accurate 
  >> Cairngorm architectural framework in a word (well a few 
  words)
  Cairngorm is very interesting.  I've read the docs and 
  understand the purpose.Would it be fair to say that Cairngorm is 
  essentially the following:An 
  architectural framework (not app framework) that serves as sort of a "rudder" 
  (as you would find on a boat) for standard development patterns that are often 
  repeated over and over again from app to app, but far too often stray into 
  inconsistent territory.  Carnigorm provides a general direction in the 
  sea of architectural possibilities; and thus helps the overall development 
  community communicate their solutions better -- and thus have better standards 
  of practice; especially among B2B, Web Service Persistent 
  solutions.I'm just trying to make sure my overall 
  big picture is accurate myself.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex2b2: Question about controls and mouse events

2006-04-19 Thread Tobias Patton










Hello List;

 

One of the panels in my appliction has a
check box immediately to the left of a text input field. I noticed that when I
would click and drag (right to left) to select all the text in the text input,
sometimes the value of the check box would change. It turns out that to change
the value of the check box, all that is required is that a mouse-up event occur
with the mouse above the control. I was a bit sloppy with my drag select, and
was releasing the mouse beyond the left bounday of the text input, over the
check box control, and thereby changing its value.

 

Is this behavior by design? In every UI
framework I’ve worked with, both Windows and Macintosh, for a control to
change its value there must be a mouse down within the control’s click
region, followed by a mouse-up also in the click region. This allows the user
to change his mind. If the user presses the mouse button over the control, he
can move the pointer away from the control before releasing the button to avoid
activating the control. In Flex 2b2, this is not the case. This same sequence
of events activates the control. Also, in Flex 2b2, pressing the mouse button
when the pointer is not over the control, then moving the pointer over the
control before releasing the button changes the control’s value (as in
the example above). 

 

Am I the only one that thinks this
behavior is non standard, and perhaps a bit unintuitive the the typical user?

 

Here’s a small application that
demonstrates what I’m describing.

 





    xmlns:mx="http://www.adobe.com/2006/mxml"

    xmlns="*"


    layout="vertical">

    

    

    

    

 

    

    

    mouseDown="EventHandler(
event )"

    mouseUp="EventHandler(
event )"

    buttonDown="EventHandler(
event )"

    click="EventHandler(
event )"

    valueCommit="EventHandler(
event )"/>

    

    



 

Thanks.
Tobias.

Kodak Graphic Communications Canada Company

Tobias Patton | Software Developer | Tel: +1.604.451.2700
ext: 5148 | mailto:[EMAIL PROTECTED] | http://www.creo.com 

 









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] FB2 :: Tile MXML Component :: Not allowing to drag components in design

2006-04-19 Thread Michael Schmalle



Hey,

Is this a bug or just something that is not implemented yet?

I have created a mxml component that subclasses Tile. I am in design
view and flex builder will not allow me to drag in controls IE the
CheckBox.

If I add them in mxml code view and then switch to design view, they show up.

Peace, Mike-- What goes up, does come down.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread João Fernandes



Ok some info:

Just tried now with firefox since the only problem with it is the fact that cfm pages used for uploading files can't access authentication set by setCredentials:

Call from a cfc:
Request:

POST /flashservices/gateway?macromedia=rocks HTTP/1.1
Host: srv_desenvol
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.2) Gecko/20060308 Firefox/1.5.0.2
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Proxy-Connection: keep-alive
Cookie: CFID=2604; CFTOKEN=5b2143fe2d5264da-B30636F5-E7FB-56A4-4AD662DB629EC7FB; JSESSIONID=62308294b8863ef71442
Content-Type: application/x-amf
Content-Length: 303

Response:
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:13:54 GMT
X-Powered-By: ASP.NET
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:14:01 GMT
X-Powered-By: ASP.NET
Content-Type: application/x-amf
Content-Length: 31
 
When uploading the file (weird I got 2 requests a 400 responde and a 200 when I only make 1 request)
400 request: 
POST /pt/cofina/utils/upload/upload.cfm?id=B3237956-E7FB-56A4-49BBBF0C490FD672 HTTP/1.0
Accept: text/*
Content-Type: multipart/form-data; boundary=--Ef1ei4cH2Ij5Ij5gL6gL6GI3ei4GI3
User-Agent: Shockwave Flash
Host: srv_desenvol
Content-Length: 0
Proxy-Connection: Keep-Alive
Pragma: no-cache

400 response:
HTTP/1.1 400 HTTP method POST is not supported by this URL
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:13:54 GMT
X-Powered-By: ASP.NET
Content-Language: pt-PT

200 Request:
POST /pt/cofina/utils/upload/upload.cfm?id=B3237956-E7FB-56A4-49BBBF0C490FD672 HTTP/1.0
Accept: text/*
Content-Type: multipart/form-data; boundary=--Ef1ei4cH2Ij5Ij5gL6gL6GI3ei4GI3
User-Agent: Shockwave Flash
Host: srv_desenvol
Content-Length: 130385
Proxy-Connection: Keep-Alive
Pragma: no-cache

200 Response:
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Wed, 19 Apr 2006 17:13:54 GMT
X-Powered-By: ASP.NET
Set-Cookie: CFID=2608;expires=Fri, 11-Apr-2036 17:13:55 GMT;path=/
Set-Cookie: CFTOKEN=4d13da091700b518-B324D1A1-E7FB-56A4-4695681993B38760;expires=Fri, 11-Apr-2036 17:13:55 GMT;path=/
Set-Cookie: JSESSIONID=62308d8c1a01629431d5;path=/
Set-Cookie: CFAUTHORIZATION_Distribuicao=;expires=Tue, 19-Apr-2005 17:13:55 GMT;path=/
Content-Type: text/html; charset=UTF-8

I can see that The session is different but I don't understand why. For uploading, I'm using the File_IO.swf.


João Fernandes
Dep. Informática - Área de Desenvolvimento
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: quarta-feira, 19 de Abril de 2006 18:19
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

Right...those other tools will work just fine. The headers are the key to everything here.  There are known issues in 8,0,22 that are the cause of some of the file upload strangeness. Those issues have been noted here in the past.


Carson 



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Wednesday, April 19, 2006 9:52 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

No problem Carson,

I'm only using http and relative paths for upload. I'll hardcode the full URL and see if the same behavior is confirmed. 

For the headers part, something like serviceCapture or Paros right?

Hope you'll recover soon :)


João Fernandes
Dep. Informática - Área de Desenvolvimento Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: quarta-feira, 19 de Abril de 2006 17:36
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

João,

Apologies for the late response. I've been out sick.  If you're not using SSL, I would start by using something like tcptunnel or another http monitor to watch the traffic, in particular the headers.  We have seen this happen with file upload when using relative URLs or also when switching from http to https.  Using something like tcptunnel will tell you a trememndous amount allowing you to debug the headers which is where the session information will be stored. Let me know if you need some help getting tcptunnel up and running. It's a utility from Ap

[flexcoders] Is This Accurate >> Cairngorm architectural framework in a word (well a few words)

2006-04-19 Thread Robert Thompson



Cairngorm is very interesting.  I've read the docs and understand the purpose.Would it be fair to say that Cairngorm is essentially the following:An architectural framework (not app framework) that serves as sort of a "rudder" (as you would find on a boat) for standard development patterns that are often repeated over and over again from app to app, but far too often stray into inconsistent territory.  Carnigorm provides a general direction in the sea of architectural possibilities; and thus helps the overall development community communicate their solutions better -- and thus have better standards of practice; especially among B2B, Web Service Persistent solutions.I'm just trying to make sure my overall big picture is accurate myself.Stanislav Zayarsky <[EMAIL PROTECTED]> wrote:Actually I think that this two frameworks almost the same. The same patterns, with very little difference. By the way ViewLocator is bad practice.  So you can try Cairngorm, I think you will get more support here with this framework.  Best regards Stanislav  On 4/19/06, JesterXL <[EMAIL PROTECTED]> wrote: > If you are coming with Flash, stick with ARP.  If you want to learn > something new, try Cairngorm as it has a VeiwLocator.  Most Flex developers > utilize Cairngorn, but both know what a Command, Delegate, ServiceLocator, > and ModelLocator is so the lingo is very similiar since they have a lot in > common. > > - Original Message -
 > From: "arieltools" <[EMAIL PROTECTED]> > To:  > Sent: Wednesday, April 19, 2006 9:11 AM > Subject: [flexcoders] Flex framework: ARP, Cairngorm... Which to use? > > > Arp? Cairngorm? ...? > > A little of you light on this matter would be appreciated. > > I've been using ARP for a while with Flash projects. I've read that > migrating would be as easy as change the ArpForms to MXML forms. So it > sound very promising. > > By the other hand, I've heard Cairngorm is more wide-spread between > programmers. > > The thing is I think I have to decide now wich to use, as I will be > programming a new RIA on Flex and would like to ensure it's quality > from the begginning :) > > Thanks! > > > > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > Yahoo! Groups Links > > > > > > > > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com > Yahoo! Groups Links > > > > > > > 
	
		Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread Carson Hager



Right...those other tools will work just fine. The headers are the key to everything here.  There are known issues in 8,0,22 that are the cause of some of the file upload strangeness. Those issues have been noted here in the past.


Carson 



 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Wednesday, April 19, 2006 9:52 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

No problem Carson,

I'm only using http and relative paths for upload. I'll hardcode the full URL and see if the same behavior is confirmed. 

For the headers part, something like serviceCapture or Paros right?

Hope you'll recover soon :)


João Fernandes
Dep. Informática - Área de Desenvolvimento
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: quarta-feira, 19 de Abril de 2006 17:36
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

João,

Apologies for the late response. I've been out sick.  If you're not using SSL, I would start by using something like tcptunnel or another http monitor to watch the traffic, in particular the headers.  We have seen this happen with file upload when using relative URLs or also when switching from http to https.  Using something like tcptunnel will tell you a trememndous amount allowing you to debug the headers which is where the session information will be stored. Let me know if you need some help getting tcptunnel up and running. It's a utility from Apache SOAP.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Tuesday, April 18, 2006 3:51 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

Carson,

It's even worse. I'll try to make it clear:

Login with a flex form
Use setcredentials inside my delegate to my AuthenticationRO.
Use onRequestStart to handle 

After that:

1) open a common.cfm page to see if user is authenticated
2) post files from within flex
3) call from Flex other CFCs using roles.

In FF:
1) It shows user credentials with no problem.
2) Doesn't work since it creates a new session.
3) It works perfectly as long I use the same endpoint (which is ok).

In IE:
1) Doesn't show user credentials
2) Doesn't work since 1) fails.
3) Doesn't work if I set only credentials for my authentication.cfc. If I set for all my RO, it works. 

When using setCredentials to all my RO I can see this weird behavior:
    From FF - It goes through 
    From IE - It goes through 


    

João Fernandes
Dep. Informática - Área de Desenvolvimento Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: segunda-feira, 17 de Abril de 2006 19:27
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

This is definitely an FFX issue. I'm not sure if it happens across all versions but I know it was broken with 1.5.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Monday, April 17, 2006 10:55 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication


Indeed,

Firefox 1.5.0.2, I'm so used to validate against IE for all problems that might happen that I forgot to check this time if it was a Firefox problem. Is this a known issue?

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Carson Hager
Sent: Mon 17-Apr-06 6:08 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication
 
Is this FireFox 1.5?
 
 
Carson

 
  
Carson Hager
Cynergy Systems, Inc. 
http://www.cynergysystems.com   
  
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466 
  

RE: [flexcoders] [F2B2] Newbie question about styling a nested panel

2006-04-19 Thread Mark Lapasa



Thx Gordon,

>From what you've said, I think I will break the nesting relationship and do
something along the lines of...




- inner will no longer be relative to outer
- outer and inner will have to be absolute in coordinates.
- inner will overlay on top of outer.



-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Gordon Smith
Sent: Wednesday, April 19, 2006 12:20 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [F2B2] Newbie question about styling a nested
panel


If you get back the inner Panel's alpha, it will be 1, it isn't getting
overridden. But the alpha of a parent determines a transparency not only
for it but for all of its children; this is the Player handles many
properties in a hierarchy of DisplayObjects.

If you had alpha="0.5" on both, the inner Panel would effectively be at
alpha="0.25". The player would first render the graphics of the inner
Panel into the outer Panel at half transparency, making the colors look
washed out, and then render the combined graphics to the outer Panel's
parent, again at half transparency, making the inner Panel look even
more washed out.

It's similar to how visible works. Suppose the inner Panel had
visible="true" but the outer panel had visible="false". You wouldn't see
either one.

And of course, if you specify x="100" on both, the inner Panel is at x =
200 because coordinates are parent-relative. Basically, alphas are
parent-relative too.

- Gordon

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mark Lapasa
Sent: Wednesday, April 19, 2006 7:01 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [F2B2] Newbie question about styling a nested
panel

I have an outer panel and an inner panel.





The problem is that the inner Panel's styling properties are being
overrided
by the outer most parent eventhough I explicitly define them. Am I wrong
in
thinking inner components in-line should take precendence over itself?

Thx




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread João Fernandes



No problem Carson,

I'm only using http and relative paths for upload. I'll hardcode the full URL and see if the same behavior is confirmed. 

For the headers part, something like serviceCapture or Paros right?

Hope you'll recover soon :)


João Fernandes
Dep. Informática - Área de Desenvolvimento
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: quarta-feira, 19 de Abril de 2006 17:36
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

João,

Apologies for the late response. I've been out sick.  If you're not using SSL, I would start by using something like tcptunnel or another http monitor to watch the traffic, in particular the headers.  We have seen this happen with file upload when using relative URLs or also when switching from http to https.  Using something like tcptunnel will tell you a trememndous amount allowing you to debug the headers which is where the session information will be stored. Let me know if you need some help getting tcptunnel up and running. It's a utility from Apache SOAP.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Tuesday, April 18, 2006 3:51 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

Carson,

It's even worse. I'll try to make it clear:

Login with a flex form
Use setcredentials inside my delegate to my AuthenticationRO.
Use onRequestStart to handle 

After that:

1) open a common.cfm page to see if user is authenticated
2) post files from within flex
3) call from Flex other CFCs using roles.

In FF:
1) It shows user credentials with no problem.
2) Doesn't work since it creates a new session.
3) It works perfectly as long I use the same endpoint (which is ok).

In IE:
1) Doesn't show user credentials
2) Doesn't work since 1) fails.
3) Doesn't work if I set only credentials for my authentication.cfc. If I set for all my RO, it works. 

When using setCredentials to all my RO I can see this weird behavior:
    From FF - It goes through 
    From IE - It goes through 


    

João Fernandes
Dep. Informática - Área de Desenvolvimento Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: segunda-feira, 17 de Abril de 2006 19:27
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

This is definitely an FFX issue. I'm not sure if it happens across all versions but I know it was broken with 1.5.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Monday, April 17, 2006 10:55 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication


Indeed,

Firefox 1.5.0.2, I'm so used to validate against IE for all problems that might happen that I forgot to check this time if it was a Firefox problem. Is this a known issue?

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Carson Hager
Sent: Mon 17-Apr-06 6:08 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication
 
Is this FireFox 1.5?
 
 
Carson

 
  
Carson Hager
Cynergy Systems, Inc. 
http://www.cynergysystems.com   
  
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466 
  

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Monday, April 17, 2006 9:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication



Hi there,

 

I'm trying to protect my upload page using ColdFusion authentication but when using fileReference, it seems that a new session is created instead of using the current used by the App. 

 

I'm using Flex 1.5 integrated with ColdFusion 7. If I log in with Flex and access a cfm page, I can get the user name perfectly ( getauthuser() ) but when uploading with fileReference inside my Flex App, a new sessionID is

[flexcoders] BETA 2: Setting up a Data Services Project

2006-04-19 Thread Alexander Tsoukias



Can anyone help me setup a data services project? I can't seem to get 
the whole configuration right so I can use RO etc...

Please, anyone!

Thanks,
Alexander









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

2006-04-19 Thread Carson Hager



João,

Apologies for the late response. I've been out sick.  If you're not using SSL, I would start by using something like tcptunnel or another http monitor to watch the traffic, in particular the headers.  We have seen this happen with file upload when using relative URLs or also when switching from http to https.  Using something like tcptunnel will tell you a trememndous amount allowing you to debug the headers which is where the session information will be stored. Let me know if you need some help getting tcptunnel up and running. It's a utility from Apache SOAP.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Tuesday, April 18, 2006 3:51 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

Carson,

It's even worse. I'll try to make it clear:

Login with a flex form
Use setcredentials inside my delegate to my AuthenticationRO.
Use onRequestStart to handle 

After that:

1) open a common.cfm page to see if user is authenticated
2) post files from within flex
3) call from Flex other CFCs using roles.

In FF:
1) It shows user credentials with no problem.
2) Doesn't work since it creates a new session.
3) It works perfectly as long I use the same endpoint (which is ok).

In IE:
1) Doesn't show user credentials
2) Doesn't work since 1) fails.
3) Doesn't work if I set only credentials for my authentication.cfc. If I set for all my RO, it works. 

When using setCredentials to all my RO I can see this weird behavior:
    From FF - It goes through 
    From IE - It goes through 


    

João Fernandes
Dep. Informática - Área de Desenvolvimento
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager
Sent: segunda-feira, 17 de Abril de 2006 19:27
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication

This is definitely an FFX issue. I'm not sure if it happens across all versions but I know it was broken with 1.5.


Carson


 
Carson Hager
Cynergy Systems, Inc.
http://www.cynergysystems.com
 
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466
 


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Monday, April 17, 2006 10:55 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication


Indeed,

Firefox 1.5.0.2, I'm so used to validate against IE for all problems that might happen that I forgot to check this time if it was a Firefox problem. Is this a known issue?

João Fernandes

-Original Message-
From: flexcoders@yahoogroups.com on behalf of Carson Hager
Sent: Mon 17-Apr-06 6:08 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication
 
Is this FireFox 1.5?
 
 
Carson

 
  
Carson Hager
Cynergy Systems, Inc. 
http://www.cynergysystems.com   
  
Email:  [EMAIL PROTECTED]
Office:  866-CYNERGY
Mobile: 1.703.489.6466 
  

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Fernandes
Sent: Monday, April 17, 2006 9:54 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Flex 1.5] File Upload and ColdFusion authentication



Hi there,

 

I'm trying to protect my upload page using ColdFusion authentication but when using fileReference, it seems that a new session is created instead of using the current used by the App. 

 

I'm using Flex 1.5 integrated with ColdFusion 7. If I log in with Flex and access a cfm page, I can get the user name perfectly ( getauthuser() ) but when uploading with fileReference inside my Flex App, a new sessionID is generated for that request.

 

Any Ideas how to solve this?

 

Thanks, 

 

João Fernandes
Dep. Informática - Área de Desenvolvimento Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]  

 



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 





YAHOO! GROUPS LINKS 


  
*   Visit your group "flexcoders  " on the web.
    
*   To unsubscribe from this group, send an email to:
   [EMAIL PROTECTED]  

RE: [flexcoders] [F2B2] Newbie question about styling a nested panel

2006-04-19 Thread Gordon Smith



If you get back the inner Panel's alpha, it will be 1, it isn't getting
overridden. But the alpha of a parent determines a transparency not only
for it but for all of its children; this is the Player handles many
properties in a hierarchy of DisplayObjects.

If you had alpha="0.5" on both, the inner Panel would effectively be at
alpha="0.25". The player would first render the graphics of the inner
Panel into the outer Panel at half transparency, making the colors look
washed out, and then render the combined graphics to the outer Panel's
parent, again at half transparency, making the inner Panel look even
more washed out.

It's similar to how visible works. Suppose the inner Panel had
visible="true" but the outer panel had visible="false". You wouldn't see
either one.

And of course, if you specify x="100" on both, the inner Panel is at x =
200 because coordinates are parent-relative. Basically, alphas are
parent-relative too.

- Gordon

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mark Lapasa
Sent: Wednesday, April 19, 2006 7:01 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [F2B2] Newbie question about styling a nested
panel

I have an outer panel and an inner panel.





The problem is that the inner Panel's styling properties are being
overrided
by the outer most parent eventhough I explicitly define them. Am I wrong
in
thinking inner components in-line should take precendence over itself?

Thx




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] FDS - Problem configurating message destinations

2006-04-19 Thread Nirav Mehta



Hi,

This may not be relevant, but it's something we struggled with FDS so I 
will share.

We had CF running on the machine, setup FDS and the built in JRun 
server. Made all the changes to the .xml files.

The java-dao examples worked well, but when we moved to CF, it started 
giving weird problems.

Specifically:

'Error invoking fill method flex.data.adapters.javaadapter$fillmethod
exception is : java.socket exception: software cause connection abort: 
socket write error'

And this was because of some unmarshaling exception.

We went beating around the bush for four days.

Then figured that the problem was because we installed FDS in 
"C:\Program Files\Adobe\Flex Data Service" folder, instead of the 
default "c:\fds2". Looks like it could not handle the spaces in the path.

When we moved the installation to the default folder, it started working.

:)

:Nirav






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread Benoit Hediard



Sorry, I don't think that getMetaData() is going to be useful in
Application.cfc.
It will only gives you info on your current Application.cfc...

Since, the remote object call is a request to the /flex2gateway servlet,
this is logical that cgi.SCRIPT_NAME=/flex2gateway.
So you can't use the cgi informations...

Have you tried to access the java page context object?
Ex. : getPageContext().getRequest();

You might find some info... (not tested)

Benoit Hediard 

-Message d'origine-
De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
part de sn197412
Envoyé : mercredi 19 avril 2006 15:36
À : flexcoders@yahoogroups.com
Objet : [flexcoders] Re: [Flex 2.0] How can get CFC information that is
accessed via RemoteObject??

Hello.

Thank you for information.

"getMetaData" needs a agrument = object.
What should I set for the argument at Application.cfc??

-- Shigeru ( http://Shigeru-Nakagaki.com )

--- In flexcoders@yahoogroups.com, "Benoit Hediard" <[EMAIL PROTECTED]> wrote:
>
> In your RemoteObject/CFC, you should use getMetaData() to get all the 
> required informations:
> http://livedocs.macromedia.com/coldfusion/7/htmldocs/0488.htm
> 
> Benoit Hediard
> 
> -Message d'origine-
> De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
De la
> part de João Fernandes
> Envoyé : mercredi 19 avril 2006 14:00
> À : flexcoders@yahoogroups.com
> Objet : RE: [flexcoders] Re: [Flex 2.0] How can get CFC information
that is
> accessed via RemoteObject??
> 
> Well, that variable is available with the correct CFC name.
> I just tested in onRequest and I get the path to the CFC. 
> 
> Don't you?
> 
> João Fernandes
> Dep. Informática - Área de Desenvolvimento Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351)
213 185
> 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
> On Behalf Of sn197412
> Sent: quarta-feira, 19 de Abril de 2006 12:29
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: [Flex 2.0] How can get CFC information that 
> is accessed via RemoteObject??
> 
> Hello and thank you for replay.
> 
> I want to know which CFC called via RemoteObject at Application.cfc.
> Like CGI.SCRIPT_NAME.
> 
> --Shigeru (http://Shigeru-Nakagaki.com)
> 
> --- In flexcoders@yahoogroups.com, João Fernandes 
> wrote:
> >
> > What kind of information are you looking for?
> > 
> > João Fernandes
> > Dep. Informática - Área de Desenvolvimento Cofina media
> > 
> > Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351)
> > 213 185 200 . Fax (+351) 213 540 370 joaofernandes@
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
> [mailto:[EMAIL PROTECTED] On Behalf Of sn197412
> > Sent: quarta-feira, 19 de Abril de 2006 4:45
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] [Flex 2.0] How can get CFC information that
> is accessed via RemoteObject??
> > 
> > Hi.
> > 
> > I have a question about ColdFusion with RemoteObject of Flex 2.0.
> > When I dump CGI information that is accessed via RemoteObject,
> dumped information is "flex2gateway" information.
> > It's not CFC information.
> > 
> > How can get CFC information that is accessed via RemoteObject??
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: http://www.mail-archive.com/flexcoders%
> 40yahoogroups.com
> > Yahoo! Groups Links
> >
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread Steven Webster



Oh man, I write a 6 page article series and still people go on and on
and on about ViewLocators :)  We innovated the ModelLocator pattern in
Cairngorm, and have done our best to communicate the practices around
using the ModelLocator, over ViewLocator (a relic from our Flash RIA
days).

Cairngorm and ARP are both implementations of the same design patterns;
so the approach in terms of breaking down your application's technical
architecture over a microarchitecture will be very similar.  You'll
start thinking in terms of all the same concepts, you'll approach your
application development the same way.  The frameworks are more similar
than different, imho.

We took a very strategic decision with Cairngorm, only to support the
Flex framework; the framework started life in the Flash world, but we
believed that Flex would become the defacto technology for building RIAs
of any complexity that merits a microarchitecture, and so have made
conscious decision not to support back to Flash or any other Flash
platform technologies.  In that way, we can focus on leveraging the Flex
framework without concering ourselves deeply with how this translates to
the non-Flex world.  We do have developers using Cairngorm on Flash
projects - but that's not the expected use-case.

There's a 6-page article series on Cairngorm on Macromedia Devnet,
starting here:

http://www.macromedia.com/devnet/flex/articles/cairngorm_pt1.html

We'll continue to make these articles available to you through devnet,
and through blogs, to enable you to be successful in building more
complex RIAs upon this architecture, and to guide you in how we think
the architecture fits with new features of the Flex framework, be that
States, Internationalisation, Flex Data Services, etc.

If you follow that article series, you'll be ready in a few hours to
start building RIAs today, with Flex 2 and ActionScript 3.0, on
Cairngorm.  As we start to move through the final betas, and into
release of Flex 2.0, a number of us within Adobe Consulting are
absolutely committed and ready to ship the community updated versions of
Cairngorm as required - we're using it on a significant number of our
own Flex 2.0 projects here, and are a step ahead of the public beta
programs that you have access to.

There's a huge number of people on the flexcoders list successfully
using Cairngorm; so once you have more specific questions, I'm sure
we'll be able to help you in your application development.

Good luck !

Best,

Steven

--
Steven Webster
Practice Director (Rich Internet Applications)
Adobe Consulting
Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
p: +44 (0) 131 338 6108
m: +44 (0) 7917 428 947 
[EMAIL PROTECTED] 


> On 4/19/06, JesterXL <[EMAIL PROTECTED]> wrote:
> > If you are coming with Flash, stick with ARP.  If you want to learn 
> > something new, try Cairngorm as it has a VeiwLocator.  Most Flex 
> > developers utilize Cairngorn, but both know what a Command, 
> Delegate, 
> > ServiceLocator, and ModelLocator is so the lingo is very similiar 
> > since they have a lot in common.
> >
> > - Original Message -
> > From: "arieltools" <[EMAIL PROTECTED]>
> > To: 
> > Sent: Wednesday, April 19, 2006 9:11 AM
> > Subject: [flexcoders] Flex framework: ARP, Cairngorm... 
> Which to use?
> >
> >
> > Arp? Cairngorm? ...?
> >
> > A little of you light on this matter would be appreciated.
> >
> > I've been using ARP for a while with Flash projects. I've read that 
> > migrating would be as easy as change the ArpForms to MXML 
> forms. So it 
> > sound very promising.
> >
> > By the other hand, I've heard Cairngorm is more wide-spread between 
> > programmers.
> >
> > The thing is I think I have to decide now wich to use, as I will be 
> > programming a new RIA on Flex and would like to ensure it's quality 
> > from the begginning :)
> >
> > Thanks!
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  

[flexcoders] Flex hangs when server times out session

2006-04-19 Thread jfournet



My flex interface hangs when the jboss server automatically times out 
the session after 30min of being idle.   How do I detect this and 
create a new session so that I can automatically send the user to the 
login screen again.

Thanks,
Brent










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] The 'correct' cairngorm class syntax?

2006-04-19 Thread Rick Schmitty



Hello, quick and easy (hopefully) question

I've seen some variations on defining a class for a file in
com/mycompany/myapp/vo


import org.nevis.cairngorm.vo.ValueObject;

public class myVO implements ValueObject
or
public class myVO implements org.nevis.cairngorm.vo.ValueObject

also I think in 1.5 you would do

public class com.mycompany.myapp.vo.myVO implements [either long or
short ValueObject as above]

Which is the correct/proper to use?






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: Can't use RemoteObject on HTTPS ONLY Server?

2006-04-19 Thread Steven Toth



Thanks for the notes.  I wasn't aware of the fact that you need to 
specify the context root on the compiler.  I assumed (I know it's not 
good to assume) that whatever was in the config files in WEB-INF/flex 
directory of the web app would be loaded and used at runtime.  I 
guess it's based on experiences with other languages/applications.    

You're summary of the configuration is correct.  I misspoke of JMS 
messages, these are the Command and Remoting Messages, my apologies.  

I already had the log level turned up, and I do see the Command and 
Remoting Messages over HTTP, but only one of them over HTTPS (I'm not 
see the message with the data for the objects being passed back and 
forth).  I will re-run a test and capture the sets of messages over 
HTTP and HTTPS and post them here later tonight.  

Sorry if I'm not articulating things exactly right, I'm new to Flex 
and learning as I go.  Thanks again for all your help.  


--- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> 
wrote:
>
> Note that for mxmlc you can provide the context root on the command 
line
> with --context.root. Flex Builder needs to make this a little more
> obvious for FDS apps.
> 
> Note that you don't _have_ to compile in configuration information, 
but
> if you didn't then you would instead have to programmatically create
> your own Channel instance(s) and ensure the channel-id and path info
> match the channel endpoint definitions on the server, add them to a
> ChannelSet and then set this ChannelSet instance on the client
> RemoteObject instance (i.e. through the channelSet:ChannelSet 
property).
> When getting started it should be easier to just point to a
> configuration file and have the client create all of this for you so
> that it matches the server...
> 
> So, to repeat your setup to you, you have :
> 
> Flex2 App --> SecureAMFChannel over HTTPS --> Apache with Connector 
to
> JRun4 --> FDS 2 Web App
> 
> 
> Now, your mention of JMS in this setup confuses me from your 
original
> post... are you using the JMSAdapter on the MessagingService, or 
perhaps
> trying to do this yourself from RemotingService, or am I missing 
how JMS
> is involved somewhere else? I'm not familiar with JRun4 connectors 
and
> Apache nor the JRunProxyService but I know of others who are... 
However,
> if you're saying that it works over normal HTTP based AMFChannel 
(i.e.
> non-secure) then something beyond FDS seems wrong.
> 
> Can you turn on debug level logging in
> /WEB-INF/flex/flex-enterprise-services.xml and ensure the Endpoint.*
> category is being watched and look out for both CommandMessage
> request/response confirming the channel is connected and then the
> AsyncMessage or RemotingMessage being sent to whatever service is
> managing your destination and see whether all of the information
> arrived?
> 
> 
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
> Behalf Of Steven Toth
> Sent: Tuesday, April 18, 2006 9:44 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Can't use RemoteObject on HTTPS ONLY 
Server?
> 
> The SWF is also loaded over HTTPS, the same domain as the url for 
the
> secure amf endpoint.  One part of the problem was that I didn't 
know the
> configuration files get compiled into the SWF (that still baffles 
me why
> you'd compile in configuration files).  Once I recompiled with the
> updated config files it started attempting to access the secure amf
> endpoint.  However, I had to change the config file to hardcode the
> context root - it was not interpreting the {context.root} in the
> endpoint definition. I found this out by seeing requests for
> //messagebroker/amfsecure in the Apache log. 
> 
> After that change it hits the secure amf endpoint, but it is still 
not
> working.  When I run over a non-secure amf endpoint I see the JMS
> message in the server console window with the Value objects that are
> being sent over the wire.  However, when I run over the secure amf
> endpoint I only see the JMS messages, no data.  I'm guess something 
is
> not configured correctly on Apache, JRUN, Flex or all the above.  
I'm
> running Apache 2, with the mod_jrun20.so connecting to JRun through 
the
> JRunProxyService.  I do not have the SSLService running on JRUN, 
and the
> JRunProxyService is not setup to run securely as it gave me issues 
about
> plain text connections when I tried.  However, when I request the 
SWF
> over HTTPS the request is routed to JRUN through Apache and it comes
> back successfully.  Also, I do see the JMS messages in the console
> window when accessing the secure amf endpoint, so it seems as 
though the
> Apache-JRun communication works for the HTTPS requests.  Am I 
missing
> sometihng?  I'm at a loss.  Thanks.
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "Peter Farland" 
> wrote:
> >
> > How are you loading your SWF? Are you loading it over HTTPS too? 
> Is it
> > on the same domain as the secure AMF endp

Re: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread Stanislav Zayarsky



Actually I think that this two frameworks almost the same. The same
patterns, with very little difference. By the way ViewLocator is bad
practice.

So you can try Cairngorm, I think you will get more support here with
this framework.

Best regards
Stanislav

On 4/19/06, JesterXL <[EMAIL PROTECTED]> wrote:
> If you are coming with Flash, stick with ARP.  If you want to learn
> something new, try Cairngorm as it has a VeiwLocator.  Most Flex developers
> utilize Cairngorn, but both know what a Command, Delegate, ServiceLocator,
> and ModelLocator is so the lingo is very similiar since they have a lot in
> common.
>
> - Original Message -
> From: "arieltools" <[EMAIL PROTECTED]>
> To: 
> Sent: Wednesday, April 19, 2006 9:11 AM
> Subject: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?
>
>
> Arp? Cairngorm? ...?
>
> A little of you light on this matter would be appreciated.
>
> I've been using ARP for a while with Flash projects. I've read that
> migrating would be as easy as change the ArpForms to MXML forms. So it
> sound very promising.
>
> By the other hand, I've heard Cairngorm is more wide-spread between
> programmers.
>
> The thing is I think I have to decide now wich to use, as I will be
> programming a new RIA on Flex and would like to ensure it's quality
> from the begginning :)
>
> Thanks!
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] [F2B2] Newbie question about styling a nested panel

2006-04-19 Thread Mark Lapasa



I have an outer panel and an inner panel.





The problem is that the inner Panel's styling properties are being overrided
by the outer most parent eventhough I explicitly define them. Am I wrong in
thinking inner components in-line should take precendence over itself?

Thx








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












[flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread arieltools



Arp? Cairngorm? ...?

A little of you light on this matter would be appreciated.

I've been using ARP for a while with Flash projects. I've read that
migrating would be as easy as change the ArpForms to MXML forms. So it
sound very promising.

By the other hand, I've heard Cairngorm is more wide-spread between
programmers.

The thing is I think I have to decide now wich to use, as I will be
programming a new RIA on Flex and would like to ensure it's quality
from the begginning :)

Thanks!









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread sn197412



Hello.

Thank you for information.

"getMetaData" needs a agrument = object.
What should I set for the argument at Application.cfc??

-- Shigeru ( http://Shigeru-Nakagaki.com )

--- In flexcoders@yahoogroups.com, "Benoit Hediard" <[EMAIL PROTECTED]> wrote:
>
> In your RemoteObject/CFC, you should use getMetaData() to get all the
> required informations:
> http://livedocs.macromedia.com/coldfusion/7/htmldocs/0488.htm
> 
> Benoit Hediard
> 
> -Message d'origine-
> De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
De la
> part de João Fernandes
> Envoyé : mercredi 19 avril 2006 14:00
> À : flexcoders@yahoogroups.com
> Objet : RE: [flexcoders] Re: [Flex 2.0] How can get CFC information
that is
> accessed via RemoteObject??
> 
> Well, that variable is available with the correct CFC name.
> I just tested in onRequest and I get the path to the CFC. 
> 
> Don't you?
> 
> João Fernandes
> Dep. Informática - Área de Desenvolvimento Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351)
213 185
> 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of sn197412
> Sent: quarta-feira, 19 de Abril de 2006 12:29
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: [Flex 2.0] How can get CFC information that is
> accessed via RemoteObject??
> 
> Hello and thank you for replay.
> 
> I want to know which CFC called via RemoteObject at Application.cfc.
> Like CGI.SCRIPT_NAME.
> 
> --Shigeru (http://Shigeru-Nakagaki.com)
> 
> --- In flexcoders@yahoogroups.com, João Fernandes 
> wrote:
> >
> > What kind of information are you looking for?
> > 
> > João Fernandes
> > Dep. Informática - Área de Desenvolvimento Cofina media
> > 
> > Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351)
> > 213 185 200 . Fax (+351) 213 540 370 joaofernandes@
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
> [mailto:[EMAIL PROTECTED] On Behalf Of sn197412
> > Sent: quarta-feira, 19 de Abril de 2006 4:45
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] [Flex 2.0] How can get CFC information that
> is accessed via RemoteObject??
> > 
> > Hi.
> > 
> > I have a question about ColdFusion with RemoteObject of Flex 2.0.
> > When I dump CGI information that is accessed via RemoteObject,
> dumped information is "flex2gateway" information.
> > It's not CFC information.
> > 
> > How can get CFC information that is accessed via RemoteObject??
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: http://www.mail-archive.com/flexcoders%
> 40yahoogroups.com
> > Yahoo! Groups Links
> >
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?

2006-04-19 Thread JesterXL



If you are coming with Flash, stick with ARP.  If you want to learn 
something new, try Cairngorm as it has a VeiwLocator.  Most Flex developers 
utilize Cairngorn, but both know what a Command, Delegate, ServiceLocator, 
and ModelLocator is so the lingo is very similiar since they have a lot in 
common.

- Original Message - 
From: "arieltools" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, April 19, 2006 9:11 AM
Subject: [flexcoders] Flex framework: ARP, Cairngorm... Which to use?


Arp? Cairngorm? ...?

A little of you light on this matter would be appreciated.

I've been using ARP for a while with Flash projects. I've read that
migrating would be as easy as change the ArpForms to MXML forms. So it
sound very promising.

By the other hand, I've heard Cairngorm is more wide-spread between
programmers.

The thing is I think I have to decide now wich to use, as I will be
programming a new RIA on Flex and would like to ensure it's quality
from the begginning :)

Thanks!





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links












--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread sn197412



Hello.

Actually we can't use onRequest method when CFC was accessed via
FlashRemoting.
And I tryed onRequestStart method, but I just got "flex2gateway"
information.

So, how should I??

-- Shigeru ( http://Shigeru-Nakagaki.com )

--- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]>
wrote:
>
> Well, that variable is available with the correct CFC name.
> I just tested in onRequest and I get the path to the CFC. 
> 
> Don't you?
> 
> João Fernandes
> Dep. Informática - Área de Desenvolvimento
> Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
> Tel (+351) 213 185 200 . Fax (+351) 213 540 370
> [EMAIL PROTECTED]
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of sn197412
> Sent: quarta-feira, 19 de Abril de 2006 12:29
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: [Flex 2.0] How can get CFC information
that is accessed via RemoteObject??
> 
> Hello and thank you for replay.
> 
> I want to know which CFC called via RemoteObject at Application.cfc.
> Like CGI.SCRIPT_NAME.
> 
> --Shigeru (http://Shigeru-Nakagaki.com)
> 
> --- In flexcoders@yahoogroups.com, João Fernandes 
> wrote:
> >
> > What kind of information are you looking for?
> > 
> > João Fernandes
> > Dep. Informática - Área de Desenvolvimento Cofina media
> > 
> > Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 
> > 213 185 200 . Fax (+351) 213 540 370 joaofernandes@
> > 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
> [mailto:[EMAIL PROTECTED] On Behalf Of sn197412
> > Sent: quarta-feira, 19 de Abril de 2006 4:45
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] [Flex 2.0] How can get CFC information that
> is accessed via RemoteObject??
> > 
> > Hi.
> > 
> > I have a question about ColdFusion with RemoteObject of Flex 2.0.
> > When I dump CGI information that is accessed via RemoteObject,
> dumped information is "flex2gateway" information.
> > It's not CFC information.
> > 
> > How can get CFC information that is accessed via RemoteObject??
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: http://www.mail-archive.com/flexcoders%
> 40yahoogroups.com
> > Yahoo! Groups Links
> >
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  












Re: [flexcoders] Re: Loading an SWC into Flex 2 Beta 2

2006-04-19 Thread JesterXL





Nope.  Understand that Flash Player 8 has a 
lot of bitmap API's that could work great for mapping applications; none of 
which were utilized in Yahoo Maps v1.  Combined with Flash Player 8.5's 
ability to close an active, open connection, and suddenly you have the 
opportunity to make Yahoo Maps really good.
 
So, my guess is based on what I've read via their 
job postings is they'll release a Flex 2 .SWC when Flex 2 is 
released.
 
- Original Message - 
From: judah 
To: flexcoders@yahoogroups.com 
Sent: Tuesday, April 18, 2006 9:57 PM
Subject: Re: [flexcoders] Re: Loading an SWC into Flex 2 Beta 
2
It sounds like you are saying they are making a Flex 2 loader 
that will load Flash 7, 8 and Flex 1.5 swfs. Is that what you 
mean?JudahJesterXL wrote: 
Agreed.  We all tried to actually create a Yahoo Maps SWF in Flash 8, and 
then load the SWF into a Flex 2 Loader (component or flash intrinsic class), 
but no dice.

They are making one though, so maybe if we bitch more, they'll make it come 
out faster!

- Original Message - 
From: "Harris Reynolds" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, April 18, 2006 12:56 PM
Subject: [flexcoders] Re: Loading an SWC into Flex 2 Beta 2


Thanks for the reply Jester... that stinks that things like the Yahoo
Maps component can not be imported into Flex 2.  I tried importing
the SWC directly *and* creating a new SWC with the MXP and obviously
didn't have any luck with either approach.  I am sure support from
Yahoo will be coming in the future, but it would be nice to have it
now!

Thanks man,

~harris

--- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote:
  
  It needs to be created & compiled in Flex 2 Beta 2.  Flex 1, Flex
1.5, Flash
  
  MX 2004, and Flash 8 SWC's will not work in Flex 2 Beta 2
projects.  That's
  
  because Flex 2 Beta 2 utilizes ActionScript 3 and the Flash Player
8.5
  
  whereas the others do not.

- Original Message - 
From: "Harris Reynolds" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, April 18, 2006 11:30 AM
Subject: [flexcoders] Loading an SWC into Flex 2 Beta 2


Has anyone had success importing a 3rd party SWC into a Flex 2 Beta
2
  
  project?  I have tried two different components and each time I get
the
  
  following error:

"unable to load SWC componentnamehere.swc: unknown element swc
found in
  
  componentPackage section in catalog.xml."

Does anything special need to be done to the SWC to make it
compatible
  
  with Flex 2?

thanks,

~harris









--
Flexcoders Mailing List
FAQ:
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  
  Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
  
  Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



  -- 
"Always bear in mind that your own resolution to succeed is more important than any one thing."

"You can have anything you want - if you want it badly enough. You can be anything you want to be, do anything you set out to accomplish if you hold to that desire with singleness of purpose." 

- Abraham Lincoln





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] FDS - Problem configurating message destinations

2006-04-19 Thread Thomas Rühl -akitogo-

hi folks,

i just started playing around with the flex data services a little and 
tried out the sample chat application that aou can find on the labs site 
- it is called 'Simple Chat Application'. However, I quickly ran into a 
problem regading the configuration of dewstinations and channels in the 
xx-services.xml file. It just didn't seem to work, the runtime compiler 
always tole ma, that the destination does not exist, in fact it did and 
yes, it was the right configuration file

So, alone with my pain, I decided to work it all over again, deinstalled 
all the stuff and started again from scratch. This time I choose to 
install the FDS as a JRun server instance, since I'm running a 
coldfusion j2ee-instance on the same machine. Now I don't get the 
compile error anymore, and the application shows me, how the message 
format ist, it is about to send. However, the message doesn't arrive on 
a second instance of the same application.

One more disturbing thing... what do I need the flex-admin package for? 
It doesn't seem to be able to configure anything, does it? Is it for 
monitoring only? Couldn't find any documentation on that, unfortunately. 
However, since the ladder installation, the flash-UI of flex-admin 
doesn't show any data. in the installation before, it did at least...

Help, anyone?


greetings, thomas





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Image size problem

2006-04-19 Thread rama satoskar
Hi everyone,
This is the first time i am posting a message here. So dont mind my
ignorance about the levels at which i can send messages out here.
I am trying to build small applications in flex2.0. I am facing a
problem with placing different sized images in containers. I want all
the images to be of the same size. Can i do that in flex 2.0? can i
control the size of the image files? Kindly guide me for  the same.
Moreover can anyone tell me the difference between Loader component and
Image cmponent.
Thanks,
Rama Satoskar.







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] FDS - Problem configurating message destinations

2006-04-19 Thread Thomas
hi folks,

i just started playing around with the flex data services a little and
tried out the sample chat application that aou can find on the labs
site - it is called 'Simple Chat Application'. However, I quickly ran
into a problem regading the configuration of dewstinations and
channels in the xx-services.xml file. It just didn't seem to work, the
runtime compiler always tole ma, that the destination does not exist,
in fact it did and yes, it was the right configuration file

So, alone with my pain, I decided to work it all over again,
deinstalled all the stuff and started again from scratch. This time I
choose to install the FDS as a JRun server instance, since I'm running
a coldfusion j2ee-instance on the same machine. Now I don't get the
compile error anymore, and the application shows me, how the message
format ist, it is about to send. However, the message doesn't arrive
on a second instance of the same application.

One more disturbing thing... what do I need the flex-admin package
for? It doesn't seem to be able to configure anything, does it? Is it
for monitoring only? Couldn't find any documentation on that,
unfortunately. However, since the ladder installation, the flash-UI of
flex-admin doesn't show any data. in the installation before, it did
at least...

Help, anyone?


greetings, thomas





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread Benoit Hediard
In your RemoteObject/CFC, you should use getMetaData() to get all the
required informations:
http://livedocs.macromedia.com/coldfusion/7/htmldocs/0488.htm

Benoit Hediard

-Message d'origine-
De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la
part de João Fernandes
Envoyé : mercredi 19 avril 2006 14:00
À : flexcoders@yahoogroups.com
Objet : RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is
accessed via RemoteObject??

Well, that variable is available with the correct CFC name.
I just tested in onRequest and I get the path to the CFC. 

Don't you?

João Fernandes
Dep. Informática - Área de Desenvolvimento Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185
200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of sn197412
Sent: quarta-feira, 19 de Abril de 2006 12:29
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: [Flex 2.0] How can get CFC information that is
accessed via RemoteObject??

Hello and thank you for replay.

I want to know which CFC called via RemoteObject at Application.cfc.
Like CGI.SCRIPT_NAME.

--Shigeru (http://Shigeru-Nakagaki.com)

--- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]>
wrote:
>
> What kind of information are you looking for?
> 
> João Fernandes
> Dep. Informática - Área de Desenvolvimento Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351)
> 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]
> 
> -Original Message-
> From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of sn197412
> Sent: quarta-feira, 19 de Abril de 2006 4:45
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] [Flex 2.0] How can get CFC information that
is accessed via RemoteObject??
> 
> Hi.
> 
> I have a question about ColdFusion with RemoteObject of Flex 2.0.
> When I dump CGI information that is accessed via RemoteObject,
dumped information is "flex2gateway" information.
> It's not CFC information.
> 
> How can get CFC information that is accessed via RemoteObject??
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
> Yahoo! Groups Links
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread João Fernandes
Well, that variable is available with the correct CFC name.
I just tested in onRequest and I get the path to the CFC. 

Don't you?

João Fernandes
Dep. Informática - Área de Desenvolvimento
Cofina media

Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
Tel (+351) 213 185 200 . Fax (+351) 213 540 370
[EMAIL PROTECTED]


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sn197412
Sent: quarta-feira, 19 de Abril de 2006 12:29
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: [Flex 2.0] How can get CFC information that is 
accessed via RemoteObject??

Hello and thank you for replay.

I want to know which CFC called via RemoteObject at Application.cfc.
Like CGI.SCRIPT_NAME.

--Shigeru (http://Shigeru-Nakagaki.com)

--- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]>
wrote:
>
> What kind of information are you looking for?
> 
> João Fernandes
> Dep. Informática - Área de Desenvolvimento Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 
> 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED]
> 
> -Original Message-
> From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of sn197412
> Sent: quarta-feira, 19 de Abril de 2006 4:45
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] [Flex 2.0] How can get CFC information that
is accessed via RemoteObject??
> 
> Hi.
> 
> I have a question about ColdFusion with RemoteObject of Flex 2.0.
> When I dump CGI information that is accessed via RemoteObject,
dumped information is "flex2gateway" information.
> It's not CFC information.
> 
> How can get CFC information that is accessed via RemoteObject??
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
> Yahoo! Groups Links
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Minimize button on panel title bar

2006-04-19 Thread B.Brey
Works like a charm, thank you!


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Dirk Eismann
Sent: woensdag 19 april 2006 13:08
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Minimize button on panel title bar


Sorry, hit that send button too early:

override protected function createChildren():void
{
  super.createChildren();
  button = new Button();
  b.width = 16;
  b.height = 16;
  titleBar.addChild(b);
}

to correctly position the button override the updateDisplayList() method
which will get called every time the Panel changes its size.

Dirk.

> -Original Message-
> From: Dirk Eismann 
> Sent: Wednesday, April 19, 2006 1:05 PM
> To: 'flexcoders@yahoogroups.com'
> Subject: RE: [flexcoders] Minimize button on panel title bar
> 
> Try to add the Button to the Panel's titleBar UIComponent 
> instead. This way you can still use includeInLayout = true 
> and the Button will work as expected. Just make sure to 
> explicitely set the width and height of the Button, otherwise 
> it won't be drawn inside the titleBar.
> 
> i.e. inside your Panel subclass:
> 
> override protected function createChildren():void
> 
> Dirk.
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
> > [mailto:[EMAIL PROTECTED] On Behalf Of B.Brey
> > Sent: Wednesday, April 19, 2006 12:32 PM
> > To: Flex
> > Subject: [flexcoders] Minimize button on panel title bar
> > 
> > I've managed to get a button positioned correctly on a panel using 
> > includeInLayout = false.
> > But it seems that there is something blocking events to the 
> button now 
> > (Button does not work). Does anyone have any ideas on how 
> to fix this?
> > 
> > 
> > with regards,
> > 
> > Bas
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Flex webservices framework

2006-04-19 Thread Jonas Windey










Hi,

 

I’m looking for the link I came across some weeks ago,
with a nice framework on using webservice classes in Flex 2.0 (I think it was
still the alpha version)

It provided some example classes that you could use to
simplify the events etc.

 

Anyone remembers this? Thanks for your help.

 

Jonas









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: [Flex 2.0] How can get CFC information that is accessed via RemoteObject??

2006-04-19 Thread sn197412
Hello and thank you for replay.

I want to know which CFC called via RemoteObject at Application.cfc.
Like CGI.SCRIPT_NAME.

--Shigeru (http://Shigeru-Nakagaki.com)

--- In flexcoders@yahoogroups.com, João Fernandes <[EMAIL PROTECTED]> 
wrote:
>
> What kind of information are you looking for?
> 
> João Fernandes
> Dep. Informática - Área de Desenvolvimento
> Cofina media
> 
> Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL
> Tel (+351) 213 185 200 . Fax (+351) 213 540 370
> [EMAIL PROTECTED]
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of sn197412
> Sent: quarta-feira, 19 de Abril de 2006 4:45
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] [Flex 2.0] How can get CFC information that 
is accessed via RemoteObject??
> 
> Hi.
> 
> I have a question about ColdFusion with RemoteObject of Flex 2.0.
> When I dump CGI information that is accessed via RemoteObject, 
dumped information is "flex2gateway" information.
> It's not CFC information.
> 
> How can get CFC information that is accessed via RemoteObject??
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
> Yahoo! Groups Links
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Could not resolve to a component implementation ??

2006-04-19 Thread bhaq1972
sorry its itemrenderer. flex2docs are out-of-date

--- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote:
>
> flex2? cellrenderer is now listItemRenderer
> --- In flexcoders@yahoogroups.com, Arnaud GARCIA  
> wrote:
> >
> > hi all,
> > 
> > Any Idea for this error:
> > Could not resolve  to a component 
> implementation ??
> > 
> > I use a simple datagrid
> > 
> > 
> > 
> >  headerText="Pourcentage">
> >ERROR >  
> > 
> >  
> > 
> >  label="{dataObject.PERCENT}" 
> > direction="right" />
> > 
> >   
> > 
> >   
> > 
> > 
> > many thanks for help,
> > 
> > Arnaud
> >
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Minimize button on panel title bar

2006-04-19 Thread Dirk Eismann
Sorry, hit that send button too early:

override protected function createChildren():void
{
  super.createChildren();
  button = new Button();
  b.width = 16;
  b.height = 16;
  titleBar.addChild(b);
}

to correctly position the button override the updateDisplayList() method
which will get called every time the Panel changes its size.

Dirk.

> -Original Message-
> From: Dirk Eismann 
> Sent: Wednesday, April 19, 2006 1:05 PM
> To: 'flexcoders@yahoogroups.com'
> Subject: RE: [flexcoders] Minimize button on panel title bar
> 
> Try to add the Button to the Panel's titleBar UIComponent 
> instead. This way you can still use includeInLayout = true 
> and the Button will work as expected. Just make sure to 
> explicitely set the width and height of the Button, otherwise 
> it won't be drawn inside the titleBar.
> 
> i.e. inside your Panel subclass:
> 
> override protected function createChildren():void
> 
> Dirk.
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com
> > [mailto:[EMAIL PROTECTED] On Behalf Of B.Brey
> > Sent: Wednesday, April 19, 2006 12:32 PM
> > To: Flex
> > Subject: [flexcoders] Minimize button on panel title bar
> > 
> > I've managed to get a button positioned correctly on a panel using 
> > includeInLayout = false.
> > But it seems that there is something blocking events to the 
> button now 
> > (Button does not work). Does anyone have any ideas on how 
> to fix this?
> > 
> > 
> > with regards,
> > 
> > Bas
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Minimize button on panel title bar

2006-04-19 Thread Dirk Eismann
Try to add the Button to the Panel's titleBar UIComponent instead. This
way you can still use includeInLayout = true and the Button will work as
expected. Just make sure to explicitely set the width and height of the
Button, otherwise it won't be drawn inside the titleBar.

i.e. inside your Panel subclass:

override protected function createChildren():void

Dirk.

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of B.Brey
> Sent: Wednesday, April 19, 2006 12:32 PM
> To: Flex
> Subject: [flexcoders] Minimize button on panel title bar
> 
> I've managed to get a button positioned correctly on a panel 
> using includeInLayout = false.
> But it seems that there is something blocking events to the 
> button now (Button does not work). Does anyone have any ideas 
> on how to fix this?
> 
> 
> with regards,
> 
> Bas
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Re: All the bunch of idiots at Adobe, please note!

2006-04-19 Thread Steven Webster
Guys,

I think everyone is pretty clear on this situation here, and the
community is almost unanimous in recognising that this thread was
inappropriate discussion.  It's not on the topic of flexcoders, so can I
please ask people that we move on from this thread and return to
"flexcoding".

Best wishes,

Steven
 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Marc Archuleta
> Sent: 19 April 2006 05:45
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Re: All the bunch of idiots at 
> Adobe, please note!
> 
> I have met John Bennett and have found him to be very 
> friendly and helpful. I personally know that he has gained 
> the respect of at least a few successful J2EE authors in my 
> community. I also know he is a very busy person who is 
> constantly traveling to meet with customers around the 
> country in addition to working closely with his colleagues. 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re[3]: [flexcoders] LoadMovie in mx:Loader swf

2006-04-19 Thread Andriy Panas
Hello Jonas,

Wednesday, April 19, 2006, 1:02:18 PM, you wrote:

> I'm loading an swf
> that's using loadMovie() to load an external jpg (if I can get this working,
> I can integrate our old tile-based zoomify component in flex)

OK, now your situation is more clear to me.

Waldo Smeets is an expert of my choice to unleash fully the topic
named "Using Flash MX 2004 authored SWF inside Flex 1.5 authored content"

  You can watch his Powerpoint presentation he gave at MAX 2005 on this
particular topic and download source files here:
http://www.waldosmeets.com/index.cfm?entryID=596



-- 
Best regards,
 Andriymailto:[EMAIL PROTECTED]



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Could not resolve to a component implementation ??

2006-04-19 Thread bhaq1972
flex2? cellrenderer is now listItemRenderer
--- In flexcoders@yahoogroups.com, Arnaud GARCIA <[EMAIL PROTECTED]> 
wrote:
>
> hi all,
> 
> Any Idea for this error:
> Could not resolve  to a component 
implementation ??
> 
> I use a simple datagrid
> 
> 
> 
> 
>ERROR >  
> 
>  
> 
>  direction="right" />
> 
>   
> 
>   
> 
> 
> many thanks for help,
> 
> Arnaud
>






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Minimize button on panel title bar

2006-04-19 Thread B.Brey
I've managed to get a button positioned correctly on a panel using
includeInLayout = false.
But it seems that there is something blocking events to the button now
(Button does not work). Does anyone have any ideas on how to fix this?


with regards,

Bas






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Could not resolve to a component implementation ??

2006-04-19 Thread Arnaud GARCIA
hi all,

Any Idea for this error:
Could not resolve  to a component implementation ??

I use a simple datagrid




   ERROR >  

 



  

  


many thanks for help,

Arnaud





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Re: All the bunch of idiots at Adobe, please note!

2006-04-19 Thread Marc Archuleta
I have met John Bennett and have found him to be very
friendly and helpful. I personally know that he has
gained the respect of at least a few successful J2EE
authors in my community. I also know he is a very busy
person who is constantly traveling to meet with
customers around the country in addition to working
closely with his colleagues. 

The only thing that I can possibly even begin to
imagine that would be the source of your malcontent
may be culturally related. John is from the east coast
and the culture of the east coast leans toward being
short and to the point. I know this cultural mannerism
can sometimes be frustrating for people who haven't
spent time on the east coast. However, busy people
working in the commercial market throughout the US can
be short when communicating. As a busy person, I
appreciate working with people who understand what I
am saying before I finish my sentence and can respond
succinctly. I have found that even when John was quick
and to the point, he was not short with me and he
still was very courteous.

My feedback is just one persons point of view and I
know that since I was not present in the meeting that
I cannot necessarily say exactly what happened, but I
hope this may help bring some perspective to the
situation. More importantly, I hope this feedback can
be helpful to those on the list who work with a wide
variety of people on a daily basis.

Sincerely,
Marc


--- Johannes Nel <[EMAIL PROTECTED]> wrote:

> i have worked with brian o'conner and several other
> adobe consulting
> developers (and some are still here) for a very
> large company. i have always
> found them extremely helpful, more than that,
> exceptionally helpful and open
> to new concepts. i think the way you have reacted is
> not only over the top
> but is extremely unprofessional. for all we know
> your code could have been
> horrible or great, you could have accidentally said
> "i am using viewhelper
> value objects". furthermore the review took place
> over breeze, hence you
> have no idea how it sounded on the other side. you
> should have kept this
> internal imo.
> 
> jpn.
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Senior Full-time position open at Yah oo! Maps (Santa Clara, CA)

2006-04-19 Thread Ryan Stewart


Sorry all, I replied to the wrong address.  It wasn't meant to go to the whole list.

 

-Ryan

From: Ryan Stewart[mailto:[EMAIL PROTECTED]Sent: Tuesday, April 18, 2006 12:28 AM To: flexcoders@yahoogroups.com;Subject: [flexcoders] Senior Full-time position open at Yahoo! Maps (Santa Clara, CA)

Hi Aaron, I posted this on my blog because I have a quick post about Yahoo Maps.  If you need me to take it down, just let me know.  Thanks!

 

Is there a link on the Yahoo Jobs site?

 

-RyanFrom: Aaron King[mailto:[EMAIL PROTECTED]Sent: Friday, April 14, 2006 5:25 PM -07:00To: flexcoders@yahoogroups.comSubject: [flexcoders] Senior Full-time position open at Yahoo! Maps (Santa Clara, CA)Hi all, Want to be part of one of the most used Flex Apps on the planet? Yahoo!Maps has another full-time position open. This position is for a Senior Developer who will be responsible fordevelopment on both our consumer facing application and our developer APIs.If you want to check out these projects, you can view them here:http://maps.yahoo.com/beta/index.php http://developer.yahoo.com/maps/index.html We're looking for a Senior developer with the following skills:-Demonstrated experience/expertise with AS2 and Flex 1.5-Firm understanding and appreciation of Application Architecture(Experience with Cairngorm or ARP is a huge plus!)-Strong foundation in design patterns (such as MVC) and overall good codingpractices.-Experience working in a team environment and using code management tools(such as CVS.)-Experience with AS3/Flex2 is a huge plus-Experience with unit testing is a huge plus-Experience with Ant is also a plusIf you're interested, send your resume and links to examples of your work to[EMAIL PROTECTED]Thanks!Aaron King[EMAIL PROTECTED]--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links<*> To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to:[EMAIL PROTECTED]<*> Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/ Organize. Communicate. Share. @ www.goowy.com





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  








Re: [flexcoders] Flex 2 Beta 2 Mouse Over Property

2006-04-19 Thread Faisal Abid
Thank You So Much Matt :)




Matt Chotin wrote:
> In your mx:states section I think it would be something like this.
>
> 
> ...
>  />
> 
>
> Matt
>
> -Original Message-
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Faisal Abid
> Sent: Monday, April 17, 2006 5:21 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Flex 2 Beta 2 Mouse Over Property
>
> Matt Chotin wrote:
> > You can use the mx.states.SetEventHandler to set the handler to null.
> >
> > -Original Message-
> > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
> On
> > Behalf Of Faisal Abid
> > Sent: Sunday, April 16, 2006 7:28 PM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Flex 2 Beta 2 Mouse Over Property
> >
> > How do i remove the mouseOver="' when I go to a diffrent state ,, like
> i
> >
> > have it grow on mouse over and then when i click it, it grows into
> full
> > form but when it is in its big form if i mouse the mouse it wil
> activate
> >
> > the mouseOver tag i have , How do i go about removing this in my new
> > state?
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> >
> >
> >
> > SPONSORED LINKS
> > Web site design development
> >
>  
> site+design+development&w2=Computer+software+development&w3=Software+des
> ign+and+development&w4=Macromedia+flex&w5=Software+development+best+prac
> tice&c=5&s=166&.sig=L-4QTvxB_quFDtMyhrQaHQ>
> >   Computer software development
> >
>  
> b+site+design+development&w2=Computer+software+development&w3=Software+d
> esign+and+development&w4=Macromedia+flex&w5=Software+development+best+pr
> actice&c=5&s=166&.sig=lvQjSRfQDfWudJSe1lLjHw>
> >   Software design and development
> >
>  
> Web+site+design+development&w2=Computer+software+development&w3=Software
> +design+and+development&w4=Macromedia+flex&w5=Software+development+best+
> practice&c=5&s=166&.sig=1pMBCdo3DsJbuU9AEmO1oQ>
> >
> > Macromedia flex
> >
>  
> development&w2=Computer+software+development&w3=Software+design+and+deve
> lopment&w4=Macromedia+flex&w5=Software+development+best+practice&c=5&s=1
> 66&.sig=OO6nPIrz7_EpZI36cYzBjw>
> >   Software development best practice
> >
>  
> w1=Web+site+design+development&w2=Computer+software+development&w3=Softw
> are+design+and+development&w4=Macromedia+flex&w5=Software+development+be
> st+practice&c=5&s=166&.sig=f89quyyulIDsnABLD6IXIw>
> >
> >
> >
> >
> 
> > YAHOO! GROUPS LINKS
> >
> > *  Visit your group "flexcoders
> >   " on the web.
> >   
> > *  To unsubscribe from this group, send an email to:
> >[EMAIL PROTECTED]
> >
> 
> >   
> > *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> >   Service .
> >
> >
> >
> 
> >
> Im just statrting to learn this , so how would i do this , like what
> will be the sample code in Flex 2.0 and why?
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
>
>
> 
> YAHOO! GROUPS LINKS
>
> *  Visit your group "flexcoders
>   " on the web.
>
> *  To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>   
>
> *  Your use of Yahoo

RE: RE: [flexcoders] LoadMovie in mx:Loader swf

2006-04-19 Thread Jonas Windey
I'm not loading the .jpg in the Loader or Image control, I'm loading an swf
that's using loadMovie() to load an external jpg (if I can get this working,
I can integrate our old tile-based zoomify component in flex)

Anyone else who has an idea?

-Original Message-
From: Andriy Panas [mailto:[EMAIL PROTECTED] 
Sent: dinsdag 18 april 2006 17:39
To: Jonas Windey
Subject: Fwd: RE: [flexcoders] LoadMovie in mx:Loader swf

Hi Jonas,

>Nope, that isn't working, I've tried the  control too, and I
tried
>putting the .jpg in the root, or in the bin folder, no difference...

   If all you see is a broken image icon, I am 90% sure that it the
path to the image is wrong.

   Is your image in JPG format?

   Send me your files to my email or send me a screenshot of your
file structure.


-- 
Best regards,
 Andriymailto:[EMAIL PROTECTED]




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




  1   2   >