vba - How to change text colour when text box clicked in Macro enabled Powerpoint 2013? -


so text change colour grey black... how do on powerpoint 2013 , apply code? sorry in advance not supplying code don't know start.

i figured out myself...

note: have set forecolor color before begin slideshow presentation.

this example shows how change preset color black

private sub textbox1_gotfocus()      textbox1.forecolor = rgb(0, 0, 0)  end sub

.


Comments