Jump to content

memo كود كتابه في آديت والوصول إلى


Recommended Posts

  • Replies 97
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

كيف يجي الكلام تحته.؟

يقصد انه ما يغير الكلام يجي الكلام تحت

يعني شات

        GUIEditor.memo[1] = guiCreateMemo(9, 24, 364, 189, "", false, GUIEditor.window[1]) 
        GUIEditor.edit[1] = guiCreateEdit(16, 217, 296, 23, "", false, GUIEditor.window[1]) 
        GUIEditor.button[1] = guiCreateButton(317, 217, 56, 23, "Send", false, GUIEditor.window[1])     

:D آسهل عليكم

Link to comment
addEventHandler("onClientGUIClick", btn, 
    function() 
        local text = guiGetText(gui_edit) 
        guiSetText(gui_memo, text) 
    end, false 
) 

addEventHandler("onClientGUIClick", btn, 
    function() 
        local text = guiGetText(GUIEditor.edit[1]) 
        guiSetText(GUIEditor.memo[1], text) 
    end, false 
) 

مزبوط ؟ :|

Link to comment
addEventHandler("onClientGUIClick", btn, 
    function() 
        local text = guiGetText(gui_edit) 
        guiSetText(gui_memo, text) 
    end, false 
) 

addEventHandler("onClientGUIClick", btn, 
    function() 
        local text = guiGetText(GUIEditor.edit[1]) 
        guiSetText(GUIEditor.memo[1], text) 
    end, false 
) 

مزبوط ؟ :|

ايه مزبوط,

addEventHandler("onClientGUIClick", btn, -- اذا ضغط على زر btn 
    function() -- وظيفة 
        local text = guiGetText(gui_edit) -- نجيب الاديت 
        guiSetText(gui_memo, text) -- نربط الميمو بالاديت 
    end, false -- اغلاق 
) -- اغلاق 
Edited by Guest
Link to comment
addEventHandler("onClientGUIClick", btn, -- اذا ضغط على زر btn 
    function() -- وظيفة 
        local text = guiGetText(gui_edit) -- نجيب الاديت 
        guiSetText(gui_memo, text) -- نربط الميمو بالاديت 
    end, false -- اغلاق 
) -- اغلاق 

مازبط .. :roll:

Link to comment
addEventHandler("onClientGUIClick", btn, -- اذا ضغط على زر btn 
    function() -- وظيفة 
        local text = guiGetText(gui_edit) -- نجيب الاديت 
        guiSetText(gui_memo, text) -- نربط الميمو بالاديت 
    end, false -- اغلاق 
) -- اغلاق 

مازبط ..

addEventHandler("onClientGUIClick",root, 
function () 
if source == btn then 
     local text = guiGetText(Edit) 
      guiSetText(Memo,text) 
    end 
end,false) 
Link to comment
وش تبي بالضبط؟

الكود مايشتغل ..

انا ابي إذا كتبت في :arrowleft:

Edit :arrowup:

وضغطت على زر :arrowup:

يجي الكلام في :arrowup:

memo

وإذا كتبت مره ثانيه تجي تحت الكلمه اللي كتبتها أول مره :arrowup:

Link to comment
guiCreateButton 
guiCreateEdit 
guiCreateMemo 
'onClientGUIClick' 
guiGetText 
guiSetText 

حاول وبنساعدك

  
addEventHandler("onClientGUIClick",root, 
function () 
if source == GUIEditor.button[1] then 
     local text = guiGetText(GUIEditor.edit[1]) 
      guiSetText(GUIEditor.memo[1],text) 
    end 
end,false) 

:lol::lol::lol::lol::lol:

Link to comment
addEventHandler ( "onClientGUIClick", GUIEditor.button[1], 
    function ( ) 
        local text = guiGetText ( GUIEditor.edit[1] ) 
        if text ~= "" then  
            guiSetText ( GUIEditor.memo[1], text ) 
        end 
    end 
, false ) 

Link to comment
addEventHandler ( "onClientGUIClick", GUIEditor.button[1], 
    function ( ) 
        local text = guiGetText ( GUIEditor.edit[1] ) 
        if text ~= "" then  
            guiSetText ( GUIEditor.memo[1], text ) 
        end 
    end 
, false ) 

عناد مايشتغل ..

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...