Yeah I still have to do that Fade-In and Fade-Out,Sleep and individual speed sensitivity from each point to point.
I'm going to leak some of my code:
Code:
Try
For motherloop = 0 To ListBox1.Items.Count - 1
ListBox1.SelectedIndex = line
X1 = ListBox1.SelectedItem.ToString
ListBox1.SelectedIndex = line + 1
X2 = ListBox1.SelectedItem.ToString
XDif = (X1 - X2) / Sensitivity
For daloop = 0 To (Sensitivity - 1)
X = X1 - (XDif * (daloop + 1))
System.Threading.Thread.Sleep(5)
Next
line += 1
'WriteMemory
Next
Catch
End Try
It's a bit of math and fugly code.
X1=First Point
X2=Second Point
XDif=X1-X2 / Sensitivty(default 10)
So Lets say X1=2 and X2=1 then XDif=0.1
Now X=X1 - 0.1 and do that 10 times so you go to X2 the second point.
Sensitivity is going to be the speed,thread.sleep is going to toggle the fade in and fade out and sleeping is going to be added.
Bookmarks