怎样在flash里导入mp3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在flash里导入mp3相关的知识,希望对你有一定的参考价值。

导入了mp3后,要把它从库里拉到哪里才可以显示侦?

导入到FLASH中的音乐必须是MP3格式的,点文件 导入 然后可以导入到舞台或是导入到库.
点音乐所在的帧,查看属性,选中属性中的音乐,并把其设置为 数据流 ,这样就可以在舞台编辑状态下边听音乐边编辑图片及影片剪辑了.
参考技术A 教你,看来打字是说不太清楚,你看了也一定弄不太透

delphi如何获取文件夹内的MP3文件数量

麻烦给写个函数
比如d:\mymp3f文件夹中的文件数量

用控件啊 filelistbox
把它的mask属性设置成 *.mp3
然后把d:\ 里的文件全部导入到filelistbox里。这样就只能显示mp3格式的文件
最后用 filelistbox.items.count 得到数量
参考技术A type
// 找到一个文件后的回调函数,返回True则继续找,返回False就停止
TOnGotName = function( sName : string; bIsDir : Boolean ) : Boolean;

var
nFileCount : Integer = 0;
nDirCount : Integer = 0;

function MyOnGot( sName : string; bIsDir : Boolean ) : Boolean;
begin
// 找到后干点儿啥...以下简单统计目录数和文件数是个最简单的示例
if bIsDir then
Inc( nDirCount )
else
Inc( nFileCount );
Result := True;
end;

procedure GetCount_CaredFiles(
const sPath : string;
const sExtName : string;
var nResult : Integer;
bIncludeSubDir : Boolean = True;
const fnOnGot : TOnGotName = nil
);
内嵌函数:是否当前目录或者上级目录
function IsCurrentOrAboveDir( rFD : TWin32FindData ) : Boolean;
begin
Result := False;
with rFD do
case StrLen( cFileName ) of
1: Result := cFileName[0] = '.';
2: Result := ( cFileName[0] = '.' ) and ( cFileName[1] = '.' );
end;
end;
var
H : THandle;
R : TWin32FindData;
S : string;
begin
S := Format( '%s\*.*', [ ExpandFileName( sPath ) ] );
H := Windows.FindFirstFile( PChar( S ), R );
if H <> INVALID_HANDLE_VALUE then
begin
repeat
S := Format( '%s\%s', [ sPath, R.cFileName ] );
if R.dwFileAttributes and FILE_ATTRIBUTE_DIRECTORY <> 0 then
begin
// 无需处理当前子目录或上级目录(./..),直接下一轮循环
if IsCurrentOrAboveDir( R ) then
Continue;
if Assigned( fnOnGot ) then
if not fnOnGot( S, True ) then
Break;
if bIncludeSubDir then
GetCount_CaredFiles( S, sExtName, nResult, True );
end
else
begin
if SameText( ExtractFileExt( S ), sExtName ) then
Inc( nResult );
if Assigned( fnOnGot ) then
if not fnOnGot( S, False ) then
Break;
end;
until not Windows.FindNextFile( H, R );
Windows.FindClose( H );
end;
end;

调用方法:
var
nCountMP3 : Integer;

nCountMP3 := 0;
// 只在指定目录中找,不找子目录下的
GetCount_CaredFiles( 'D:\MyMP3F', '.mp3', nCountMP3, False );
// 在指定目录及其子目录中递归查找
GetCount_CaredFiles( 'D:\MyMP3F', '.mp3', nCountMP3 );
// 不但查找,找到后还想干点儿啥
GetCount_CaredFiles( 'D:\MyMP3F', '.mp3', nCountMP3, True, MyOnGot );本回答被提问者和网友采纳

以上是关于怎样在flash里导入mp3的主要内容,如果未能解决你的问题,请参考以下文章

网上下载的一些mp3歌曲,却不能导入Flash,怎么办?

怎么在flash中加入mp3音乐

我的flash导入不了MP3 怎么回事

在Flash里面导入声音(mp3格式),导入不成功,应该怎么解决?

flash中mp3格式文件不能导入

Adobe Flash CS5 导入mp3音乐文件失败,怎么处理?