Search found 44 matches

by whitertlnav
Thu Aug 23, 2007 3:45 am
Forum: General Support & Discussions
Topic: "SET !POINTER NO" doesn't work in v6
Replies: 2
Views: 2740

"SET !POINTER NO" doesn't work in v6

"SET !POINTER NO" doesn't work in v6 as it did in previous versions. Any explanation as to why this feature was disabled?
by whitertlnav
Thu Aug 23, 2007 3:44 am
Forum: General Support & Discussions
Topic: serious bug between 5.22 and new beta versions
Replies: 9
Views: 5829

Sounds to me that this should still be in beta... In "Updgrading to Version 6" iOpus states "In general, macros created with version V5 or earlier work well in V6 " (formatted just like it was by iOpus). As formatted, this leads me to believe that I can upgrade to version 6 with ...
by whitertlnav
Mon Aug 13, 2007 10:21 pm
Forum: Command Line and Scripting Interface
Topic: Disable Script Debugging in iMacros Browser
Replies: 13
Views: 23673

Yeah, it's pretty clear that Tech Support (ironic) doesn't have a handle on the issue. The only way the "Disable Script Debugging" option works in any IE-based web browser control is if this feature has been SPECIFICALLY enabled by the developer. The fact that the errors ONLY appear in the...
by whitertlnav
Thu Aug 02, 2007 5:20 pm
Forum: How-To's and useful iMacros: All other topics
Topic: Embedding in VB is a must, Here's an app to create code...
Replies: 40
Views: 395912

I have recreated the program with a number of enhancements, and I will be releasing a beta version of it as soon as I complete it.
by whitertlnav
Thu Aug 02, 2007 5:16 pm
Forum: General Support & Discussions
Topic: How to skip on error
Replies: 7
Views: 5538

Is the link you included contained within a sub or a function? If possible, please post the entire code that you are using.
by whitertlnav
Mon Jul 30, 2007 7:53 pm
Forum: Command Line and Scripting Interface
Topic: Disable Script Debugging in iMacros Browser
Replies: 13
Views: 23673

You clearly do not know what you're talking about. The iMacros browser may be BASED off of the IE settings, but that does not mean that it uses those settings exclusively. When interfacing with the browser control, the developers need to implement specific features in order for them to work properly...
by whitertlnav
Wed Jul 25, 2007 4:52 pm
Forum: General Support & Discussions
Topic: How to skip on error
Replies: 7
Views: 5538

Here are two good examples of VB scripts from the Wiki: http://wiki.imacros.net/File-2-Web.vbs http://wiki.imacros.net/File-2-Web-Method2.vbs In order to play a macro, you would use the following line: iret = iim1.iimPlay("wsh-submit-2-web") 1. 'iret' is the variable which refers to the st...
by whitertlnav
Wed Jul 25, 2007 12:25 am
Forum: General Support & Discussions
Topic: How to skip on error
Replies: 7
Views: 5538

In order to do what you want, I would suggest writing a script in VB script. Doing so will allow you to include decision structures in your code for handling errors.
by whitertlnav
Wed Jul 25, 2007 12:19 am
Forum: General Support & Discussions
Topic: Help for newbie trying to run a vbs script
Replies: 4
Views: 3595

One more thing, the line "im imacros, iret" is supposed to be "Dim imacros, iret" "Dim" is short for "Dimension", and is used to declare variables.
by whitertlnav
Wed Jul 25, 2007 12:17 am
Forum: General Support & Discussions
Topic: Help for newbie trying to run a vbs script
Replies: 4
Views: 3595

The reason you are receiving this error is because your code does not know what 'i' is since it hasn't been declared as a variable. Also, you need to make sure your variables have the proper scope. If you declare your variables within an "If...Then" statement, those variables are not visib...
by whitertlnav
Mon Jul 23, 2007 3:48 pm
Forum: How-To's and useful iMacros: All other topics
Topic: Embedding in VB is a must, Here's an app to create code...
Replies: 40
Views: 395912

Since it appears that this program has been abandoned by the original developer, I have re-created this program, and will be distributing it. Please list any features that you would like to see added to this program. My goal is to add some or all of the following features: -Choice of programming lan...
by whitertlnav
Fri Jul 20, 2007 4:14 pm
Forum: Command Line and Scripting Interface
Topic: Disable Script Debugging in iMacros Browser
Replies: 13
Views: 23673

Disable Script Debugging in iMacros Browser

Please add the ability to disable script debugging in iMacros browser. Additionally, please allow the ability to suppress notifications of scripting errors. Both of these settings can be changed in Internet Explorer's options, but these options do not carry over to iMacros because this has not been ...
by whitertlnav
Tue Feb 20, 2007 2:14 pm
Forum: General Support & Discussions
Topic: Vista and ONPRINT command
Replies: 3
Views: 3380

Thanks Daniel,

When can we expect version 6.0?
by whitertlnav
Tue Feb 20, 2007 4:26 am
Forum: General Support & Discussions
Topic: Vista and ONPRINT command
Replies: 3
Views: 3380

Vista and ONPRINT command

I'm having a problem with the iMacros browser under Vista Ultimate x64. My macro has a print command in it, and it opens the window fine, but it does not execute the ONPRINT command. This same macro works fine on XP. Any ideas? FYI, the dialog manager works fine with any other dialogs that appear. I...
by whitertlnav
Thu Feb 01, 2007 6:25 pm
Forum: General Support & Discussions
Topic: iimplay("",FALSE) always starts a new brower?
Replies: 1
Views: 2351

It looks like you need to use 'iret' at the beginning of each line of code instead of 'iplay' or 'data', like this:

Set iim1 = CreateObject("InternetMacros.iim")
iret = iim1.iimInit(, False)
iret = iim1.iimPlay("getParcelData")
iret = iim1.iimGetLastExtract()

Hope this helps.