How to hide source and design buttons (Flash Builder)? -


i using flash builder 4.6, want find way hide source & design buttons or can switch active buttons white gray or lavender (because prefer working @ night, dark tones make eyes feel pleasant)

enter image description here

do have idea, please!

if wanting make button hidden can set visible property false under whatever criteria want hidden. change color, in properties window of component view properties wish change , modify them in similar fashion.

if(condition){ sourcebutton.visible = false; } 

Comments

Popular posts from this blog

winapi - How to get a user input on a MessageBox on C++? -

c++ - How call method from Qt GUI in background worker thread using QThread -