[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-27 Thread gotgoose09
I found a workaround for this by Jeff Tapper:

Add this to your TitleWindow.
override public function localToContent(point:Point):Point {
  return point;
}

From:
http://groups.yahoo.com/group/flexcoders/message/45117;_ylc=X3oDMTM3bHA0a3YyBF9TAzk3MzU5NzE0BGdycElkAzEyMjg2MTY3BGdycHNwSWQDMTYwMDAwNzIwNwRtc2dJZAM0NTEyNgRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNTQwMTgzMzEEdHBjSWQDNDUxMTc-
--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:
>
> In one of my projects, I create a new TitleWindow that has two Lists in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
> 
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> 
> 
> Hi, to recreate my problem:
> 
> 1. Create a new project (basic)
> 
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>  
>  
>  
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
> 
> 
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
> 
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
> 
> 5. Run the application.
> 
> 6. Try dragging items from list to list on the main application.  Then,
> click the button and try dragging and dropping, notice the difference in
> where you can drop items.
>





--
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: Strange issue with drag and drop between Lists

2006-07-21 Thread joan_lynn
We got the bugs from Todd and Jeff and are looking at the issue now.
You will run into the problem with any Drag and Drop operation in
PopUps.  I'll report back if we come up with a workaround.

Thanks,
Joan

--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:
>
> I've submitted a bug report now.
> --- In flexcoders@yahoogroups.com, "jeff tapper"  wrote:
> >
> > I'm running into a similar issue.  I can tell you that the height of
> > the dead space is directly related to the header height of the Panel
> > (or title window in your case).  To prove this out, try adding
> > headerHeight="100" to the root titleWindow tag.
> >
> > --- In flexcoders@yahoogroups.com, "Pan Troglodytes"
> > chimpathetic@ wrote:
> > >
> > > Well, I can certainly confirm what you're seeing.  It's not just a
> > dead area
> > > at the top, it seems it's thinking you're still in the box when
> > you're
> > > actually below it.  So it seems like there's something screwed up
> > in its
> > > detection of where the mouse is that only comes out in popups.
> > >
> > > I'd say you have a pretty solid test case to submit to
> > > http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
> > >
> > > On 7/20/06, gotgoose09 thegoosmans@ wrote:
> > > >
> > > >   I'm beginning to think that this is a bug. Is there something
> > I'm
> > > > missing here?
> > > >
> > > > --- In flexcoders@yahoogroups.com ,
> > > > "gotgoose09"  wrote:
> > > > >
> > > > > In one of my projects, I create a new TitleWindow that has two
> > Lists
> > > > in
> > > > > which can drag items from one to the other. However, when I try
> > > > > dragging items from one to the other, there is a blank space
> > at the
> > > > top
> > > > > of each list that I can not drop items into - I have to drop
> > the items
> > > > > in the bottom of the list. If I have the same two lists not in
> > a
> > > > > TitleWindow, dragging and dropping works fine, with
> > no "barrier." You
> > > > > can view the problem at the link below, and recreate the
> > problem with
> > > > > the steps below.
> > > > >
> > > > >
> > http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> > > > >
> > 
> > > > >
> > > > > Hi, to recreate my problem:
> > > > >
> > > > > 1. Create a new project (basic)
> > > > >
> > > > > 2. In the application mxml file, paste this code in:
> > > > > 
> > > > > http://www.adobe.com/2006/mxml";
> > > > > layout="vertical">
> > > > > 
> > > > > 
> > > > > 
> > > > > 
> > > > > 
> > > > >  > > > > dropEnabled="true" width="100" height="100">
> > > > > 
> > > > > Item 1
> > > > > Item 2
> > > > > 
> > > > > 
> > > > >  > > > > dropEnabled="true" width="100" height="100" />
> > > > > 
> > > > > 
> > > > >
> > > > >
> > > > > 3. Create a new MXML Component, base it off of TitleWindow,
> > call it
> > > > > MyPopup.mxml
> > > > >
> > > > > 4. Paste this code into that file:
> > > > > 
> > > > > http://www.adobe.com/2006/mxml";
> > > > > layout="vertical">
> > > > > 
> > > > >  > > > > dropEnabled="true" width="100" height="100">
> > > > > 
> > > > > Item 1
> > > > > Item 2
> > > > > 
> > > > > 
> > > > >  > > > > dropEnabled="true" width="100" height="100" />
> > > > > 
> > > > > 
> > > > >
> > > > > 5. Run the application.
> > > > >
> > > > > 6. Try dragging items from list to list on the main
> > application.
> > > > Then,
> > > > > click the button and try dragging and dropping, notice the
> > difference
> > > > in
> > > > > where you can drop items.
> > > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > Jason
> > >
> >
>







 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~-> 

--
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: Strange issue with drag and drop between Lists

2006-07-21 Thread gotgoose09
I've submitted a bug report now.
--- In flexcoders@yahoogroups.com, "jeff tapper" <[EMAIL PROTECTED]> wrote:
>
> I'm running into a similar issue.  I can tell you that the height of
> the dead space is directly related to the header height of the Panel
> (or title window in your case).  To prove this out, try adding
> headerHeight="100" to the root titleWindow tag.
>
> --- In flexcoders@yahoogroups.com, "Pan Troglodytes"
> chimpathetic@ wrote:
> >
> > Well, I can certainly confirm what you're seeing.  It's not just a
> dead area
> > at the top, it seems it's thinking you're still in the box when
> you're
> > actually below it.  So it seems like there's something screwed up
> in its
> > detection of where the mouse is that only comes out in popups.
> >
> > I'd say you have a pretty solid test case to submit to
> > http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
> >
> > On 7/20/06, gotgoose09 thegoosmans@ wrote:
> > >
> > >   I'm beginning to think that this is a bug. Is there something
> I'm
> > > missing here?
> > >
> > > --- In flexcoders@yahoogroups.com ,
> > > "gotgoose09"  wrote:
> > > >
> > > > In one of my projects, I create a new TitleWindow that has two
> Lists
> > > in
> > > > which can drag items from one to the other. However, when I try
> > > > dragging items from one to the other, there is a blank space
> at the
> > > top
> > > > of each list that I can not drop items into - I have to drop
> the items
> > > > in the bottom of the list. If I have the same two lists not in
> a
> > > > TitleWindow, dragging and dropping works fine, with
> no "barrier." You
> > > > can view the problem at the link below, and recreate the
> problem with
> > > > the steps below.
> > > >
> > > >
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> > > >
> 
> > > >
> > > > Hi, to recreate my problem:
> > > >
> > > > 1. Create a new project (basic)
> > > >
> > > > 2. In the application mxml file, paste this code in:
> > > > 
> > > > http://www.adobe.com/2006/mxml";
> > > > layout="vertical">
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > >  > > > dropEnabled="true" width="100" height="100">
> > > > 
> > > > Item 1
> > > > Item 2
> > > > 
> > > > 
> > > >  > > > dropEnabled="true" width="100" height="100" />
> > > > 
> > > > 
> > > >
> > > >
> > > > 3. Create a new MXML Component, base it off of TitleWindow,
> call it
> > > > MyPopup.mxml
> > > >
> > > > 4. Paste this code into that file:
> > > > 
> > > > http://www.adobe.com/2006/mxml";
> > > > layout="vertical">
> > > > 
> > > >  > > > dropEnabled="true" width="100" height="100">
> > > > 
> > > > Item 1
> > > > Item 2
> > > > 
> > > > 
> > > >  > > > dropEnabled="true" width="100" height="100" />
> > > > 
> > > > 
> > > >
> > > > 5. Run the application.
> > > >
> > > > 6. Try dragging items from list to list on the main
> application.
> > > Then,
> > > > click the button and try dragging and dropping, notice the
> difference
> > > in
> > > > where you can drop items.
> > > >
> > >
> > >
> > >
> >
> >
> >
> > --
> > Jason
> >
>







 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~-> 

--
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: Strange issue with drag and drop between Lists

2006-07-21 Thread jeff tapper
I'm running into a similar issue.  I can tell you that the height of 
the dead space is directly related to the header height of the Panel 
(or title window in your case).  To prove this out, try adding 
headerHeight="100" to the root titleWindow tag.

--- In flexcoders@yahoogroups.com, "Pan Troglodytes" 
<[EMAIL PROTECTED]> wrote:
>
> Well, I can certainly confirm what you're seeing.  It's not just a 
dead area
> at the top, it seems it's thinking you're still in the box when 
you're
> actually below it.  So it seems like there's something screwed up 
in its
> detection of where the mouse is that only comes out in popups.
> 
> I'd say you have a pretty solid test case to submit to
> http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
> 
> On 7/20/06, gotgoose09 <[EMAIL PROTECTED]> wrote:
> >
> >   I'm beginning to think that this is a bug. Is there something 
I'm
> > missing here?
> >
> > --- In flexcoders@yahoogroups.com ,
> > "gotgoose09"  wrote:
> > >
> > > In one of my projects, I create a new TitleWindow that has two 
Lists
> > in
> > > which can drag items from one to the other. However, when I try
> > > dragging items from one to the other, there is a blank space 
at the
> > top
> > > of each list that I can not drop items into - I have to drop 
the items
> > > in the bottom of the list. If I have the same two lists not in 
a
> > > TitleWindow, dragging and dropping works fine, with 
no "barrier." You
> > > can view the problem at the link below, and recreate the 
problem with
> > > the steps below.
> > >
> > > 
http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> > > 

> > >
> > > Hi, to recreate my problem:
> > >
> > > 1. Create a new project (basic)
> > >
> > > 2. In the application mxml file, paste this code in:
> > > 
> > > http://www.adobe.com/2006/mxml";
> > > layout="vertical">
> > > 
> > > 
> > > 
> > > 
> > > 
> > >  > > dropEnabled="true" width="100" height="100">
> > > 
> > > Item 1
> > > Item 2
> > > 
> > > 
> > >  > > dropEnabled="true" width="100" height="100" />
> > > 
> > > 
> > >
> > >
> > > 3. Create a new MXML Component, base it off of TitleWindow, 
call it
> > > MyPopup.mxml
> > >
> > > 4. Paste this code into that file:
> > > 
> > > http://www.adobe.com/2006/mxml";
> > > layout="vertical">
> > > 
> > >  > > dropEnabled="true" width="100" height="100">
> > > 
> > > Item 1
> > > Item 2
> > > 
> > > 
> > >  > > dropEnabled="true" width="100" height="100" />
> > > 
> > > 
> > >
> > > 5. Run the application.
> > >
> > > 6. Try dragging items from list to list on the main 
application.
> > Then,
> > > click the button and try dragging and dropping, notice the 
difference
> > in
> > > where you can drop items.
> > >
> >
> >  
> >
> 
> 
> 
> -- 
> Jason
>






 Yahoo! Groups Sponsor ~--> 
Something is new at Yahoo! Groups.  Check out the enhanced email design.
http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM
~-> 

--
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: Strange issue with drag and drop between Lists

2006-07-20 Thread Pan Troglodytes



Well, I can certainly confirm what you're seeing.  It's not just a dead area at the top, it seems it's thinking you're still in the box when you're actually below it.  So it seems like there's something screwed up in its detection of where the mouse is that only comes out in popups.
I'd say you have a pretty solid test case to submit to http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
On 7/20/06, gotgoose09 <[EMAIL PROTECTED]> wrote:













  



I'm beginning to think that this is a bug.  Is there something I'm
missing here?
--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:

>
> In one of my projects, I create a new TitleWindow that has two Lists
in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the
top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
>
> 
http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> <
http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf>
>
> Hi, to recreate my problem:
>
> 1. Create a new project (basic)
>
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml
"
> layout="vertical">
>  
>  
>  
>  
>  
>  
> dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>  
> dropEnabled="true" width="100" height="100" />
>  
> 
>
>
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
>
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml
"
> layout="vertical">
>  
>  
> dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>  
> dropEnabled="true" width="100" height="100" />
>  
> 
>
> 5. Run the application.
>
> 6. Try dragging items from list to list on the main application. 
Then,
> click the button and try dragging and dropping, notice the difference
in
> where you can drop items.
>


  













-- Jason

__._,_.___





--
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: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
I'm beginning to think that this is a bug.  Is there something I'm
missing here?
--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:
>
> In one of my projects, I create a new TitleWindow that has two Lists
in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the
top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
>
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> 
>
> Hi, to recreate my problem:
>
> 1. Create a new project (basic)
>
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>  
>  
>  
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
>
>
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
>
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
>
> 5. Run the application.
>
> 6. Try dragging items from list to list on the main application. 
Then,
> click the button and try dragging and dropping, notice the difference
in
> where you can drop items.
>







 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~-> 

--
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: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
Could you resubmit your message?  There's no content.
--- In flexcoders@yahoogroups.com, "Dimitrios Gianninas"
<[EMAIL PROTECTED]> wrote:
>
>
>
> Dimitrios Gianninas
> RIA Developer
> Optimal Payments Inc.
>
>
> 
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of gotgoose09
> Sent: Thursday, July 20, 2006 4:43 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Re: Strange issue with drag and drop between
Lists
>
>
>
> I added a "View Source" option to the swf.
>
> --- In flexcoders@yahoogroups.com
<mailto:flexcoders%40yahoogroups.com> , "gotgoose09" thegoosmans@ wrote:
> >
> > In one of my projects, I create a new TitleWindow that has two Lists
in
> > which can drag items from one to the other. However, when I try
> > dragging items from one to the other, there is a blank space at the
top
> > of each list that I can not drop items into - I have to drop the
items
> > in the bottom of the list. If I have the same two lists not in a
> > TitleWindow, dragging and dropping works fine, with no "barrier."
You
> > can view the problem at the link below, and recreate the problem
with
> > the steps below.
> >
> > http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
<http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf>
> > <http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
<http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf> >
> >
> > Hi, to recreate my problem:
> >
> > 1. Create a new project (basic)
> >
> > 2. In the application mxml file, paste this code in:
> > 
> > http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> "
> > layout="vertical">
> > 
> > 
> > 
> > 
> > 
> >  > dropEnabled="true" width="100" height="100">
> > 
> > Item 1
> > Item 2
> > 
> > 
> >  > dropEnabled="true" width="100" height="100" />
> > 
> > 
> >
> >
> > 3. Create a new MXML Component, base it off of TitleWindow, call it
> > MyPopup.mxml
> >
> > 4. Paste this code into that file:
> > 
> > http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> "
> > layout="vertical">
> > 
> >  > dropEnabled="true" width="100" height="100">
> > 
> > Item 1
> > Item 2
> > 
> > 
> >  > dropEnabled="true" width="100" height="100" />
> > 
> > 
> >
> > 5. Run the application.
> >
> > 6. Try dragging items from list to list on the main application.
Then,
> > click the button and try dragging and dropping, notice the
difference in
> > where you can drop items.
> >
>
>
>
>
>
> --
> WARNING
> ---
> This electronic message and its attachments may contain confidential,
proprietary or legally privileged information, which is solely for the
use of the intended recipient.  No privilege or other rights are waived
by any unintended transmission or unauthorized retransmission of this
message.  If you are not the intended recipient of this message, or if
you have received it in error, you should immediately stop reading this
message and delete it and all attachments from your system.  The
reading, distribution, copying or other use of this message or its
attachments by unintended recipients is unauthorized and may be
unlawful.  If you have received this e-mail in error, please notify the
sender.
>
> AVIS IMPORTANT
> --
> Ce message électronique et ses pièces jointes peuvent contenir
des renseignements confidentiels, exclusifs ou légalement
privilégiés destinés au seul usage du destinataire visé. 
L'expéditeur original ne renonce à aucun privilège ou à
aucun autre droit si le présent message a été transmis
involontairement ou s'il est retransmis sans son autorisation.  Si vous
n'êtes pas le destinataire visé du présent message ou si vous
l'avez reçu par erreur, veuillez cesser immédiatement de le lire
et le supprimer, ainsi que toutes ses pièces jointes, de votre
système.  La lecture, la distribution, la copie ou tout autre usage
du présent message ou de ses pièces jointes par des personnes
autres que le destinataire visé ne sont pas autorisés et
pourraient être illégaux.  Si vous avez reçu ce courrier
électronique par erreur, veuillez en aviser l'expéditeur.
>







 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~-> 

--
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: Strange issue with drag and drop between Lists

2006-07-20 Thread Dimitrios Gianninas





 
 
Dimitrios 
Gianninas
RIA Developer
Optimal 
Payments Inc.
 


From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of 
gotgoose09Sent: Thursday, July 20, 2006 4:43 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: Strange issue 
with drag and drop between Lists


I added a "View Source" option to the swf.--- In [EMAIL PROTECTED]ups.com, 
"gotgoose09" ...> wrote:>> In one of my 
projects, I create a new TitleWindow that has two Lists in> which can 
drag items from one to the other. However, when I try> dragging items 
from one to the other, there is a blank space at the top> of each list 
that I can not drop items into - I have to drop the items> in the bottom 
of the list. If I have the same two lists not in a> TitleWindow, dragging 
and dropping works fine, with no "barrier." You> can view the problem at 
the link below, and recreate the problem with> the steps below.> 
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf> 
<http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf>> 
> Hi, to recreate my problem:> > 1. Create a new project 
(basic)> > 2. In the application mxml file, paste this code 
in:> 8"?>> 
http://www.adobe.com/2006/mxml"> 
layout="vertical">> > 
> > > > 
"true" 
dragMoveEnabled="true"> dropEnabled="true" width="100" 
height="100">> > 
Item 1> Item 
2> > 
> "true" 
dragMoveEnabled="true"> dropEnabled="true" width="100" 
height="100" />> > 
> > > 3. Create a new MXML 
Component, base it off of TitleWindow, call it> MyPopup.mxml> 
> 4. Paste this code into that file:> 8"?>> http://www.adobe.com/2006/mxml"> 
layout="vertical">> > "true" dragMoveEnabled="true"> 
dropEnabled="true" width="100" height="100">> 
> Item 
1> Item 2> 
> > "true" dragMoveEnabled="true"> 
dropEnabled="true" width="100" height="100" />> 
> > > 5. Run the 
application.> > 6. Try dragging items from list to list on the 
main application. Then,> click the button and try dragging and dropping, 
notice the difference in> where you can drop 
items.>
 
  
  AVIS
  IMPORTANT
  
  
  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système.  La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur.
  
  
  This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient.  No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message.  If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system.  The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful.  If you have received this e-mail 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: Strange issue with drag and drop between Lists

2006-07-20 Thread gotgoose09
I added a "View Source" option to the swf.

--- In flexcoders@yahoogroups.com, "gotgoose09" <[EMAIL PROTECTED]> wrote:
>
> In one of my projects, I create a new TitleWindow that has two Lists in
> which can drag items from one to the other.  However, when I try
> dragging items from one to the other, there is a blank space at the top
> of each list that I can not drop items into - I have to drop the items
> in the bottom of the list.  If I have the same two lists not in a
> TitleWindow, dragging and dropping works fine, with no "barrier."  You
> can view the problem at the link below, and recreate the problem with
> the steps below.
> 
> http://www.thegoosmans.com/flexproblem/TitleWindowDragAndDrop.swf
> 
> 
> Hi, to recreate my problem:
> 
> 1. Create a new project (basic)
> 
> 2. In the application mxml file, paste this code in:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>  
>  
>  
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
> 
> 
> 3. Create a new MXML Component, base it off of TitleWindow, call it
> MyPopup.mxml
> 
> 4. Paste this code into that file:
> 
> http://www.adobe.com/2006/mxml";
> layout="vertical">
>  
>   dropEnabled="true" width="100" height="100">
>  
>  Item 1
>  Item 2
>  
>  
>   dropEnabled="true" width="100" height="100" />
>  
> 
> 
> 5. Run the application.
> 
> 6. Try dragging items from list to list on the main application.  Then,
> click the button and try dragging and dropping, notice the difference in
> where you can drop items.
>






 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~-> 

--
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/