Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: App.Path not work

  1. #11
    The Curator
    Auto Apps:loading...
    Blue ZX3's Avatar
    Join Date
    Aug 2004
    Location
    Chicago area,IL
    Posts
    5,077
    And what is the assoc code that would call that sub cmd?
    RideRunner...The #1 FE, PERIOD.

    Current Project: DFXVoice [v1.0 Released]
    Next in line: RRMedia v2.0

    DFX 5.1.1 Skin
    Appstore Link

    My RideRunner Plugins
    RRMedia
    RRExtended
    DFXVoice

    "There are no bugs - only undocumented features."

  2. #12
    Constant Bitrate spidermunz's Avatar
    Join Date
    Dec 2006
    Location
    italy, sardinia
    Posts
    206
    Public Function ProcessCommand(CMD As String, frm As Object) As Integer
    Dim rrSDK As Object
    Set rrSDK = CreateObject("RideRunner.SDK")
    Dim Index As Integer

    Select Case LCase(CMD)
    ....
    Case "mutesilabs"
    SetMute True
    silabmute = True
    ProcessCommand = 2 'Command completed

    Case "unmutesilabs"
    SetMute False
    silabmute = False
    ProcessCommand = 2 'Command completed
    .....

  3. #13
    The Curator
    Auto Apps:loading...
    Blue ZX3's Avatar
    Join Date
    Aug 2004
    Location
    Chicago area,IL
    Posts
    5,077
    That should work. IDK, try SetMute (False)

    I do also see a BIG no no! Creating RR's object like that is not the way to do it, that would create a obj ref with every cmd that flows through your plugin, and is a waste of CPU that isn't doing anything if not executing any of your cmds.

    your better off moving the "Dim rrSDK As Object" line to the top of the RRExtention class and then move the "Set rrSDK = CreateObject("RideRunner.SDK")" line inside the RRExtention Class_Initialize function.

    This way your only creating it once when the plugin is loaded.
    RideRunner...The #1 FE, PERIOD.

    Current Project: DFXVoice [v1.0 Released]
    Next in line: RRMedia v2.0

    DFX 5.1.1 Skin
    Appstore Link

    My RideRunner Plugins
    RRMedia
    RRExtended
    DFXVoice

    "There are no bugs - only undocumented features."

Page 2 of 2 FirstFirst 12

Similar Threads

  1. How to make Winamp TV Plugin work with RR
    By ramez75 in forum Road Runner
    Replies: 28
    Last Post: 09-03-2010, 12:17 AM
  2. Stealthy surfing at work?
    By e_z_street in forum Off Topic
    Replies: 15
    Last Post: 10-07-2009, 02:30 AM
  3. Quality of work
    By BMVEE in forum RR Skins
    Replies: 3
    Last Post: 03-14-2007, 08:38 AM
  4. Prison vs Work
    By ACHIEVER in forum Off Topic
    Replies: 20
    Last Post: 04-15-2005, 01:53 PM
  5. Replies: 4
    Last Post: 11-18-2002, 08:59 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •