|
|
|
google and directories
April 28, 2003 |
paste this:
site:flash2be.com xpi
into the the google search field and type after
that your query.
another example:
site: macromedia.com downloads
|
| Posted by pi
at 03:35
AM |
|
voiceflux
April 24, 2003 |
i posted that link times ago :
Voice Flux .NET
i love that tool and its very easy to set up voice commands.
i'll write a tutorial for voiceflux in combination with powerpro.
feel free to send me comments and suggestions.
|
| Posted by pi
at 09:14
PM |
|
no as2fla
April 20, 2003 |
sorry, but the as2fla alpha time is over.
i want to thank you for over 14000 downloads,
but we made a step beyond as2fla,
meaning more function and features.
i'll post details about when we lift off.
and please remember,
as2fla was an alpha version,
it was a limited approach
and we (flash2be/microbender)
don't give any support on as2fla.
discuss |
| Posted by pi
at 02:00
AM |
|
browser windows
April 09, 2003 |
i ever wanted to open sized ie windows, but not from the browser
(thats easy -> javascript).
so here it is.
the scripts
browser_window.powerpro
local target
target = "http://www.windowspowerpro.com"
;*** spath is my scripts path
;*** target width height top left toolbar statusbar
$(spath)www\brower.vbs "$(target)" 100 100 10 10 0 1
browser.vbs
Set ie = createobject("internetexplorer.application")
target = WScript.Arguments.Item(0)
w = WScript.Arguments.Item(1)
h = WScript.Arguments.Item(2)
t = WScript.Arguments.Item(3)
l = WScript.Arguments.Item(4)
tb = WScript.Arguments.Item(5)
stb = WScript.Arguments.Item(6)
with ie
.navigate target
.width = w
.height = h
.top = t
.left = l
.toolbar = tb
.statusbar = stb
.visible = 1
End with
|
| Posted by pi
at 09:47
PM |
|
powerpro + quickmacros
|
i asked ginteras (the maker of quick macros 2) for
a way to pass variables from qm to ppro:
qm forum thread : passing a variable to qm
initialize the qm path as variable at ppro start (scheduler) :
qm = "'"C:\Programme\PowerPro\Quick Macros 2\qmcl.exe'" M"
the name of the qm macro in this example is 'tester' :
$(qm) "tester" A "first string" 1 "second string"
and this is the way how to deal with the passed (ppro - you can send integers too) variables:
function $string1 i $string2
mes m
i luv that :)
|
| Posted by pi
at 02:00
AM |
|
wintext
April 02, 2003 |
this small script helps to get window titles :
local range fh
range = inputdialog("v1=from number, v2=to number", "window text")
if (range == 0)
quit
fh = File.Open("$(scriptpath)win_text.txt", "w")
for (i=v1;i<=v2;i=i+1)
wtxt= i ++ " " ++win.childtextbyindex("$(caption)",i)
File.WriteLine(fh, wtxt)
;debug nummer $(i) $(a);
endfor
file.close(fh)
notepad.exe "$(scriptpath)window\win_text.txt"

i start it with F5
.window\info
(that means the script is saved in the scripts subfolder 'window' as info.powerpro)
|
| Posted by pi
at 10:12
PM |
|