Jump to content

Is it a Table or what?


Recommended Posts

  • Replies 43
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

  • Moderators

You don't need it to open in a separate tab. Actually, I'm not really sure why it would have. The pop-up is not a window, but instead a page element that is hidden and displayed. I don't think I even need it displayed when the page is saved with Opera as the information needed will still be available. I just need all the style sheets, scripts, images, etc... so I can see how the page acts and how properties change as they do on your end.

Link to comment
Share on other sites

  • 2 months later...
  • 2 months later...
  • 2 weeks later...
  • 7 months later...

If I use F12 DebugCode this is what I have:

data-item-value: com!46syncron!46bpe!46transfer!46valueobject!46security!46RoleIdAndName!641e30c7c5 (But this seems that it change for every page)

class: duallist-item

Yours sincerely

Kenneth.

Link to comment
Share on other sites

Point the script to the right htm file location and report back if this helped.

#include <array.au3>
#include <File.au3>
#include <String.au3>

Global $temp
Global $aArray[0]
$temp = FileRead(@ScriptDir & '\Syncron Solutions - User.htm');open the webppage
$aArray = _StringBetween($temp,'<li class="duallist-item"','">',1)
_ArrayDisplay($aArray)
Edited by computergroove

Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html

Link to comment
Share on other sites

#include <array.au3>
#include <File.au3>
#include <String.au3>
Global $temp
Global $aArray[0]

$temp = FileRead(@ScriptDir & '\Syncron Solutions - User.htm');open the webppage

$aArray = _StringBetween($temp,'<LI class=duallist-item', ">")

$x = UBound($aArray)
$y = 0
While 1
    $Temp = '<li class="duallist-item"'
    $End = '>'
    If $y < $x Then
    $temp1 = $aArray[$y]
    $temp2 = $Temp & $temp1 & $End
    $aArray[$y] = $temp2
    $y = $y + 1
    Else
    ExitLoop
EndIf
WEnd
    _ArrayDisplay($aArray)

It isnt pretty but my for loop wasn't working because of the quotes. Also your html code changed. Weird.

Edited by computergroove

Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html

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...