| Well I have 2 progress bars in my program I am using as "Health Bars" using igui 
 The progress bar on the right side of the screen I want to invert so that the power decreases the opposite way of the first one.
 
 The Idea is to have the players health decline opposite of the enemy in a duel like below. Is this possible ?
 
 <----------------------------            ----------------------------->
 I have adjusted all of the variables to no avai trying negative numbers to get it ton invert...l. I thought of rotating it 180 but I dont know how to rotate a progress bar :(
 
 
 
 
 Self.progressBar2=New iGuiProgressBarH
		Self.progressBar2.AttachLast(Self.playfield)
		iGuiPrototype(Self.progressBar2, 200, 16)
		Self.progressBar2.Maximum (1000)
		
		Self.progressBar2.Value (250)
		'Self.progressBar.Percentage(50,50)
		Self.progressBar2.X =600
		Self.progressBar2.Y =30
		Self.progressBar2.surfaceRed=150  	
		Self.progressBar2.surfaceGreen=0  
		Self.progressBar2.surfaceBlue=0   
 
 |