عبد الهادي بهاب
23-08-2015, 02:58 AM
السلام عليكم
هذا مثال عن استعمال اضافة ButtonColor و التي يمكن تحميلها من هنا
..........من هنـــــــــــــــــــــــ ــــا - (http://www.amsplugins.com/details.asp?id=96)--------------
بحيث و من خلال كود يوجد في هذا البليجين يمكن التحكم في كل لون نص و ليس خلفية لكل كائن يمكن ان تكتب فيه نصا
هذا هو الكود ............طويل قليلا لان فيه كل الكائنات ............... و طبعا تفعيله ثقيل نوعا ما ..........
result = ColorButton.GetColor("Plugin1");
----------الاشكال--------
Shape.SetFillColor("Plugin2", result);
for i=1,14 do
-----------النصوص------
-- Populate table from item properties
tProperties = Label.GetProperties("Label"..i);
tProperties.ColorNormal = result;
-- Set the properties of a label object
Label.SetProperties("Label"..i, {ColorNormal=result});
end
-----------------
------------الانبوتات--------
-- Create properties table (only include items that should be changed)
tblInputProps = {};
tblInputProps = Input.GetProperties("Input1");
tblInputProps.FontColor = result;
-- Set the properties of an input object
Input.SetProperties("Input1", tblInputProps);
------------الفقرات-------------
-- Initialize property table
tblParaProps = {};
tblParaProps.ColorNormal = result;
-- Set the properties of a paragraph object
Paragraph.SetProperties("Paragraph1", tblParaProps);
------------richtext-----------
-- Create a table for the formatting.
tbFormat = {TextColor=result};
-- Set the selected text to bold.
RichText.SetSelectionFormat("RichText1", tbFormat, true);
-----------------tree-------------
tProps = Tree.GetProperties("Tree1");
tProps.TextColor = result;
-- Apply the new properties to the tree object.
Tree.SetProperties("Tree1", tProps);
------------الازرار---------
Button.SetProperties("Button1",{ColorNormal=result});
---------------listbos
tblListboxProps = {};
tblListboxProps.TextColor = result;
ListBox.SetProperties("ListBox1", tblListboxProps);
--------------ComboBox--------------
tblComboProps = {};
tblComboProps.TextColor = result
ComboBox.SetProperties("ComboBox1",tblComboProps);
تحميل الملف المفتوح :
http://www.gulfup.com/?KHz1s7
تقبلوا فائق تحاتي و لا تنسوا الدعاء طبعا
هذا مثال عن استعمال اضافة ButtonColor و التي يمكن تحميلها من هنا
..........من هنـــــــــــــــــــــــ ــــا - (http://www.amsplugins.com/details.asp?id=96)--------------
بحيث و من خلال كود يوجد في هذا البليجين يمكن التحكم في كل لون نص و ليس خلفية لكل كائن يمكن ان تكتب فيه نصا
هذا هو الكود ............طويل قليلا لان فيه كل الكائنات ............... و طبعا تفعيله ثقيل نوعا ما ..........
result = ColorButton.GetColor("Plugin1");
----------الاشكال--------
Shape.SetFillColor("Plugin2", result);
for i=1,14 do
-----------النصوص------
-- Populate table from item properties
tProperties = Label.GetProperties("Label"..i);
tProperties.ColorNormal = result;
-- Set the properties of a label object
Label.SetProperties("Label"..i, {ColorNormal=result});
end
-----------------
------------الانبوتات--------
-- Create properties table (only include items that should be changed)
tblInputProps = {};
tblInputProps = Input.GetProperties("Input1");
tblInputProps.FontColor = result;
-- Set the properties of an input object
Input.SetProperties("Input1", tblInputProps);
------------الفقرات-------------
-- Initialize property table
tblParaProps = {};
tblParaProps.ColorNormal = result;
-- Set the properties of a paragraph object
Paragraph.SetProperties("Paragraph1", tblParaProps);
------------richtext-----------
-- Create a table for the formatting.
tbFormat = {TextColor=result};
-- Set the selected text to bold.
RichText.SetSelectionFormat("RichText1", tbFormat, true);
-----------------tree-------------
tProps = Tree.GetProperties("Tree1");
tProps.TextColor = result;
-- Apply the new properties to the tree object.
Tree.SetProperties("Tree1", tProps);
------------الازرار---------
Button.SetProperties("Button1",{ColorNormal=result});
---------------listbos
tblListboxProps = {};
tblListboxProps.TextColor = result;
ListBox.SetProperties("ListBox1", tblListboxProps);
--------------ComboBox--------------
tblComboProps = {};
tblComboProps.TextColor = result
ComboBox.SetProperties("ComboBox1",tblComboProps);
تحميل الملف المفتوح :
http://www.gulfup.com/?KHz1s7
تقبلوا فائق تحاتي و لا تنسوا الدعاء طبعا