darbka2002 Posted June 16, 2017 Share Posted June 16, 2017 سلام عليكم , عندى مشكلة فى downloadFile انا بكتب اسم الملف اللى عايز احملة بس المشكلة ان الملف لما بيتحمل بيكون حجمة 0 مع العلم ان ضايف الملف فى meta و مخلى download="false" Link to comment
` Allawi Posted June 16, 2017 Share Posted June 16, 2017 ايش نوع الملف اللي تبي تحمله ؟ Link to comment
darbka2002 Posted June 16, 2017 Author Share Posted June 16, 2017 صور من نوع png و استخدم downloadFile("test.png") Link to comment
` Allawi Posted June 16, 2017 Share Posted June 16, 2017 -: أستخدم "onClientFileDownloadComplete" لكي تقوم بإظهار الصورة عندما يتم التحميل Link to comment
darbka2002 Posted June 16, 2017 Author Share Posted June 16, 2017 استخدمتها من قبل و ما نفعت الملف بيتحمل و لكن لما اخش على اشوفة فى مكان التحميل فى \MTA San Andreas 1.5\mods\deathmatch\resources القى الصورة مساحتها صفر كيلو بيت و جربت هذا الموضوع مع الكثير من انواع الملفات و فيها نفس المشكلة Link to comment
` Allawi Posted June 17, 2017 Share Posted June 17, 2017 ضع الأكواد المستخدمة ممكن يكون فيها خطأ Link to comment
darbka2002 Posted June 17, 2017 Author Share Posted June 17, 2017 function onThisResourceStart ( ) downloadFile ( "images/background.jpg" ) end addEventHandler ( "onClientResourceStart", resourceRoot, onThisResourceStart ) function onDownloadFinish ( file, success ) if ( source == resourceRoot ) then if ( success ) then if ( file == "images/background.jpg" ) then outputChatBox ( "test.jpg downloaded" ) end else if ( file == "images/background.jpg" ) then outputChatBox ( "test.jpg failed to download" ) end end end end addEventHandler ( "onClientFileDownloadComplete", root, onDownloadFinish ) Link to comment
` Allawi Posted June 17, 2017 Share Posted June 17, 2017 ضع الـ meta.xml png -- وأنت تقول صيغة الصورة jpg -- وفي الكود موضوغ Link to comment
#STZ Posted June 17, 2017 Share Posted June 17, 2017 download="false" ** لوحدها بتلغي التحميل ** Link to comment
Dr.Marco Posted June 17, 2017 Share Posted June 17, 2017 سوي صورة png وعدل على ميتا حقك Link to comment
darbka2002 Posted June 18, 2017 Author Share Posted June 18, 2017 <meta> <min_mta_version client="1.5.4" server="1.5.4" /> <script src="client.lua" type="client" cache="false"/> <file src="images/background.jpg" download="false"/> </meta> #Edit: تمام انا حولت الصورة لى .png بس دلوقتى بيطلع فى الشات background.png failed to download اية الحل Link to comment
A7M8D Posted June 19, 2017 Share Posted June 19, 2017 (edited) انت الحين خفيت التحميل لازم ترجع تحمله وماراح يظهر في الشريط addEventHandler ( "onClientResourceStart", root, function () downloadFile ("background.png") end ) Edited June 19, 2017 by #MR.NaiF Link to comment
darbka2002 Posted June 20, 2017 Author Share Posted June 20, 2017 جربت الكود حقق و ما نفع لسا بردو بيظهر نفس الرسالة background.png failed to download هذا هوا الكود addEventHandler ( "onClientResourceStart", root, function () downloadFile ("images/background.png") end ) function onDownloadFinish ( file, success ) if ( source == resourceRoot ) then if ( success ) then if ( file == "images/background.png" ) then outputChatBox ( "background.png downloaded" ) end else if ( file == "images/background.png" ) then outputChatBox ( "background.png failed to download" ) end end end end addEventHandler ( "onClientFileDownloadComplete", root, onDownloadFinish ) Link to comment
MR.StoRm Posted June 20, 2017 Share Posted June 20, 2017 On ١٩/٦/٢٠١٧ at 00:51, darbka2002 said: <meta> <min_mta_version client="1.5.4" server="1.5.4" /> <script src="client.lua" type="client" cache="false"/> <file src="images/background.jpg" download="false"/> </meta> #Edit: تمام انا حولت الصورة لى .png بس دلوقتى بيطلع فى الشات background.png failed to download اية الحل متأكد انك مسوي ملف images ?? Link to comment
A7M8D Posted June 20, 2017 Share Posted June 20, 2017 @darbka2002 الكود صحيح الرجاء التاكد من صحة مسار الصورة Link to comment
darbka2002 Posted June 23, 2017 Author Share Posted June 23, 2017 نعم متئكد ان مسار الصورة images Link to comment
Dr.Marco Posted June 23, 2017 Share Posted June 23, 2017 38 minutes ago, darbka2002 said: نعم متئكد ان مسار الصورة images متاكد انك حولت الصورة من ملف الميتا <meta> <min_mta_version client="1.5.4" server="1.5.4" /> <script src="client.lua" type="client" cache="false"/> <file src="images/background.jpg" download="false"/>-------------- background.pngسوي </meta> Link to comment
darbka2002 Posted June 24, 2017 Author Share Posted June 24, 2017 نعم معدلها الى .png و المشكلة لسا مستمرة Link to comment
A7M8D Posted June 24, 2017 Share Posted June 24, 2017 addEventHandler ( "onClientResourceStart", root, function () downloadFile ("images/background.png") end ) الكود صحيح Link to comment
iMr.WiFi..! Posted June 24, 2017 Share Posted June 24, 2017 6 hours ago, darbka2002 said: نعم معدلها الى .png و المشكلة لسا مستمرة حط الميتا .. Link to comment
darbka2002 Posted June 24, 2017 Author Share Posted June 24, 2017 المشكلة كانت فى mta مسحت اللعبة و عملتلها اعادة تصطيب و الان المشكلة اتحلت شكرا على مساعدتكم Link to comment
Dr.Marco Posted June 24, 2017 Share Posted June 24, 2017 12 minutes ago, darbka2002 said: المشكلة كانت فى mta مسحت اللعبة و عملتلها اعادة تصطيب و الان المشكلة اتحلت شكرا على مساعدتكم العفوو Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now