Author Archives: Oleg Vorontsov

as3 error 1180: call to a possibly undefined method

I met this error several time, and it was pretty hard to fix, cause I didn’t know why this error was raised at all. The reason was this: I used a local var name identical to some namespace name. Let’s say … Continue reading

Posted in Adobe Flash, as3, Coding faults collection | Comments Off on as3 error 1180: call to a possibly undefined method

pseudo-problem: js function undefined

well often you have an external js file you load and keep some functions in it; and eventually it can appear broken or missing some of the functions while you code your site, or they could work improperly.. My guess … Continue reading

Posted in Coding faults collection | Comments Off on pseudo-problem: js function undefined

Crop tool in photoshop CC not working (solved “problem”)

Well if you drag some photos to your photoshop CC canvas, scale, rotate, position them as you need and select crop tool it could fail. Or better say perform no visible action, the outer parts of images remain where they … Continue reading

Posted in Art & drawing | Comments Off on Crop tool in photoshop CC not working (solved “problem”)

Chrome cleanup-tool

Recently, my mom caught a browser hijack malware.. forcing its search-engine to get default in all browsers. The name(and related names) of it was this: Smartbar, sonic-search, ReSoft, Websearch, snapdo.com Well, in order to remove it use a tool created by … Continue reading

Posted in Personal | Tagged , , , , , | Comments Off on Chrome cleanup-tool

Can’t sleep in the night?? draw some dumb stuff))

Imagine Turok with graphics such as I’v just made)) uber realistic special effects)

Posted in Art & drawing | Tagged | Comments Off on Can’t sleep in the night?? draw some dumb stuff))

Bought one more tablet. Wacom ctl-460

This one is not too large, but is quick and responsive. It doesnt have an eraser on top of the pen, but since I only draw in adobe flash, I dont need it anyway)

Posted in Personal | Tagged | Comments Off on Bought one more tablet. Wacom ctl-460

Tiny tip for NaN use

Use case: //you have a number in text format and you want to convert it to number format //and also to make sure there is no character inside var nTemp:Number = Number(someStringWithCharactersInsideProbably); if (isNan(nTemp)) { //aha.. there are some characters … Continue reading

Posted in Adobe Flash, as3, Coding faults collection | Comments Off on Tiny tip for NaN use