Bir grupta n şekilleri gruplandırdığımda ve gruptan bir şekil seçip rengi değiştirdim, ancak bu gruptaki tüm şekillerdeki değişen rengi, bu jakın üstesinden nasıl geleceksin? Ben bütün şekiller renkElma biçiminde, powerpoint'te gruptaki seçili şeklin rengi nasıl değiştirilir?
tell application "Microsoft PowerPoint"
activate
set theShapeRange to shape range of selection of active window
set selected to child shape range of selection of active window
set n to (count shapes of theShapeRange)
repeat with i from 1 to n
tell shape i of theShapeRange
set fore color of fill format of it to {14, 235, 5}
set back color of fill format of it to {14, 235, 5}
end tell
end repeat
end tell
Tüm grubun rengini değiştirse bile, şu ana kadar sahip olduğunuz kodu gönderin. – jweaks