Page 52 of 54 FirstFirst ... 242434445464748495051525354 LastLast
Results 511 to 520 of 532

Thread: Needed: BETA Testers for Google Earth Plugin

  1. #511
    Newbie
    Join Date
    Jul 2010
    Posts
    5
    I think this is what I am doing wrong. Guessing i should be adding more then just GE_START to the code part of the button. I am opening up the skin and choosing the IGuidance button and changing the box that has Code next to it.
    Quote Originally Posted by jeromejas View Post

    5. Make a button with the code "GE_START" to load the above skin with GE in it. - I opened skin editor and selected the IGuidance button and changed Code to be "GE_START"
    also where can I find this test skin?

  2. #512
    Confusion Master
    Auto Apps:loading...
    Enforcer's Avatar
    Join Date
    Sep 2003
    Location
    If you go down to the woods today, You're sure of
    Posts
    14,456
    Quote Originally Posted by jeromejas View Post
    also where can I find this test skin?

    This is the test skin that was supplied with the original plugin, it's pretty basic.
    Attached Files Attached Files

  3. #513
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,437

    Smile

    I need to load a specific .kml file.

    How can i do that with RRearth6 ?

  4. #514
    RoadRunner Mastermind
    Auto Apps:loading...
    guino's Avatar
    Join Date
    Nov 2004
    Location
    Toronto, Canada
    Posts
    9,814
    if you load your .kml file into GE6 outside RR you have the option to save it to your list so anytime you re-open GE6 (including inside RR) it should already be loaded.
    Ride Runner RR's Myspace

    "Being happy is not about having what you want, it's about wanting what you have."
    "The best things in life are always free - but that doesn't mean money can't buy you good things."

  5. #515
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,437

    Smile

    Quote Originally Posted by guino View Post
    if you load your .kml file into GE6 outside RR you have the option to save it to your list so anytime you re-open GE6 (including inside RR) it should already be loaded.
    I should like to do that inside RR

  6. #516
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,437

    Smile

    I have found a solution with vb6

    Code:
    'Exemple de chargement de données KML dans googleEarth
    Private Function Loadkml()
        Dim GEI As ApplicationGE
        Dim Fichier As String
        Set GEI = CreateObject("GoogleEarth.ApplicationGE")
        'Attente que GoogleEarth soit initialisé
        While (GEI.IsInitialized = 0)
        DoEvents
        Wend
        Fichier = App.Path & "\Google.kml"
        Call GEI.OpenKmlFile(Fichier, 1) ' 1= pas de message dans GoogleEarth si le fichier n'existe pas par exemple
    End Function
    I have added into the gpsexec.dll and that run very well !

    It is possible to add this option into the rrearth.dll ?

  7. #517
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,437

    Smile

    I try to launch Google Earth without it's plugin .

    So i try this command but without success:
    Code:
    "LOAD;RREARTH.SKIN||RUN;$PLUGINSPATH$GPSExec\Google.kml;Google Earth"
    Do you think that it's not possible or my command is bad ?

  8. #518
    Confusion Master
    Auto Apps:loading...
    Enforcer's Avatar
    Join Date
    Sep 2003
    Location
    If you go down to the woods today, You're sure of
    Posts
    14,456
    Quote Originally Posted by pierrotm777 View Post
    I try to launch Google Earth without it's plugin .

    So i try this command but without success:
    Code:
    "LOAD;RREARTH.SKIN||RUN;$PLUGINSPATH$GPSExec\Google.kml;Google Earth"
    Do you think that it's not possible or my command is bad ?


    Well you are not running a program, you are trying to run a file and hoping that it gets opened by the program which is associated to it. Now that may work in explorer by clicking on it, but don't think RR will open a file by association.

    IOW put the path to the google earth exe and then have the KML file as a command line parameter.

  9. #519
    RoadRunner Mastermind
    Auto Apps:loading...
    guino's Avatar
    Join Date
    Nov 2004
    Location
    Toronto, Canada
    Posts
    9,814
    What Enforcer said should work... something like:

    PHP Code:
    "GE_START||RUN;C:\Program Files\Google\Google Earth\client\googleearth.exe|$PLUGINSPATH$GPSExec\Google.kml" 
    Ride Runner RR's Myspace

    "Being happy is not about having what you want, it's about wanting what you have."
    "The best things in life are always free - but that doesn't mean money can't buy you good things."

  10. #520
    Raw Wave pierrotm777's Avatar
    Join Date
    May 2008
    Location
    Bordeaux, France
    Posts
    2,437
    Thanks Enforcer and Guino,
    It's exactly that i found yesterday and tried into a plugin with a certain succes .

    Code:
            Case "ini2kml" 'visualisation dans GoogleEarth
                If ExistFile(App.Path & "\google.kml") Then
                    If RRSDK.GetInd("pluginmgr;status;rrearth") = "True" Then
                    CMD = "SETVAR;TRAPSTERINFO;Google Earth Is launched !||load;Gpsexec_GE.skin||run;" & Environ$("ProgramFiles") & "\Google\Google Earth\client\googleearth.exe|$PLUGINSPATH$GPSExec\Google.kml;Google Earth"
                    ProcessCommand = 3
                    Else
                    CMD = "SETVAR;TRAPSTERINFO;GooleEarth Plugin is not found !"
                    ProcessCommand = 3
                    End If
                Else
                    Shell (App.Path & "/ini2kml.exe")
                    CMD = "SETVAR;TRAPSTERINFO;Kml conversion is running !"
                    ProcessCommand = 2
                End If

Similar Threads

  1. RR 04-08-05 .. BETA Base Plugin ...
    By guino in forum Road Runner
    Replies: 37
    Last Post: 04-10-2005, 11:39 PM
  2. slide show plugin for winamp 3 needed
    By babas151 in forum Software & Software Development
    Replies: 0
    Last Post: 02-01-2003, 11:24 AM
  3. Winamp LCD display plugin / IRMan plugin - together?
    By Jarrod in forum Software & Software Development
    Replies: 9
    Last Post: 06-03-2002, 05:39 AM
  4. winamp audio CD plugin needed
    By babas151 in forum Software & Software Development
    Replies: 4
    Last Post: 05-14-2002, 03:47 PM
  5. Blackwind's keypad plugin v2.0 beta released
    By Blackwind in forum Software & Software Development
    Replies: 14
    Last Post: 02-11-2001, 03:54 AM

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
  •