Jump to content

Recommended Posts

  • Replies 43
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

  • Moderators
Posted

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.

  • 2 months later...
Posted

@big_daddy:

Sorry for not revert back to you regarding this issue. Vacation and IRL changes has delayed this.

I hope we can continue from last time, because I still have the problem.

Ofcourse anyone else can come with input.

Thx.

Yours sincerely

Kenneth.

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

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.

Posted (edited)

If you look at the picture in post #30, you see a marked line. The numbers at end of the line is different.

Edited by Valnurat

Yours sincerely

Kenneth.

Posted (edited)

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

Posted (edited)

#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

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
×
×
  • Create New...