- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
mx_internal function columnWordWrap(c: DataGridColumn): Boolean {
if (c.wordWrap == true)
return true;
if (c.wordWrap == false)
return false;
return wordWrap;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−361.9
mx_internal function columnWordWrap(c: DataGridColumn): Boolean {
if (c.wordWrap == true)
return true;
if (c.wordWrap == false)
return false;
return wordWrap;
}
American Flex project
−348
if (songName != null || generatedName != null, userId != null)
я плачу, чоткое условие...
−343
// Hello World in ActionScript 3. Place code in the first frame Actions.
var t:TextField=new TextField();
t.text="Hello World!";
addChild(t);
хелло ворлд на action script 3 =/
−356
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.lled)) {
if (this._parent.sol.gotoAndStop(2) ){
if (this._parent.polzu._y<210) {
this._parent.polzu._y += 1;
}
}
} else {
if (this._parent.polzu._y>150) {
if (this._parent.sol.gotoAndStop(3) ){
this._parent.polzu._y -= 0.3;
}
}
}
}
−100
...
@font-face
{
src: url("/components/TimeNewRoman.swf");
fontFamily: "Times New Roman";
}
...
TextArea {
backgroundAlpha: 0.07;
backgroundColor: #ffffff;
borderColor: #99ff00;
color: #99ff66;
font-family: "Times New Roman";
}
...
обнаружил в css своего РАБОЧЕГО проекта... не, спать все-таки надо временами)
−364
public static function cleanArray(a:Array):void
{
var size:Number = new Number(a.length);
for (var i:int = 0; i < size; ++i)
{
a.pop();
}
}
очистка массива
−616.9
Var panelTile1:PanelTile = PanelTile(target.parent.parent.parent.parent.parent.parent);
обращение к одному из элементов
−596
acl normal_service_net src 10.0.0.0/24
acl good_service_net src 10.0.2.0/24
tcp_outgoing_address 10.1.0.1 normal_service_net
tcp_outgoing_address 10.1.0.2 good_service_net
tcp_outgoing_address 10.1.0.3
−567.3
do {
t_year++;
Length_periods[i]++;
} while (t_year<=Periods_end);
А вам слабо!?
−453.9
//_domain = url.match(/http\:\/\/(.*?)\/.*/is)[1]; не работает с https
_domain = url.substr(url.indexOf("://")+3).substr(0,url.substr(url.indexOf("://")+3).indexOf("/"));
не работает никак