# File lib/amazon/search.rb, line 568
      def actor_search(actor, mode='dvd', weight=HEAVY, page=1,
                       sort_type=nil, offerings=nil, keyword=nil,
                       price=nil, &block)

        url = AWS_PREFIX + "?t=%s&ActorSearch=%s&mode=%s&f=xml" +
              "&type=%s&dev-t=%s&page=%s"
        url << "&price="    << price   unless price.nil?
        url << get_offer_string(offerings)
        @type = WEIGHT[weight]
        sort_string = get_sort_string(sort_type, mode)

        actor = url_encode(actor)

        modes = %w[dvd vhs video]
        unless modes.include? mode
          raise ModeError, "mode must be one of %s" % modes.join(', ')
        end

        mode = localise_mode(mode)
        url = url % [@id, actor, mode, @type, @token, page] << sort_string
        url << "&keywords=" << url_encode(keyword) unless keyword.nil?

        search(url, &block)
      end