drag-and-drop problem in a Tilelist using an ItemRenderer - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:11:04Zhttp://stackoverflow.com/feeds/question/282191http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/282191/drag-and-drop-problem-in-a-tilelist-using-an-itemrenderer3drag-and-drop problem in a Tilelist using an ItemRendererBlizter2008-11-11T21:30:00Z2008-11-12T18:04:36Z
<p>Hello,</p>
<p>in my flex application, I created a Tilelist. In this Tilelist, I am using an ItemRenderer to create a box consisting of an image and an VSlider in each tile. </p>
<p>The tile need to be dragable when you click on the image, but not dragable when you slide the slider. How can I achieve this ? I have been scratching my head searching on Google for one day and I have really no idea.</p>
<p>I look forward to your help.
Thank you.</p>
http://stackoverflow.com/questions/282191/drag-and-drop-problem-in-a-tilelist-using-an-itemrenderer/284779#2847791Answer by Blizter for drag-and-drop problem in a Tilelist using an ItemRendererBlizter2008-11-12T18:04:36Z2008-11-12T18:04:36Z<p>Hello, I found a solution to my problem, however it may not be the best one.</p>
<p>Using this : </p>
<pre><code> public var overImage:Boolean = false;
public function checkAllow(evt:DragEvent):void {
if(overImage == false)
{
evt.preventDefault()
}
}
public function isOverImage():void {
overImage = true;
}
public function isOutImage():void {
overImage = false;
}
</code></pre>
<p>I call those functions like this :</p>
<p>On my image component </p>
<pre><code>mouseOver="outerDocument.isOverImage()" mouseOut="outerDocument.isOutImage()"
</code></pre>
<p>And for my tilelist I did this</p>
<pre><code>Tiles.addEventListener(DragEvent.DRAG_START, checkAllow);
</code></pre>
<p>Hope it helps some people.</p>