Run a macro to update selected shape color after every 3 seconds

ashni

New Member
Joined
Jun 13, 2016
Messages
32
I want this macro to run after every 3 seconds so that each time i move a selected shape among many shapes its color should change.
But this code only works once... It doesn't repeat or doesn't change the color of next shape i select and move to particular position.

Code:
Public RunWhen As Double
Public Const cRunIntervalSeconds = 2
Public Const cRunWhat = "UpdateColor"


Sub StartTimer()
RunWhen = Now + TimeSerial(0, 0, cRunIntervalSeconds)
Application.OnTime earliesttime:=RunWhen, procedure:=cRunWhat, _
     schedule:=True
End Sub


Sub StopTimer()
   On Error Resume Next
   Application.OnTime earliesttime:=RunWhen, _
       procedure:=cRunWhat, schedule:=False
End Sub


Sub UpdateColor()
Dim ActiveShape As Shape
Dim UserSelection As Variant
Dim d As Integer
  Set UserSelection = ActiveWindow.Selection
  On Error GoTo NoShapeSelected
    Set ActiveShape = ActiveSheet.Shapes(UserSelection.Name)
  On Error Resume Next
            With ActiveShape
                   d = ActiveShape.Left
                   If d >= 0 And d <= 123.5 Then
                   Selection.ShapeRange.Fill.ForeColor.RGB = RGB(255, 128, 0)
                   ElseIf d >= 124 And d <= 336.75 Then
                   Selection.ShapeRange.Fill.ForeColor.RGB = RGB(0, 102, 204)
                   ElseIf d >= 336.76 And d <= 547.5 Then
                   Selection.ShapeRange.Fill.ForeColor.RGB = RGB(0, 153, 0)
                   ElseIf d >= 547.51 And d <= 776.25 Then
                   Selection.ShapeRange.Fill.ForeColor.RGB = RGB(219, 38, 10)
                   ElseIf d >= 776.25 Then
                   Selection.ShapeRange.Fill.ForeColor.RGB = RGB(211, 211, 211)
                   End If
               End With
Exit Sub
NoShapeSelected:
  MsgBox "You do not have a shape selected!"


Call StartTimer
End Sub

Please someone help me out.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
My intention is to call StartTimer only once. And after that whenever i move any shape among say 10 shapes the shape color should change according to its position.
I should not have to click on say-UpdateColor button everytime i move it.
 
Upvote 0
I think you're nearly there. Try this:

Code:
Public Const cRunIntervalSeconds = 2
Public Const cRunWhat = "UpdateColor"
Public RunWhen As Variant
Public TimerStarted As Boolean
Sub StartTimer()

    RunWhen = Now + TimeSerial(0, 0, cRunIntervalSeconds)
    Application.OnTime earliesttime:=RunWhen, procedure:=cRunWhat, schedule:=True
    TimerStarted = True
    
End Sub
Sub StopTimer()

    On Error Resume Next
    Application.OnTime earliesttime:=RunWhen, procedure:=cRunWhat, schedule:=False
    TimerStarted = False
   
End Sub
Sub UpdateColor()

    Dim ActiveShape As Shape
    Dim UserSelection As Variant
    Dim shapeLeft As Single
    
    Set UserSelection = ActiveWindow.Selection
    On Error Resume Next
    Err.Clear
    Set ActiveShape = ActiveSheet.Shapes(UserSelection.Name)
    
    If Err.Number = 0 Then
        With ActiveShape
            shapeLeft = ActiveShape.Left
            If shapeLeft >= 0 And shapeLeft <= 123.5 Then
                Selection.ShapeRange.Fill.ForeColor.RGB = RGB(255, 128, 0)
            ElseIf shapeLeft >= 124 And shapeLeft <= 336.75 Then
                Selection.ShapeRange.Fill.ForeColor.RGB = RGB(0, 102, 204)
            ElseIf shapeLeft >= 336.76 And shapeLeft <= 547.5 Then
                Selection.ShapeRange.Fill.ForeColor.RGB = RGB(0, 153, 0)
            ElseIf shapeLeft >= 547.51 And shapeLeft <= 776.25 Then
                Selection.ShapeRange.Fill.ForeColor.RGB = RGB(219, 38, 10)
            ElseIf shapeLeft >= 776.25 Then
                Selection.ShapeRange.Fill.ForeColor.RGB = RGB(211, 211, 211)
            End If
        End With
    End If
    
    If TimerStarted Then Call StartTimer

End Sub

Call StartTimer to start it checking. Call StopTimer to stop it. I tested this out on a worksheet and it seemed to work as intended I think. I took out the MessageBox because I thought that would be very annoying :)

WBD
 
Upvote 0

Forum statistics

Threads
1,214,400
Messages
6,119,289
Members
448,885
Latest member
LokiSonic

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top