Monthly Archives: November 2008

[ papervision3d ] Texture switch at runtime

Here we have a quick example on how to change the texture of a primitive object in papervision3d…
At the end this is what you get:
This is the Document Class, its pretty simple and the methods are self descriptive so i don’t think you’ll have any trouble using it :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package
{
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.display.Sprite;
import flash.display.MovieClip;
import [...]

Posted in AS3, papervision3d | Tagged , | 2 Comments

Sending Variables in AS3 A.K.A. sendAndLoad in AS2

in AS2 sending and receiving variables was easy, you could do it even with your eyes closed =D
but in AS3 is another story
remember AS2??

1
2
3
4
var lv:LoadVars = new LoadVars();
lv.username = "ruliman";
lv.password = "123456";
lv.sendAndLoad("somefile.php",lv,"POST");

nice isn’t??
in AS3

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var variables:URLVariables = new URLVariables();
variables.username = "ruliman";
variables.password= "123456";
//
trace(variables.toString());
var request:URLRequest = new URLRequest("somefile.php");
request.method = URLRequestMethod.POST;
request.data = variables;
 
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
 
try{
loader.load(request);
}
catch [...]

Posted in AS3 | 16 Comments