SCi Posted January 3, 2022 Share Posted January 3, 2022 كيف اخلي خانه الاديت للارقام فقط ماتقدر تكتب حروف Link to comment
#\_oskar_/# Posted January 4, 2022 Share Posted January 4, 2022 guiGetText + tonumber 1 Link to comment
Mr.Hugin Posted January 4, 2022 Share Posted January 4, 2022 22 hours ago, SCi said: كيف اخلي خانه الاديت للارقام فقط ماتقدر تكتب حروف تقدر من خلال guiGetText + tonumber نعطيك مثال بصيط عنها local number = tonumber(guiGetText(dummyGUIElement )) if(number) then end هاذا المثال بصيط وهوه رقم 1 Link to comment
SCi Posted January 4, 2022 Author Share Posted January 4, 2022 46 minutes ago, Mr.Hugin said: تقدر من خلال guiGetText + tonumber نعطيك مثال بصيط عنها local number = tonumber(guiGetText(dummyGUIElement )) if(number) then end هاذا المثال بصيط وهوه رقم كفوو يالغالي Link to comment
#\_oskar_/# Posted January 4, 2022 Share Posted January 4, 2022 نسيت اضيفلك الحدث دا onClientGUIChanged وظيفته انك لما تكتب شئ بالايديت يغيرها دا مثال كتبته من الفون ولم اجربه بس حطيته للتوضيح فقط addEventHandler("onClientGUIChanged", editBox, function() local num = guiGetText (editBox) if not tonumber (num) then return guiSetText (editBox,string.gsub(num,'[^%d]','') end end) 2 Link to comment
SCi Posted January 5, 2022 Author Share Posted January 5, 2022 18 hours ago, #\_oskar_/# said: نسيت اضيفلك الحدث دا onClientGUIChanged وظيفته انك لما تكتب شئ بالايديت يغيرها دا مثال كتبته من الفون ولم اجربه بس حطيته للتوضيح فقط addEventHandler("onClientGUIChanged", editBox, function() local num = guiGetText (editBox) if not tonumber (num) then return guiSetText (editBox,string.gsub(num,'[^%d]','') end end) كفووووووووو يالغالي 1 Link to comment
Mr.Hugin Posted January 5, 2022 Share Posted January 5, 2022 On 04/01/2022 at 23:12, SCi said: كفوو يالغالي كفوك 1 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