Home Blog Page 11

Xkey Piano + Drivers + Red light blinking

0

If for some reason you rely on xkey website for information, its awful the support is non existent, therefore you have to find the files yourself on the wayback machine.

Xkey Piano:

https://web.archive.org/web/20150530112417/http://www.cme-pro.com/xkey/XkeyPiano/XkeyPiano.exe.zip

Xkey Plus for Windows

https://web.archive.org/web/20150401100313/http://www.cme-pro.com/xkey/XkeyPlus/Xkey%20Plus.zip

Also if for some reason you’re scrolling infinitely through forums looking for the answer to “Red led is blinking when connected to usb xkey keyboard”, the reason is that the micro usb port is malfunctioning, either due to a bad cable o bad connection or bad unit. Those are the only answers, there’s no reset button and the latest firmware version is 2.4

VFX Apprentice 2D FX Tutorials

And then they did VFX Apprentice pack with tutorials for other fx but this bunch of tuts it’s pretty hefty, plenty of good tips to setup your workspace and timing/spacing howtos for basic FX like impact, flames, smoke, etc…

Make sure to suscribe, great content!

Tutorial playlist: https://www.youtube.com/watch?v=mTsHOf6aZcw&list=RDCMUCEtMqF3rZuFz8mDMrh5geTw&index=1&pbjreload=102

All the tutorials playlist

Remember to check http://flashfx.blogspot.com/ as well for references and inspiration

VPaint Animation Software (Like Cacani)

Just found this promising software for 2D animation, pretty similar to what Cacani does but on a more simplified and straightforward way, also this tool is open source and free.

Give it a try over at: https://www.vpaint.org/#download

Great website with abandonware

0

For those looking for 123 by autodesk, calligary truespace, carrara, azdrawing, azpainter, apdviewer, etc… this is a great website with all that abandonware hosted locally.

http://www.flat2d.com/programs.html

Codemeter remove license when disabled

So you’ve been having problems reactivating your codemeter licenses, this website has the instructions on how to remove codemeter licenses via the cmd prompt.

https://supportdesk.win911.com/support/solutions/articles/24000068622-remove-license-button-disabled-in-codemeter-control-center

1. Open CodeMeter Command Prompt from the Windows Start Menu, CodeMeter folder.

2. Execute the following command, where the Serial Number matches the license you are trying to remove from CodeMeter.

cmu32.exe –delete-cmact-license –serial <Serial number of CmActLicense license>

3. The license should disappear from CodeMeter Control Center. The Command Prompt will report “CmAct-License ###-##### successfully removed”.

Zhihui Neural Networks, Programming and Board Design Resources

0

Found this website for Peng Zhihui’s work that goes from robot building, pcb boards, to neural networks, image recognition, etc… must see if you’re curious about programming and robotics.

http://www.pengzhihui.xyz

Some of his amazing work.

Wacom Service Automatic Restart Tool

So you’ve been having issues with your wacom tablet (Intuos, Cintiq, Grapphire) 😛 and it stops being pressure sensitive or it just stops displaying the cursor altogether.

Then the only solution is to open Services.msc and stop/start the wacom service manually?

I made a tool that does it automatically for you, just create a new text file, copy the following code and save it as a .bat file, Example. Wacom_restart_service.bat

@echo off
set /p c= Quieres Reiniciar el Servicio Wacom [Y/N]?
  if /I "%c%" EQU "Y" goto :4
  if /I "%c%" EQU "N" goto :2
    :1  
    set /p var= Service name: 
:2 
set /p c= Quieres Iniciar el Servicio Wacom[Y/N]?
  if /I "%c%" EQU "Y" goto :5
  if /I "%c%" EQU "N" goto :6
:4
sc stop WTabletServicePro
:5
sc start WTabletServicePro
echo Reiniciado por cocoalopez.com
pause

After you run it, it will display a question prompt, just press Y and it will stop and restart the service automatically for you.

Remember to press Y and ENTER

After it’s done, it will display this info

You’re all set.

Remember to run it as administrator in case it says you have no permission and if you cant use any mouse to do so, use the right click shortcut SHIFT+F10 on the .bat and select RUN AS ADMINISTRATOR

Edit 2022. If you want the code without the prompts, just paste this code on a BAT file.


@echo off
echo Reiniciando WTabletServicePro...
sc stop WTabletServicePro
sc start WTabletServicePro
echo Reiniciado por cocoalopez.com
pause

Protected: EPDH Progress Breakdown

0

This content is password-protected. To view it, please enter the password below.

Maya Screenshot Tool

0

Free script to help you with versioning in Autodesk Maya. Takes a screenshot of the active viewport using the playblast feature and saves it next to the scene file.

https://gfxhacks.com/versioning-with-previews-in-maya/

Maya Playblast Tool (MayaCapture) With GUI

Found this nice tool for playblast control in maya, its a GUI for another playblast python script.

Playblast Script (MayaCapture): https://github.com/abstractfactory/maya-capture

Playblast GUI: https://github.com/BigRoy/maya-capture-gui

Make sure to review all the available commands and place both scripts on the same folder.