Jump to content

Recommended Posts

السلام عليكم
ي جماعة الخير عندي سؤال

انا الحين مسوي قريد ليست ومزبط الراو وكلشي

لكن ابيها يوم تضغط دبل كلك ع راو من الراوات يفتح لك لوحة معينة وكذاا شلون؟

Link to comment
Just now, *RayaN-Alharbi. said:

السلام عليكم
ي جماعة الخير عندي سؤال

انا الحين مسوي قريد ليست ومزبط الراو وكلشي

لكن ابيها يوم تضغط دبل كلك ع راو من الراوات يفتح لك لوحة معينة وكذاا شلون؟

addEventHandler = "onClientGUIDoubleClick"
guiGridListGetSelectedItem
guiSetVisible

 

Edited by #SycroX
Link to comment
Just now, #SycroX said:

addEventHandler = "onClientDoubleClick"
guiGridListGetSelectedItem
guiSetVisible

 

ايه بس رح يكون فيه اكثر من راو ابي مثلا الراو الاول يفك لوحة توب الراو الثاني لوحة الفيب وكذا

Link to comment

addEventHandler("onClientGUIDoubleClick",root,
  function
if ( source == YourGridList ) then
local selectd = guiGridListGetSelectedItem( YourGridList )
if selected == 0 then
guiSetVisible(wnd, false)
guiSetVisible(YourWindow, true)
end
end
end
)

 

wnd = اسم لوحة حقتك الي تبيها تتقفل لما تضغط مرتين

YourWindow = اللوحة الي تبيها تفتح مكان اللوحة حقتك

YourGridList = اسم الجريد ليست حقك الي رح يضغط فيه دوبل كليك

if selected == 0 then -- يتحقق انه الرو الاول الي اختاره اللاعب

0 = الرو الاول

اتمني تكون فهمت شي ض1

  • Confused 1
Link to comment
7 hours ago, #Himoo said:

addEventHandler("onClientGUIDoubleClick",root,
  function
if ( source == YourGridList ) then
local selectd = guiGridListGetSelectedItem( YourGridList )
if selected == 0 then
guiSetVisible(wnd, false)
guiSetVisible(YourWindow, true)
end
end
end
)

 

wnd = اسم لوحة حقتك الي تبيها تتقفل لما تضغط مرتين

YourWindow = اللوحة الي تبيها تفتح مكان اللوحة حقتك

YourGridList = اسم الجريد ليست حقك الي رح يضغط فيه دوبل كليك

if selected == 0 then -- يتحقق انه الرو الاول الي اختاره اللاعب

0 = الرو الاول

اتمني تكون فهمت شي ض1

الرو الاول = 0

 الثاني = 1

.؟ كذا

Link to comment

....

14 hours ago, #Himoo said:

addEventHandler("onClientGUIDoubleClick",root,
  function
if ( source == YourGridList ) then
local selectd = guiGridListGetSelectedItem( YourGridList )
if selected == 0 then
guiSetVisible(wnd, false)
guiSetVisible(YourWindow, true)
end
end
end
)

 

wnd = اسم لوحة حقتك الي تبيها تتقفل لما تضغط مرتين

YourWindow = اللوحة الي تبيها تفتح مكان اللوحة حقتك

YourGridList = اسم الجريد ليست حقك الي رح يضغط فيه دوبل كليك

if selected == 0 then -- يتحقق انه الرو الاول الي اختاره اللاعب

0 = الرو الاول

اتمني تكون فهمت شي ض1

حبيت اقلك <> تراك ناسي () بعد الفانكشن + الكود مدري شفيه مو راضي يشتغل

عالعمومم جربت كود جديد

addEventHandler("onClientGUIDoubleClick",root,
function ( )
	if source == Grid then
		    local selectedRow = guiGridListGetSelectedItem( Grid )
			if selectedRow == 1 then
			guiSetVisible(Help, false)
		end	end
	end)

هذاا للفاده <> حبيت احطه

Edited by *RayaN-Alharbi.
Link to comment
addEventHandler("onClientGUIDoubleClick", guiRoot,
	function()
		if source == YourGridList then
			local selected = guiGridListGetSelectedItem(YourGridList)
			if selected and selected ~= -1 then
				if selected == 0 then
					guiSetVisible(wnd, false)
					guiSetVisible(YourWindow, true)
				end
			end
		end
	end
)

 

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...