library issue

i am getting error code ('class AdvancedRemote' has no member named 'setup')
the compiler is referanceing the following section of code.

	//Setup Advanced Remote
	advancedRemote.setSerial(Serial);
	advancedRemote.setFeedbackHandler(feedbackHandler);
	advancedRemote.setTitleHandler(titleHandler);
	advancedRemote.setArtistHandler(artistHandler);
	advancedRemote.setAlbumHandler(albumHandler);
	advancedRemote.setPollingHandler(pollingHandler);
	advancedRemote.setCurrentPlaylistSongCountHandler(currentPlaylistSongCountHandler);
	advancedRemote.setPlaylistPositionHandler(playlistPositionHandler);
	advancedRemote.setup();
	advancedRemote.disable();

i am including a link to the library

this is my first project with arduino so im kind of stuck

If you provide only a snippet of code, do not be surprised if you only get a snippet of an answer. You appear to have omitted an important part of the code. Next time, provide all of the code.

As the error message says the library does not have a .setup() method. None of the library example programs try to use it either so what made you think it was a good idea to put it in your program?

Steve