George Profenza

1,568
Reputation
360 views

Registered User

Name George Profenza
Member for 7 months
Seen 2 hours ago
Website
Location London
Age 24
Wannabe artist, Flash geek with a taste for other technologies as well(processing, max/msp/jitter, 3dsmax, etc.) Still digs old school arcade and console games and thinks he's cool by being uncool and funny when he makes good use of his specific non-humour.

Works on interesting and fun projects at disturb media.

Studies Creative Computing at Goldsmiths College, University of London.

Rarely posts on blog and flickr.
...and yes he is writing bollocks at the 3rd person for fun.
2h
accepted Online Image Editor - Ajax or Flex / Flash??
2h
comment Online Image Editor - Ajax or Flex / Flash??
I'm not saying go for Flash or go for Ajax, which doesn't help you much. I was just suggesting that a benchmark of the common tasks that your app should do (really basic test, background deletion 400x400 for example), how fast is it in flash (client side) or ajax (server side image processing) and how well does it scale for your maximum predicted users. If the difference isn't that big performance wise, I'd say ajax, as you'll probably have less headaches with SEO. Then again, you ajax team should be prepared to fix any problem that may arise in each browser. I don't think I can say yes or no.
3h
comment Online Image Editor - Ajax or Flex / Flash??
No worries.Why would you need to convert images to SWFs ?you can load the images in the swf, process them, send the resulting bytearray to a server to write the file to disk. As for multiple image formats, although there are GIF,PNG,BMP,etc. libraries in as3, why add that extra layer when you might not need that with Ajax, I see your point. I don't think you need Flas Media Server to convert images to SWF.I think it can be done in as3, doing some nasty bytearray business, but it might be easier to use the PHP Ming library to create a SWF out of an image on the fly from PHP. why is that needed?
4h
answered Load and modify AS3 SWF
5h
answered Online Image Editor - Ajax or Flex / Flash??
11h
accepted style air application
18h
comment how to extrude a path in 3d ?
...vector...and to that vector I add the position vector ( translate as you well explained ). It's so strange that I feel so close and still lost. Wish I knew more math.
18h
comment how to extrude a path in 3d ?
I have updated the code to something a bit more readable hopefully. You never initialize PVector cn; and PVector rotVec; Should they be (0,0,0) PVectors.I didn't know you can normalize a vector with another vector. I somehow seem to miss the point. On a higher level I understand that the acos of the dot product of 2 vectors will give me the angle between them. I don't know how to use matrices well, but I understand that I use an identity matrix and rotate it. The cross product will give me perpendicular vector. So, once I got the rotation, the product between a vector and a matrix will be a...
18h
revised how to extrude a path in 3d ?
improved formatting
1d
comment actionscript: acces now object instance
also, you could use the displaylist functions: getChildAt(), getChildByName(), but an array is probably easier because there's no casting involved as the display list functions return a DisplayObject.
1d
answered actionscript: acces now object instance
1d
comment how to extrude a path in 3d ?
I've added the code with my attempt to use your explanations. Still a few things I'm lost with. I'm trying to understand 'multiply each element of your shape with rot'. each celement, means each vector, or each component of each vector ? It's this last bit of concatenating the rotations that gives me headaches. translate should be just getting the rotated vertices and adding a translation vector to that. Thanks for all the patience drhirsch!
2d
comment how to extrude a path in 3d ?
I am trying to use your help, and so far I tried this: PVector s = new PVector(0,0,1);s.normalize();//shape normal vector PVector r = s.cross(current); float a = acos(s.dot(current)); Did I get a right ? a is equal to arc cosine of the dot product between S and V ?
2d
comment how to extrude a path in 3d ?
some help with lathing a path could be handy, but in some cases I will need extrusions, while in others lathes.
2d
comment style air application
Then this should be a good start: adobe.com/devnet/air/…
2d
answered How to make the browser back button work for a Flash-based Website?
2d
comment flash 8 datagrid sort arrow
I was hinting that you could vote/accept the answer if it solves your problem :)
2d
comment flash 8 datagrid sort arrow
Cool, am I to understand this is an acceptable answer ? ;)
2d
answered style air application
2d
comment flash 8 datagrid sort arrow
Hi Dave. Usually you should be able to dispatch an event from the component and that should've fixed it. You can wipe that off, I that wanted to show the attempt to do it in a less hacky manner. I see what you mean, the header text move diagonally, not horizontally. I think that might be because the sort arrow clip isn't created until the header is pressed and since we're hacking it, the text is shifted a bit up (not sure why exactly), but you can fix that if you add the following line after th hO0.onRelease(): dg.content_mc.header_mc.fHeaderCell0._y = dg.content_mc.header_mc.fHeaderCell1._y;
2d
answered Save and Debug at same time Flash CS3
2d
answered flash 8 datagrid sort arrow
2d
comment How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9
I see, the updated answer seems to fit now ^_^
Nov
30
accepted Flex: Datagrid, break line in case of very long string
Nov
30
comment how to extrude a path in 3d ?
@drhirsch Thanks for the tip on QUAD_STRIP, I'll use that. I want an extrusion along a path with an automatic rotation to match the inclination at the tangent of the path. I think I worked it out in 2d, having issues when moving to 3d. to get the inclination for a 2nd point I use the atan2 of the difference between the 3rd point and the 1st point and add 90 degrees(a perpendicular). Not sure how to apply that in 3d.
Nov
30
asked how to extrude a path in 3d ?
Nov
29
answered Flex: Datagrid, break line in case of very long string
Nov
28
answered How to data bind DataGrid component without scrolling up?
Nov
27
answered How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9
Nov
26
awarded  Popular Question
Nov
26
answered Rendering random curves with loops between 2 points
Nov
25
accepted What is the best free XLIFF editor?
Nov
25
answered Multi-bitrate/dynamic rate for progressive FLV playback
Nov
24
comment Loading .swc assets into array, in pure Actionscript 3 project
just tried python in blender, it takes a bit to get used to the syntax and the error messages. Less code to right though.
Nov
23
answered Is it possible to reference a photoshop file or layer comp from within another photoshop file?
Nov
23
answered Error:Classes must not be nested --> Actionscript
Nov
23
answered Google Map API: How to center dynamicly markers in AS3?
Nov
23
comment Loading .swc assets into array, in pure Actionscript 3 project
I would recommend jsfl to be honest, using swc means you load the same information twice:once as you main swf loads with the swc, the second time when you load the xml you unzip. is it worth using a library(zip) and having the user to wait for the same content to load twice for a line of code?Still, the result is the same. A halfway solution is to manually copy/extract the catalog.xml from the swc and load that: less load time, less code needed. you might consider writing an xml Ant Task for that unzip/clean in flex/eclipse. I never tried python, but it tempts me to use in blender.is it nice?
Nov
22
answered Download and Store Multiple Files with Adobe AIR ( Flash CS4 Dev)
Nov
21
answered Actionscript3 alpha masking?
Nov
21
answered Loading .swc assets into array, in pure Actionscript 3 project
Nov
21
answered What is the best free XLIFF editor?
Nov
21
comment Converting a 64-bit long UTC timestamp into Actionscript Date
If you send the Java 64-bit representation, the closest thing you get is double (livedocs.adobe.com/flash/9.0/…()) not long, but as you said, it's not worth the trouble.
Nov
19
answered Flash async calls with mouse click permissions?
Nov
19
comment ActionScript 3 Workflow using SWCs with linked external classes
It's a bit of a chicken an egg thing. If you link to classes in flash and compile the swcs, you run into the Type Coercion error. On the other hand, if you use the default generated as3 classes by flash with the swc, and you subclass that:you get nothingness.the swc contains precompiled classes which act weird when subclassing. As you said, splitting it up might be the way forward. Have a different swc for each component maybe, and redo some of the menu animations with code. Adobe seems to considered integration with flash when it comes to the flex framework mostly :( what about the basics ?
Nov
19
accepted how do I replace all the links in a text using regex in as3 ?
Nov
18
comment Preloader in actionscript 3 - Reference Error on getDefinition()
Cool! I didn't know that. I hope this solves Timmy's question
Nov
18
accepted Drag and Drop, Orderable List in ActionScript 3
Nov
18
answered Drag and Drop, Orderable List in ActionScript 3
Nov
18
comment Preloader in actionscript 3 - Reference Error on getDefinition()
is class Game public ? Also, is this handy : kirupa.com/forum/showthread.php?t=274871/… ?