“;
}
wenn (i == 5) {
Wechselstrom += „ “;
document.getElementById („div6“) .innerHTML = Wechselstrom + str + „
“;
}
wenn (i == 6) {
Wechselstrom += „ “;
document.getElementById („div7“) .innerHTML = Wechselstrom + str + „
“;
}
}
Funktion formatDate (tmpDate) {
var t = Date.parse (tmpDate);
// var t = Date.parse („2010-08-13T00: 20: 45+00: 00“);
var d = neues Datum (t);
var-Wochentag = neue Reihe („Sonntag“, „Montag“, „Dienstag“, „Mittwoch“, „Donnerstag“, „Freitag“, „Samstag“);
var-Monat = neue Reihe („Januar“, „Februar“, „März“, „April“, „Mai“, „Juni“, „Juli“, „August“, „September“, „Oktober“, „November“, „Dezember“);
var h = d2 (d.getHours ()); var m = d2 (d.getMinutes ());
var ampm = „morgens“;
wenn (h > 12) {
h = d2 (h - 12);
ampm = „P.M.“;
}
var mfDate = Wochentag [d.getDay ()] + „,“ + Monat [d.getMonth ()] + „„+ tmpDate.substr (5, 2) +“, „+ d.getFullYear () +“ „+ h +“: „+ m +“ „+ ampm;
//-Alarm (mfDate);
RückholmfDate;
}
Funktion d2 (N) {
wenn (n < 10) Rückkehr „0“ + n;
Rückholn;
}
..............................................................................................
///PHP-Akte
PHP
$q=$_GET [„q“];
$j = 0;
$content= "";
$content. = „“;
$content. = „“;
wenn ($q == „Wechselstrom“) {
$xml= („http://twitter.com/statuses/user_timeline/15224867.rss ");
$content.= „ “;
}
elseif ($q == „ich“) {
$xml= („http://twitter.com/statuses/user_timeline/15224867.rss ");
$content.= „ “;
}
elseif ($q == „CNN“) {
$xml= („http://twitter.com/statuses/user_timeline/759251.rss ");
$content.= „ “;
}
elseif ($q == „Yahoo“) {
$xml= („http://twitter.com/statuses/user_timeline/19380829.rss ");
$content.= „ “;
}
elseif ($q == „nelp“) {
$xml= („http://twitter.com/statuses/user_timeline/78461452.rss ");
$content.= „ “;
}
elseif ($q == „obama“) {
$xml= („http://twitter.com/statuses/user_timeline/813286.rss ");
$content.= „ “;
}
elseif ($q == „Frau“) {
$xml= („http://twitter.com/statuses/user_timeline/24741685.rss ");
$content.= „ “;
}
$curl_handle=curl_init ();
curl_setopt ($curl_handle, CURLOPT_URL, $xml);
curl_setopt ($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt ($curl_handle, CURLOPT_RETURNTRANSFER, 1);
$buffer = curl_exec ($curl_handle);
$xmlText = neues SimpleXmlElement ($buffer, LIBXML_NOCDATA);
curl_close ($curl_handle);
$cnt = Zählimpuls ($xmlText->channel->item);
für ($i=0; $i<$cnt; $i++) {
$url = $xmlText->channel->item [$i] - >link;
$title = $xmlText->channel->item [$i] - >title;
$date = $xmlText->channel->item [$i] - >pubDate;
$this_date = $date;
$this_ts = strtotime ($this_date);
$this_date = strftime („%A, %B %d, %Y %I: %M %p“, $this_ts);
$date = ucfirst ($this_date);
$content. = „Atttt
AJAX NICHT Seiten-Last Demo
Your tägliche Twitter-Quelle ist *** HIER ***
des >Reporter Anderson-Fassbinders
Information an Footer
The Weise das Webseite looks
Antwort : Warum mehrfache Zufuhren des Twitter RSS kann nicht von einer Webseite manchmal geholt werden?
Sie müssen ColorMatrixFilter verwenden
Ich schlage Sie Blick in
http://livedocs.adobe.com/flex/3/langref/flash/filters/ColorMatrixFilter.html vor Im Folgenden Beispiel, das der Sättigung auf Blau eingestellt wird, wenn die Maus über und zurückzufallen ist, wenn Maus aus ist (ist using Unfall und Rollout anstelle vom mouseOver und vom mouseOut besser:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
privates Funktion onRollOver (ev: Ereignis): Lücke
{
myMovie.filters = [neues ColorMatrixFilter (this.getSaturationMatrix ())];
}
privates Funktion onRollOut (ev: Ereignis): Lücke
{
myMovie.filters = neue Reihe ();
}
privates Funktion getSaturationMatrix (): Reihe {
var-Matrix: Reihe = neue Reihe ();
Matrix = matrix.concat ([0, 0, 0, 0, 0]); //red-Reihe
Matrix = matrix.concat ([0, 0, 0, 0, 0]); //green-Reihe
Matrix = matrix.concat ([0, 0, 1, 0, 0]); //blue-Reihe
Matrix = matrix.concat ([0, 0, 0, 1, 0]);
Rückholmatrix;
}