Here's a weird one that I cannot resolve.
I have an indicator that I Label "Sw" - to stop all of the parameters spewing across the top of my screen.
I have a button that can Toggle any indicator between a Visible and an Invisible state. ( I put this on the EcoSystem if anyone is interested)
In trying to update it I have come across a small issue.
I Use a key combo with my button click, like so
if(Keyboard.IsKeyDown(Key.LeftAlt))
{
str1 = "Sw";
}
So if I label my indicator Sw - it toggles it's visibility state with no issues.
I can't work out a way to get "Sw" into my string str1, as a text with the quotation marks included.
anyone know a way I could acheive this?
thanks

Comment