Nahuel Posted September 24, 2007 Author Posted September 24, 2007 Not really. You can upload the png files to Imageshack and tell us the name we should use.
maqleod Posted September 25, 2007 Posted September 25, 2007 Nahuel said: The font selector doesn't work there hmm, dunno why, I'm running XP Pro corp sp2 with autoit 3.2.6.0 and it works for me, I really need to try it on other computers I guess, people are getting lots of bugs Ive never seen. In any case, the key is the _FontGetList() function from the Include. that will give you a list of all the fonts on the given system, you can then use GuiCtrlSetFont(). Not sure why it didn't work for you, but if you look at the textedit.au3 include in the source pack you can grab the function and try to make it work for your script. [u]You can download my projects at:[/u] Pulsar Software
JustinReno Posted September 25, 2007 Posted September 25, 2007 You should download the newest version of Autoit Magleod, 3.2.8.1
Nahuel Posted September 25, 2007 Author Posted September 25, 2007 ^I looked but can't find such thing.
Moderators big_daddy Posted September 25, 2007 Moderators Posted September 25, 2007 Nahuel said: ^I looked but can't find such thing.It took me a second too, but he was telling maqleod to download the latest version of AutoIt.
Nahuel Posted September 25, 2007 Author Posted September 25, 2007 big_daddy said: It took me a second too, but he was telling maqleod to download the latest version of AutoIt.HAHA, god I feel dumb now.
sensalim Posted December 23, 2007 Posted December 23, 2007 It's a wonderful script, but I find it is using different fonts... odd. See screenshot.
Nahuel Posted January 10, 2008 Author Posted January 10, 2008 sensalim said: It's a wonderful script, but I find it is using different fonts... odd.See screenshot.Weird... I tested it again but it works fine. Could you reproduce your steps and tell me how you did it?
Chorda Posted October 26, 2008 Posted October 26, 2008 When I run the script I get an error message for $WS_EX_TOPMOST on line 27. $Main=GUICreate("",200,200,-1,-1,-1,BitOR($WS_EX_TOPMOST,$WS_EX_TOOLWINDOW)) Error: Variable used without being declared Any idea? Thanks
TehWhale Posted October 26, 2008 Posted October 26, 2008 Chorda said: When I run the script I get an error message for $WS_EX_TOPMOST on line 27. $Main=GUICreate("",200,200,-1,-1,-1,BitOR($WS_EX_TOPMOST,$WS_EX_TOOLWINDOW)) Error: Variable used without being declared Any idea? ThanksAdd #Include <WindowsConstants.au3>
Chorda Posted October 26, 2008 Posted October 26, 2008 TehWhale said: Add #Include <WindowsConstants.au3> Yup, that solved it. Thanks. But now on line 30: $InputTitulo=GUICtrlCreateEdit("",5,22,190,25, $ES_AUTOVSCROLL + $WS_VSCROLL + $ES_MULTILINE + $ES_WANTRETURN) $ES_AUTOVSCROLL is not declared.
TehWhale Posted October 26, 2008 Posted October 26, 2008 Chorda said: Yup, that solved it. Thanks. But now on line 30:$InputTitulo=GUICtrlCreateEdit("",5,22,190,25, $ES_AUTOVSCROLL + $WS_VSCROLL + $ES_MULTILINE + $ES_WANTRETURN)$ES_AUTOVSCROLL is not declared.It's either EditConstants.au3 or InputConstants.au3You should memorize which go with which so you can do this on your own.
homy Posted October 26, 2008 Posted October 26, 2008 AutoIt Help -> Search $ES_AUTOVSCROLL -> Topic "GUI control styles" -> #include <EditConstants.au3>
Chorda Posted October 26, 2008 Posted October 26, 2008 TehWhale said: It's either EditConstants.au3 or InputConstants.au3You should memorize which go with which so you can do this on your own.Got it. Actually, to make that script work, I had to include:#Include <WindowsConstants.au3>#Include <GuiEdit.au3>#include <ButtonConstants.au3>#include <StaticConstants.au3>I just found out that all these files are in the include directory. Thanks a lot TehWhale.
TehWhale Posted October 26, 2008 Posted October 26, 2008 Chorda said: Got it. Actually, to make that script work, I had to include:#Include <WindowsConstants.au3>#Include <GuiEdit.au3>#include <ButtonConstants.au3>#include <StaticConstants.au3>I just found out that all these files are in the include directory. Thanks a lot TehWhale.Glad I could help
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now