Re: SPAM-LOW: Re: [flexcoders] Scrubbing in a MP3-file

2007-09-27 Thread Arleston Lueders
I figured out. Thanks people.

On 9/27/07, Arleston Lueders <[EMAIL PROTECTED]> wrote:
>
> Yea, still not working :/
>
> Could not resolve  to a component implementation.
>
>
>
> On 9/27/07, Jeffry Houser < [EMAIL PROTECTED]> wrote:
> >
> >
> > I've never seen that syntax before, so can't speak for that.
> >
> > Disclaimer: I have not reviewed the code in question.
> >
> > Are you trying to import the code, or include it? They are two
> > distinctly different things.
> >
> > I would expect that SoundPlayer.as s component, and you need to import
> > it.
> >
> > Something like this:
> >
> > 
> > import SoundPlayer
> > 
> >
> > Most likely in this case, it will have some form of package name, but
> > that is not necessarily true.
> >
> > To include it:
> >
> > 
> > include "SoundPlayer.as"
> > 
> >
> > I use this very rarely. I'd never do it if SoundPlayer.as includes
> > all code.
> >
> > Arleston Lueders wrote:
> > >
> > >
> > > Newbie question:
> > > I'm trying to import/include the SoundPlayer.as to my Flex app.
> > > 
> > > And after this in a panel Im putting the code:
> > > 
> > > But it's giving an error:
> > > 1037: Packages cannot be nested.
> > >
> > > What am I doing wrong?
> > > Thanks
> > >
> > > On 5/6/07, *Manish Jethani * <[EMAIL 
> > > PROTECTED]
> > > > wrote:
> > >
> > > On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]
> > > > wrote:
> > >
> > > > is there anybody who can explain how to
> > > > give a mx:HSlider-component the ability to
> > > > scrub in a MP3-file?
> > >
> > > Basically you have to call play() on the Sound object with the new
> > > position as the argument.
> > >
> > > Or you can use the SoundPlayer component:
> > >
> > > http://mannu.livejournal.com/343918.html
> > > 
> > >
> > > 
> > >
> > >
> > >
> >
> > --
> > Jeffry Houser, Technical Entrepreneur, Software Developer, Author,
> > Recording Engineer
> > AIM: Reboog711 | Phone:  1-203-379-0773
> > --
> > My Company: 
> > My Podcast: 
> > My Blog: 
> >
> >  
> >
>
>


Re: SPAM-LOW: Re: [flexcoders] Scrubbing in a MP3-file

2007-09-27 Thread Arleston Lueders
Yea, still not working :/

Could not resolve  to a component implementation.



On 9/27/07, Jeffry Houser <[EMAIL PROTECTED]> wrote:
>
>
> I've never seen that syntax before, so can't speak for that.
>
> Disclaimer: I have not reviewed the code in question.
>
> Are you trying to import the code, or include it? They are two
> distinctly different things.
>
> I would expect that SoundPlayer.as s component, and you need to import
> it.
>
> Something like this:
>
> 
> import SoundPlayer
> 
>
> Most likely in this case, it will have some form of package name, but
> that is not necessarily true.
>
> To include it:
>
> 
> include "SoundPlayer.as"
> 
>
> I use this very rarely. I'd never do it if SoundPlayer.as includes
> all code.
>
> Arleston Lueders wrote:
> >
> >
> > Newbie question:
> > I'm trying to import/include the SoundPlayer.as to my Flex app.
> > 
> > And after this in a panel Im putting the code:
> > 
> > But it's giving an error:
> > 1037: Packages cannot be nested.
> >
> > What am I doing wrong?
> > Thanks
> >
> > On 5/6/07, *Manish Jethani * <[EMAIL PROTECTED]
> > > wrote:
> >
> > On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]
> > > wrote:
> >
> > > is there anybody who can explain how to
> > > give a mx:HSlider-component the ability to
> > > scrub in a MP3-file?
> >
> > Basically you have to call play() on the Sound object with the new
> > position as the argument.
> >
> > Or you can use the SoundPlayer component:
> >
> > http://mannu.livejournal.com/343918.html
> > 
> >
> > 
> >
> >
> >
>
> --
> Jeffry Houser, Technical Entrepreneur, Software Developer, Author,
> Recording Engineer
> AIM: Reboog711 | Phone:  1-203-379-0773
> --
> My Company: 
> My Podcast: 
> My Blog: 
>
>  
>


Re: [flexcoders] Scrubbing in a MP3-file

2007-09-27 Thread Arleston Lueders
I tried to create now..



and calling 

My SoundPlayer.as is:
package soundplayer
{

import flash.events.Event;
import flash.events.EventDispatcher;
import flash.media.ID3Info;
import flash.media.Sound;
import flash.media.SoundChannel;
import flash.media.SoundTransform;
import flash.net.URLRequest;
import flash.utils.Timer;
.

(and all the code from the example).
...

Could not resolve  to a component implementation.



On 9/27/07, Paul deCoursey <[EMAIL PROTECTED]> wrote:
>
>   Just a guess, but do you have a package declaration in the
> SoundPlayer.as file?
>
> Arleston Lueders wrote:
> > Newbie question:
> > I'm trying to import/include the SoundPlayer.as to my Flex app.
> > 
> > And after this in a panel Im putting the code:
> > 
> > But it's giving an error:
> > 1037: Packages cannot be nested.
> >
> > What am I doing wrong?
> > Thanks
> >
> > On 5/6/07, *Manish Jethani * <[EMAIL PROTECTED]
> > > wrote:
> >
> > On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]
> > > wrote:
> >
> > > is there anybody who can explain how to
> > > give a mx:HSlider-component the ability to
> > > scrub in a MP3-file?
> >
> > Basically you have to call play() on the Sound object with the new
> > position as the argument.
> >
> > Or you can use the SoundPlayer component:
> >
> > http://mannu.livejournal.com/343918.html
> >
> > 
> >
> >
> >
>
>  
>


Re: [flexcoders] Scrubbing in a MP3-file

2007-09-27 Thread Paul deCoursey
Just a guess, but do you have a package declaration in the 
SoundPlayer.as file?


Arleston Lueders wrote:
> Newbie question:
> I'm trying to import/include the SoundPlayer.as to my Flex app.
> 
> And after this in a panel Im putting the code:
> 
> But it's giving an error:
> 1037: Packages cannot be nested.
>
> What am I doing wrong?
> Thanks
>
> On 5/6/07, *Manish Jethani * <[EMAIL PROTECTED] 
> > wrote:
>
> On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]
> > wrote:
>
> > is there anybody who can explain how to
> > give a mx:HSlider-component the ability to
> > scrub in a MP3-file?
>
> Basically you have to call play() on the Sound object with the new
> position as the argument.
>
> Or you can use the SoundPlayer component:
>
> http://mannu.livejournal.com/343918.html
>
> 
>
>
>  



Re: SPAM-LOW: Re: [flexcoders] Scrubbing in a MP3-file

2007-09-27 Thread Jeffry Houser

  I've never seen that syntax before, so can't speak for that.

Disclaimer:  I have not reviewed the code in question.

  Are you trying to import the code, or include it?  They are two 
distinctly different things.

  I would expect that SoundPlayer.as s component, and you need to import 
it.

  Something like this:


  import SoundPlayer


  Most likely in this case, it will have some form of package name, but 
that is not necessarily true.


  To include it:


  include "SoundPlayer.as"


  I use this very rarely.  I'd never do it if SoundPlayer.as includes 
all code.


Arleston Lueders wrote:
> 
> 
> Newbie question:
> I'm trying to import/include the SoundPlayer.as to my Flex app.
> 
> And after this in a panel Im putting the code:
> 
> But it's giving an error:
> 1037: Packages cannot be nested.
> 
> What am I doing wrong?
> Thanks
> 
> On 5/6/07, *Manish Jethani * <[EMAIL PROTECTED] 
> > wrote:
> 
> On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]
> > wrote:
> 
> >  is there anybody who can explain how to
> >  give a mx:HSlider-component the ability to
> >  scrub in a MP3-file?
> 
> Basically you have to call play() on the Sound object with the new
> position as the argument.
> 
> Or you can use the SoundPlayer component:
> 
> http://mannu.livejournal.com/343918.html
> 
> 
> 
> 
> 
> 

-- 
Jeffry Houser, Technical Entrepreneur, Software Developer, Author, 
Recording Engineer
AIM: Reboog711  | Phone: 1-203-379-0773
--
My Company: 
My Podcast: 
My Blog: 



Re: [flexcoders] Scrubbing in a MP3-file

2007-09-27 Thread Arleston Lueders
Newbie question:
I'm trying to import/include the SoundPlayer.as to my Flex app.

And after this in a panel Im putting the code:

But it's giving an error:
1037: Packages cannot be nested.

What am I doing wrong?
Thanks

On 5/6/07, Manish Jethani <[EMAIL PROTECTED]> wrote:
>
>   On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]>
> wrote:
>
> > is there anybody who can explain how to
> > give a mx:HSlider-component the ability to
> > scrub in a MP3-file?
>
> Basically you have to call play() on the Sound object with the new
> position as the argument.
>
> Or you can use the SoundPlayer component:
>
> http://mannu.livejournal.com/343918.html
>
> 
>  
>


Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread mychemic Carlo Gulliani
sorry, i see all)

- Original Message 
From: mychemic Carlo Gulliani <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Sunday, May 6, 2007 8:07:32 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file









  




wow, great thanks. Sorry for stupid question, but "Album Cover" read from 
id3Tag or store in external folder?

- Original Message 
From: Thijs Triemstra | Collab <[EMAIL PROTECTED] nl>
To: [EMAIL PROTECTED] ups.com
Sent: Sunday, May 6, 2007 7:33:47 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file










Try the ID3Reader component to get the artwork and ID3 tags:


http://blog. benstucki. net/?id=24


Thijs



On May 6, 2007, at 3:28 PM, mychemic Carlo Gulliani wrote:



Excuse me for my English, Whether can this component show ID3 Tags? Also maybe 
do you know how to display cover artwork mp3 file?

- Original Message 
From: Sebastian Mohr <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Sunday, May 6, 2007 4:10:44 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file

Thank you Manish,

This should be doable ;)

Cheers,
masu



On 5/6/07, Manish Jethani  wrote:On 5/6/07, 
Sebastian Mohr  wrote:

> is there anybody who can explain how to
> give a mx:HSlider-componen t the ability to
> scrub in a MP3-file?

Basically you have to call play() on the Sound object with the new
position as the argument.

Or you can use the SoundPlayer component:

http://mannu. livejournal. com/343918. html















Ahhh...imagining that irresistible "new car" smell?
Check out new cars at Yahoo! Autos.









  












  Ahhh...imagining that irresistible "new car" smell?
 Check out
new cars at Yahoo! Autos.


  















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

Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread mychemic Carlo Gulliani
wow, great thanks. Sorry for stupid question, but "Album Cover" read from 
id3Tag or store in external folder?

- Original Message 
From: Thijs Triemstra | Collab <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Sunday, May 6, 2007 7:33:47 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file









  



Try the ID3Reader component to get the artwork and ID3 tags:


http://blog. benstucki. net/?id=24


Thijs



On May 6, 2007, at 3:28 PM, mychemic Carlo Gulliani wrote:



Excuse me for my English, Whether can this component show ID3 Tags? Also maybe 
do you know how to display cover artwork mp3 file?

- Original Message 
From: Sebastian Mohr <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Sunday, May 6, 2007 4:10:44 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file

Thank you Manish,

This should be doable ;)

Cheers,
masu



On 5/6/07, Manish Jethani  wrote:On 5/6/07, 
Sebastian Mohr  wrote:

> is there anybody who can explain how to
> give a mx:HSlider-componen t the ability to
> scrub in a MP3-file?

Basically you have to call play() on the Sound object with the new
position as the argument.

Or you can use the SoundPlayer component:

http://mannu. livejournal. com/343918. html















Ahhh...imagining that irresistible "new car" smell?
Check out new cars at Yahoo! Autos.









  















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

Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread Thijs Triemstra | Collab

Try the ID3Reader component to get the artwork and ID3 tags:

http://blog.benstucki.net/?id=24

Thijs


On May 6, 2007, at 3:28 PM, mychemic Carlo Gulliani wrote:



Excuse me for my English, Whether can this component show ID3 Tags?  
Also maybe do you know how to display cover artwork mp3 file?


- Original Message 
From: Sebastian Mohr <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Sunday, May 6, 2007 4:10:44 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file

Thank you Manish,

This should be doable ;)

Cheers,
masu



On 5/6/07, Manish Jethani  wrote:
On 5/6/07, Sebastian Mohr  wrote:

> is there anybody who can explain how to
> give a mx:HSlider-componen t the ability to
> scrub in a MP3-file?

Basically you have to call play() on the Sound object with the new
position as the argument.

Or you can use the SoundPlayer component:

http://mannu. livejournal. com/343918. html






Ahhh...imagining that irresistible "new car" smell?
Check out new cars at Yahoo! Autos.






Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread Manish Jethani
On 5/6/07, mychemic Carlo Gulliani <[EMAIL PROTECTED]> wrote:

> Excuse me for my English, Whether can this component show ID3 Tags? Also
> maybe do you know how to display cover artwork mp3 file?

See the id3 property of the component.

I'm not sure what "cover artwork" means.


Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread mychemic Carlo Gulliani
Excuse me for my English, Whether can this component show ID3 Tags? Also maybe 
do you know how to display cover artwork mp3 file?

- Original Message 
From: Sebastian Mohr <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Sunday, May 6, 2007 4:10:44 PM
Subject: Re: [flexcoders] Scrubbing in a MP3-file









  



Thank you Manish,

This should be doable ;)

Cheers,
masu



On 5/6/07, Manish Jethani  wrote:












  



On 5/6/07, Sebastian Mohr  wrote:



> is there anybody who can explain how to

> give a mx:HSlider-componen t the ability to

> scrub in a MP3-file?



Basically you have to call play() on the Sound object with the new

position as the argument.



Or you can use the SoundPlayer component:



http://mannu. livejournal. com/343918. html








  




















  















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

Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread Sebastian Mohr

Thank you Manish,

This should be doable ;)

Cheers,
masu


On 5/6/07, Manish Jethani <[EMAIL PROTECTED]> wrote:


  On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]>
wrote:

> is there anybody who can explain how to
> give a mx:HSlider-component the ability to
> scrub in a MP3-file?

Basically you have to call play() on the Sound object with the new
position as the argument.

Or you can use the SoundPlayer component:

http://mannu.livejournal.com/343918.html


 



Re: [flexcoders] Scrubbing in a MP3-file

2007-05-06 Thread Manish Jethani
On 5/6/07, Sebastian Mohr <[EMAIL PROTECTED]> wrote:

> is there anybody who can explain how to
> give a mx:HSlider-component the ability to
> scrub in a MP3-file?

Basically you have to call play() on the Sound object with the new
position as the argument.

Or you can use the SoundPlayer component:

http://mannu.livejournal.com/343918.html