, Sr. Member
interesting.. I set up FP11 for CS4.. seams to be okay.. I tried the example code to test which is on this forum.
It seamed to have a slight mistake.. I typed in the code:
import flash.display.Stage3D;
var s : Stage3D = stage.stage3DS[0];
and got back:
1119: Access of possibly undefined property stage3DS through a reference with static type flash.display:Stage.
Source: var s : Stage3D = stage.stage3DS[0];
which is what the other person got I think.. At suggested on someone else, I changed it to stage3Ds[0] and no more error.
of course, that code did pretty much nothing so I couldn’t see if I had worked or not ^_^:
decided to try the basic plane render from the tutorial, edited a bit to deal with issues (basically removing embedding files as I’m pretty sure Embed doesn’t work for something like this).. anyway.. the problem is now a bunch of syntax errors for the RTTBufferManager.as file.
1084: Syntax error: expecting identifier before rightbrace.
1100: Syntax error: XML does not have matching begin and end tags.
1084: Syntax error: expecting rightparen before end of program.
there is 9 errors in total, but it does create a swf, just blank of course.
the 9 errors are just them 3 repeated a few times.. To me, this sounds like FP11 isn’t set up right.. BUT if it wasn’t set up right, then the stage3d reference would have failed..
Ho hum ^_^