Jump to content

A question ...


Recommended Posts

Hi,

I listen to "Kink Aardschok" very often (its a radio). And I was curious, can you get the "Now Playing:" from this site:

http://www.kinkfm.com/kinkaardschok/ ?

I can't see anything in the html, its very messy :D .

AlmarM

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

Hmm, should be easy to grab

<SPAN style="font-size: 9px;"><B>Now Playing:</B></SPAN><BR><B>Mastodon</B>

Ye, but I ment with Autoit >.<'

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

  • Developers

Did you try anything before asking?

This should get you started:

InetGet("http://www.kinkfm.com/kinkaardschok/","info.txt",1)
$Source = Fileread("info.txt")
$array = StringRegExp($Source,'<B>Now Playing:</B></SPAN><BR><B>(.*?)</B><BR>(.*?)</P>',3)
If not @error Then
    ConsoleWrite("Song:" & $array[0] & @CRLF)
    ConsoleWrite("Artist:" & $array[1] & @CRLF)
EndIf
Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

try this also:

#include <IE.au3>
$oIE = _IECreate('http://www.kinkfm.com/kinkaardschok/')
$oTable = _IETableGetCollection ($oIE, 2)
$oInfo =  _IETagNameGetCollection ($oTable, 'P', 1)
MsgBox(0, '', $oInfo.InnerText )
Link to comment
Share on other sites

Did you try anything before asking?

This should get you started:

InetGet("http://www.kinkfm.com/kinkaardschok/","info.txt",1)
$Source = Fileread("info.txt")
$array = StringRegExp($Source,'<B>Now Playing:</B></SPAN><BR><B>(.*?)</B><BR>(.*?)</P>',3)
If not @error Then
    ConsoleWrite("Song:" & $array[0] & @CRLF)
    ConsoleWrite("Artist:" & $array[1] & @CRLF)
EndIf
Didnt try anything. Im not that good in IE and RegExp stuff >.<'

EDIT:

Oh thanks so much guys! It worked both ways! :D

Edited by AlmarM

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...