Jump to content

طلب كود Edit


Recommended Posts

مشكور بريستيج ~

~ ~ ~ ~ ~

طيب ممكن كود اذا ضغطت على زر ينسخ الكلام الي في الايديت

وكود اذا اختار من القريد ليست يجي في الايديت !

!

Event: "onClientGUIClick"

guiGetText 
setClipboard 

2 - ... :

guiGridListGetItemText 
guiGridListGetSelectedItem 
guiSetText 

ممكن تصليح !

addEventHandler('onClientGUIClick',guiRoot, 
function() 
   if ( source == GUIEditor.gridlist[1] ) then 
   1,2 = guiGridListGetSelectedItem(GUIEditor.gridlist[1]) 
   text = guiGridListGetItemText(GUIEditor.gridlist[1],1,2) 
   if ( text ) then 
   guiSetText(GUIEditor.edit[1],text) 
   end 
   end 
end 
) 

Link to comment
مشكور بريستيج ~

~ ~ ~ ~ ~

طيب ممكن كود اذا ضغطت على زر ينسخ الكلام الي في الايديت

وكود اذا اختار من القريد ليست يجي في الايديت !

!

Event: "onClientGUIClick"

guiGetText 
setClipboard 

2 - ... :

guiGridListGetItemText 
guiGridListGetSelectedItem 
guiSetText 

ممكن تصليح !

addEventHandler('onClientGUIClick',guiRoot, 
function() 
   if ( source == GUIEditor.gridlist[1] ) then 
   1,2 = guiGridListGetSelectedItem(GUIEditor.gridlist[1]) 
   text = guiGridListGetItemText(GUIEditor.gridlist[1],1,2) 
   if ( text ) then 
   guiSetText(GUIEditor.edit[1],text) 
   end 
   end 
end 
) 

أتمنى تقرا اساسيات برمجه

Link to comment

addEventHandler( "onClientGUIClick", resourceRoot, function(  ) 
  if ( source == GUIEditor.gridlist[1] ) then 
     if ( guiGridListGetSelectedItem( source ) ~= -1 ) then 
       local Text = guiGridListGetItemText ( source, guiGridListGetSelectedItem ( source ), 1 ) 
         guiSetText( GUIEditor.edit[1], tostring( Text ) ) 
       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...