Jim Carroll

950
reputation
157 views

Registered User

name Jim Carroll
member for 1 year
seen 11 hours ago
website
location Vermont
age
Nov
23
awarded  Tumbleweed
Nov
20
answered ActionScript 3 & font embedding
Nov
20
comment ActionScript 3 & font embedding
I'm also running in to this... I am not embedding any fonts, but letting the user select their favorite font. When they select Arial, (a few others do too) half of their letters are missing. I somehow have to exclude embedded fonts from the list that I let them choose from... it's a pain!
Nov
17
accepted Extracting Spot Color equivalents from TIFF
Nov
17
answered Extracting Spot Color equivalents from TIFF
Nov
16
asked How can I use TurboGears2 auth with PyAMF?
Nov
10
awarded  Yearling
Oct
1
comment How do I copy a file to a remote server in python using scp or ssh?
paramiko has a nice sftp.put(self, localpath, remotepath, callback=None) function too, so you don't have to open write, and close each file.
Aug
24
asked Extracting Spot Color equivalents from TIFF
Aug
12
accepted wxWindows vs. Gtk for Cross Platform GUI Programming
Aug
11
answered wxWindows vs. Gtk for Cross Platform GUI Programming
Jul
10
accepted wxPython: how to search for text in a TextCtrl?
Jul
9
comment Flex - Vertically position children of a horizontal HBox
Adam... make sure you're setting verticalAlign: middle; on the HBox, not the buttons.
Jun
26
answered iPhone NSArray from Dictionary of Dictionary values
Jun
25
comment Unable to understand a line of Python code exactly
You don't have to use %... That's just the most common way. The % refers to the %s style printf syntax. The % operator on strings is just a handy sprintf. You can also use the Template module: python.org/doc/2.5.2/lib/node40.html
Jun
24
comment encoding H.264 video (or similar) on the iPhone directly?
the GPL on the H.264 is a non-starter there too. Shucks.
Jun
24
accepted wxPython: Making something expand
Jun
24
comment wxPython: execute command asynchronously, display stdout in text widget
One more comment... in the wxPython demo, search for process in the search box in the lower left. It does an ASYNC run using wxWidget's approach. I would still use the subprocess module, but other than that it's exactly what you're looking for.
Jun
24
comment wxPython: execute command asynchronously, display stdout in text widget
It's true. I'm coming from a C / C++ & Objective-C systems-level GUI stuff, and wxPython seems so easy to me. Python does have Tkinter, which you might prefer: wiki.python.org/moin/TkInter. subprocess is still the way to run a command and read from its stdin. POpen object can also tell you if they've completed, so you don't block forever if there's no output.
Jun
24
comment wxPython: execute command asynchronously, display stdout in text widget
Bryan, this python stuff is a lot easier than you think it is... even easier than Tk if you give it a chance.
Jun
24
comment wxPython: execute command asynchronously, display stdout in text widget
What makes you say that Bryan? Have you tried it? My understanding is you can make it block by doing a Popen.wait(), but if you don't block with the wait command, you'll be able to read whatever stdout is available at the time with the read command. docs.python.org/library/subprocess.html
Jun
23
comment wxPython: Making something expand
Ok... I looked at some code that did just this. You can switch the window contents from one set of widgets to another by doing a window.DestroyChildren() then adding the controls that you do want visible. Another option is to use one of the 'notebook' or 'paging' controls to show one thing or another in the same area. It's like a Tab bar, but with hidden tabs.
Jun
23
answered wxPython: execute command asynchronously, display stdout in text widget
Jun
23
answered wxPython: how to search for text in a TextCtrl?
Jun
23
comment wxPython: Making something expand
cool-RR: you can try adding a child, but without using sizers... just use some absolute coordinates that fit in your parent. If that doesn't work, you can swap the panel for the other contents using Reparent()
Jun
23
answered wxPython: Making something expand
Jun
23
asked encoding H.264 video (or similar) on the iPhone directly?
Jun
19
answered What accessories do you wish you could program for on the iPhone / iPod Touch