[flexcoders] Re: ID3 v2+ parser available for albumart

2007-04-30 Thread nikko_leborgne
--- In flexcoders@yahoogroups.com, João Fernandes
[EMAIL PROTECTED] wrote:

 The Mighty Ben Stucki may have what you need.
 
 http://blog.benstucki.net/?id=24
 
 João Fernandes

Hello,

I tried ID3Strema Explorer, and it works well.
But now, I want to parse my mp3's. So, in the example, in the
dataProvider File, I add http://localhost/mp3/myMp3.mp3 but it
doesn't work :(

Could you help me, please. And could you say me if it's the good method.

Thanks



[flexcoders] Internationalisation Accordion

2006-10-31 Thread nikko_leborgne
Hello !

In my application, I have an accordion where I hide/show canvas by
clicking on diferents items in my interface.
Moreover, in my application, I can change the language by clicking on
the corresponding flag.

And so, that si my problem :

When I want to hide a canvas of my accordion, I use
accordion.removeChild(myCanvas).
And after that, when I click on a different language flag, there is an
error to update the label of the hidden canvas.

Have you a solution, please ?

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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] Set menuitem enabled/disabled

2006-10-12 Thread nikko_leborgne
Hi !

In my application, I create a Menu which is showned with a double
click.  Here is the code :
In my MXML application :

 XML for the menu
 
 mx:XML id=tasksMenuData
   root
 menuitem label=Nouvelle tâche eventName=newTask   enabled=/
 menuitem label=Supprimer eventName=deleteTask enabled=/
 menuitem label=Editer eventName=editTask enabled=/
   /root
/mx:XML

 DataGrid with a double click to show the menu
 -
  mx:DataGrid id=tasksDataGrid right=10 left=10 top=40
bottom=10 doubleClickEnabled=true
doubleClick=showMenu('tasksDataGrid');

An actionScript file : menu.as
==
private function showMenu(name:String):void 
{
switch (name)
{
 case 'tasksDataGrid' :
  menu = Menu.createMenu(tasksDataGrid, tasksMenuData, false);  break;
}
  menu.labelField = @label;
  menu.addEventListener(menuShow, menuHandler2);
//menu.addEventListener(itemClick, menuHandler);
  menu.show(mouseX, mouseY);
}

And, before to show the menu, for example, if any item is selected in
my DataGrid, I would like to disable the label Supprimer, in my menu.

But, I don't know to access to a particularly node/item or my menu.

Thanks to help me !!




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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] [Menu][event.item]

2006-10-10 Thread nikko_leborgne
Hello !!

I create a menu :
mx:XML id=myMenuData
  root
menuitem label=Nouvelle tâche eventName=newTask/
menuitem label=Supprimer une tâche eventName=deleteTask/
menuitem label=Editer une tâche eventName=editTask/
  /root
/mx:XML

Then, I have a function to show my menu :
private function showMenu():void 
{
myMenu = Menu.createMenu(tasksDataGrid, myMenuData, false);
myMenu.labelField = @label
myMenu.addEventListener(itemClick, menuHandler);

// Calculate position of Menu in Application's coordinates. 
/* point1.x=mybutton.x;
point1.y=mybutton.y;
point1=mybutton.localToGlobal(point1); */

myMenu.show(50,50);
}


And my problem is in the following function :
private function menuHandler(event:MenuEvent):void 
{
createDialog([EMAIL PROTECTED], this,
[EMAIL PROTECTED](), 'filter');
}

Indeed, the first argument launch the following error :
TypeError: Error #1034: Echec de la contrainte de type : conversion de
[EMAIL PROTECTED] en Class impossible.
at TDBUser/::menuHandler()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.controls::Menu/dispatchEvent()
at mx.controls::Menu/mx.controls:Menu::mouseUpHandler()


Could you help me, please ?
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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* 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] [Drag Drop][Trees]

2006-10-03 Thread nikko_leborgne
Hello !

I have a problem with the drag and drop between two trees.
Indeed, to drag  drop in an only tree, there is no problem.
Moreover, I know to drag  drop between two trees, but I only know
move files or folders.
And, I would like COPY a file from a tree to another. What is the
solution ?

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

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

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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