
Originally Posted by
Blue ZX3
I am demanding one of two things, you fix your indicator problem and release an updated correctly working version, or send the source to me and I'll see if I can fix and send back to you.
This plugin is messing up any/all of my Media indicators, meaning they don't turn off/on at all. And no, it's not mine thats creating the problem, so don't even go there...
what indicator problem are you talking about? the problem with custom indicators not turning off when they're supposed to? I thought it was determined that my plugins were NOT the problem but there is some issue in road runner. John told me that he didnt have my plugin loaded and he was experiencing the same issue. I can completely remove the rating star indicators in movietimes and i have the same problem. My indicators are setup and used just like the example plugin instructs them to be. Hell my traffic plugin doesnt even HAVE indicators and thats the plugin i had loaded wheni first noticed this issue. I'm not releasing the source in its current form but if you'd like to "critique" my indicator function here it is
Code:
Public Function ReturnIndicator(IND As String) As String
'Default (No Action)
ReturnIndicator = "False"
Select Case LCase(IND)
Case "movie1star"
ReturnIndicator = Movie1Star
Case "movie2star"
ReturnIndicator = Movie2Star
Case "movie3star"
ReturnIndicator = Movie3Star
Case "movie4star"
ReturnIndicator = Movie4Star
Case "movie5star"
ReturnIndicator = Movie5Star
'Specify whatever and whichever indicators you wish to create
'You can add as many as you'd like, and you can process complex indicators as long
'as you parse them yourself (i.e. "mycomplexindicator;parameter")
'Case "myindicator2"
'Insert Code here to return "True", "False" or Path name
End Select
End Function
fact of the matter is guino knows about the issue and john does too now. I'm not gonna go thru the hassle of digging thru code for no reason. Hell, load the example plugin and see if you have the same issue. My guess is that u will.
Bookmarks