AudioPages
Show Deprecated
A special version of the Pages class returned by AssetService:SearchAudio(). See the following code sample for reference on the returned data format.
Code Samples
Getting Music Search Titles
local AssetService = game:GetService("AssetService")
local audioSearchParams = Instance.new("AudioSearchParams")
audioSearchParams.SearchKeyword = "happy"
local success, result = pcall(function()
return AssetService:SearchAudio(audioSearchParams)
end)
if success then
local currentPage = result:GetCurrentPage()
for _, audio in currentPage do
print(audio.Title)
end
else
warn("AssetService error: " .. result)
end
--[[ Returned data format
{
"AudioType": string,
"Artist": string,
"Title": string,
"Tags": {
"string"
},
"Id": number,
"IsEndorsed": boolean,
"Description": string,
"Duration": number,
"CreateTime": string,
"UpdateTime": string,
"Creator": {
"Id": number,
"Name": string,
"Type": number,
"IsVerifiedCreator": boolean
}
}
--]]
Summary
Properties
Properties inherited from PagesWhether or not the current page is the last page available.
Methods
Methods inherited from PagesReturns the items on the current page. The keys in the item are determined by the source of this object.
Iterates to the next page in the pages object, if possible.
Properties
Properties inherited from Pages
Methods
Properties inherited from Pages