Redirect old-forum and wiki search results to Pheonix as appropriate.
#2
Looks like a useful plugin.

I made my own in QB64...

Code: (Select All)
REM Opens google qb64.rip links in mirror site.
msg$ = "Right click google link and select copy to clipboard."
LOCATE 2, _WIDTH / 2 - LEN(msg$) / 2: PRINT msg$;
LOCATE 4

DO
    _CLIPBOARD$ = ""

    DO
        _LIMIT 10
        IF LEN(_CLIPBOARD$) THEN
            parse$ = MID$(_CLIPBOARD$, INSTR(_CLIPBOARD$, "index"))
            EXIT DO
        END IF
        IF INKEY$ = CHR$(27) THEN SYSTEM
    LOOP

    html$ = "https://qb64forum.alephc.xyz/" + parse$

    SHELL _DONTWAIT "firefox " + html$

    PRINT " Opening: " + html$
LOOP


Pete
Reply


Messages In This Thread
RE: Redirect old-forum and wiki search results to Pheonix as appropriate. - by Pete - 05-19-2022, 05:21 AM



Users browsing this thread: 3 Guest(s)