Re: [Maya-Python] Re: Discount coupon codes for my training vids

2014-07-30 Thread Justin Israel
I think cmivfx does streaming only, but they stay in your online store. You can download the project files though. On Thu, Jul 31, 2014 at 4:29 PM, Manuel Macha wrote: > great initiative justin! is it possible to download/keep those videos > after purchase or are they streaming only? > > > On T

Re: [Maya-Python] Re: Discount coupon codes for my training vids

2014-07-30 Thread Manuel Macha
great initiative justin! is it possible to download/keep those videos after purchase or are they streaming only? On Thu, Jul 31, 2014 at 7:15 AM, Justin Israel wrote: > > > > On Thu, Jul 31, 2014 at 9:11 AM, md wrote: > >> ugh >> >> > Sorry! I've been trying to get the owner of cmivfx to get m

Re: [Maya-Python] Re: Discount coupon codes for my training vids

2014-07-30 Thread Justin Israel
On Thu, Jul 31, 2014 at 9:11 AM, md wrote: > ugh > > Sorry! I've been trying to get the owner of cmivfx to get me these codes for like a year now. Otherwise I would have made them available much sooner. Apparently they had some limitation in their system that only allowed coupons for the entire p

[Maya-Python] Re: Discount coupon codes for my training vids

2014-07-30 Thread md
ugh On Tuesday, July 29, 2014 6:46:10 PM UTC-4, Justin Israel wrote: > > Since my training vids have been out for a long while now, I asked for > some discount coupon codes to be created with really long expiration times, > so that I could give them to the group. In case anyone wants to pass the

[Maya-Python] Re: REGEX Question

2014-07-30 Thread md
This is really great info ... much appreciated. Paul ... that is indeed KR from The Thing ! I used to have hair like that .. a decade ago ! hahaha. -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from t

[Maya-Python] Re: REGEX Question

2014-07-30 Thread md
This is really great info ... much appreciated. elrond ... that is indeed KR from The Thing ! I used to have hair like that .. a decade ago ! hahaha. -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe fro

Re: [Maya-Python] REGEX Question

2014-07-30 Thread Justin Israel
Also, did you happen to take a glance at some of the examples being used in that fileseq lib I had previously recommended? In that lib, he splits off the extension first and just deals with parsing the end of the basename. It has some regex examples in there for

Re: [Maya-Python] REGEX Question

2014-07-30 Thread Justin Israel
As Paul mentioned, your regex can either cover a limited amount of cases, or as general of cases as possible. Yours was pretty limited to specific delimiters and 3-character extensions. Bot yours and Paul's corrections also don't account for negative frame numbers, if you have sequences that maybe

Re: [Maya-Python] PySide Progress Bar

2014-07-30 Thread Justin Israel
QProgressBar has a virtual text() method that you could implement and return custom text: http://qt-project.org/doc/qt-4.8/qprogressbar.html#text-prop I am usually using either a QProgressDialog that supports extra text, or displaying my text in a surrounding QLabel to a QProgressBar, but this is

Re: [Maya-Python] REGEX Question

2014-07-30 Thread Paul Molodowitch
Well... string parsing is always going to be be a bit of a crapshoot. Especially if you're trying to come up with something like parsing out the framenumbers, for a very general case, there will always be things that break it. In general, it's best if you can enforce some sort of uniformity on yo

Re: [Maya-Python] Couple of housekeeping questions ....

2014-07-30 Thread Justin Israel
1. I either use QSettings which picks the proper place to store, or if the app is platform specific I just store a yaml file in the standard user config area of that platform. 2. You can save your application reference as an APP global var in your module, or as a private instance member of your cl

Re: [Maya-Python] Discount coupon codes for my training vids

2014-07-30 Thread Justin Israel
On 31/07/2014 1:48 AM, "Marcus Ottosson" wrote: > > These tutorials are great, recommended to anyone learning about Qt and Python in general, both in and out of Maya! > Thanks! > > On 30 July 2014 13:51, Doktor Weeny wrote: >> >> Thanks a lot ! >> >> I think I'll try PyQt course. >> >> >> On We

[Maya-Python] PySide Progress Bar

2014-07-30 Thread md
Does anyone know if there is a way to display text within the PySide progressbar ? Right now its displaying a percentage for me. I'd love to show what it is actually doing as well. THanks -- You received this message because you are subscribed to the Google Groups "Python Programming for Auto

[Maya-Python] REGEX Question

2014-07-30 Thread md
Hey guys, I am fairly new to regular expressions. When I want to get the delimiter between a filename and framenumber I am using the following regex. f = myawesome_filename_v1_0001.exr" pat = re.compile*('[\.|\_]\d+[\.]\w{3}')* x = re.search(pat, f)

[Maya-Python] Re: Rivet-like node attempt

2014-07-30 Thread Enrico Losavio
Hey Leonardo. Thanks a lot for the answer, it's been very useful. So revised my code, but it's still not working. I mean... Maya handles the node smoothly, I can connect a mesh into the inMesh attribute, tweak the value of the positionOffset attribute, and even connect the values of the outPosi

[Maya-Python] Re: Rivet-like node attempt

2014-07-30 Thread Enrico Losavio
Hey Leonardo. Thanks a lot for the answer, it's been very useful. So revised my code, but it's still not working. I mean... Maya handles the node smoothly, I can connect a mesh into the inMesh attribute, tweak the value of the positionOffset attribute, and even connect the values of the outPosi

Re: [Maya-Python] Couple of housekeeping questions ....

2014-07-30 Thread Michael Donovan
how about some answers ?? =) ! On Wed, Jul 30, 2014 at 2:51 AM, Marcus Ottosson wrote: > Ah! Got it, no it was just quite the coincidence. :) > > > On 30 July 2014 07:37, Justin Israel wrote: > >> LOL, I totally misread that whole link. It looked so similar, that at a >> glance I thought it wa

Re: [Maya-Python] Discount coupon codes for my training vids

2014-07-30 Thread Marcus Ottosson
These tutorials are great, recommended to anyone learning about Qt and Python in general, both in and out of Maya! On 30 July 2014 13:51, Doktor Weeny wrote: > Thanks a lot ! > > I think I'll try PyQt course. > > > On Wednesday, July 30, 2014 4:53:36 AM UTC+2, Justin Israel wrote: > >> Hey Edua

Re: [Maya-Python] Discount coupon codes for my training vids

2014-07-30 Thread Doktor Weeny
Thanks a lot ! I think I'll try PyQt course. On Wednesday, July 30, 2014 4:53:36 AM UTC+2, Justin Israel wrote: > > Hey Eduardo, > You just use those coupon codes (each one before the url I had listed) on > the cmivfx site, when you are purchasing them. > > > > > On Wed, Jul 30, 2014 at 1:26 PM,

Re: [Maya-Python] Rivet-like node attempt

2014-07-30 Thread Leonardo Bruni
Hi Enrico, actually you can access to all geometry data also from a MPxNode, maybe is also more easy. In my opinion if you don't need build a deformer, is better use a node. A rivet node, is also quite simple to do, you need just few geometry datas so, my suggestion it's go with a node =) For acces