简体   繁体   中英

Electron Link to web page

I've had some software created in Electron and I have a menu on my first page.

The code for the page is at the bottom of this post. I'd like the first item "Resources For Teachers" to be a web link. I'm not a programmer so I will need help with this please. If it could open internally that would be even better.

This is the link it will be opening:

https://rhythmstix.co.uk/getting-started-your-bandlab-classroom

This is how it appears:

enter image description here

Here's the github link:

https://github.com/mbash12/reverse

This is a link to my software:

https://www.dropbox.com/sh/c0rrkp46u4xgr9x/AACiP0jE3dHK9br2OlWr_r3ia?dl=0

[
    {
        "name":"<u>Resources For Teachers</u></b>",
        "url":"guide",
        "type":"slides"
    },
    {
        "name":"Lesson 1 - Drumatic!",
        "url":"1.drumatic",
        "type":"slides"
    },
    {
        "name":"Lesson 2 - Looptastic",
        "url":"2.looptastic",
        "type":"slides"
    },
    {
        "name":"Lesson 3 - It's as easy as ABC",
        "url":"3.abc",
        "type":"slides"
    },
    {
        "name":"Lesson 4 - Using a stimulus preparation",
        "url":"4.stimulus",
        "type":"slides"
    },
    {
        "name":"Lesson 5 - Using a stimulus development",
        "url":"4.stimulus",
        "type":"slides"
    },
    {
        "name":"Lesson 6 - WALL-E - Day at work preparation",
        "url":"6.wall-e",
        "type":"slides"
    },
    {
        "name":"Lesson 6 - WALL-E - Day at work development",
        "url":"6.wall-e",
        "type":"slides"
    },
    {
        "name":"Lesson 7 - Quiz time",
        "url":"7.quiz",
        "type":"slides"
    }
]

I never used Electron but maybe change it to

{
   "name":"<a href='https://rhythmstix.co.uk/getting-started-your-bandlab- 
           classroom'>Resources For Teachers</a></b>",
   "url":"guide",
   "type":"slides"
},

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM