O

Çavuş
12 Aralık 2009
Tarihinde Katıldı
Takip Ettikleri
0 üye
Görüntülenme (?)
10 (Bu ay: 3)
Gönderiler Hakkında
O
6 yıl
Vestel Tv Ses Sorunu
Merhabalar.
Vestel 50UD8100 model televizyon aldım, daha bir ay olmadı. Ancak sesle ilgili bir sıkıntı yaşıyorum. Her yayında (digiturk, netflix vs.) ses belirli araıklarla kısılıp düzeliyor. Yani seviye düşüp normale dönüyor.

Menüyü kurcaladım, nette araştırdım çözüm bulamadım. Teknik servisi çağırmadan önce buradan kolay bi çözüm önerisi olan var mı diye danışmak istedim. Şimdiden teşekkürler.
O
9 yıl
countup ve countdown (nerede yanlışım?)
arkadaşlar elimde bir belirli bir günden ileri sayan bir sayaç var

onun altına da belirli bir güne geri sayım yapan bir sayaç eklemem lazım

javascript kodunu anladığım kadarı ile editliyorum ama olmuyor

*not: o kodu editlemem gerekmekte

 
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="donanım.ico" rel="icon" type="image/x-icon" />


<style>
#countup {margin: "center"}
#countup p {display: inline-block;padding: 0px;}
#countup p.hours,
#countup p.days,
#countup p.minutes,
#countup p.seconds
#countdown {margin: "center"}
#countdown p {display: inline-block;padding: 0px;}
#countdown p.saat,
#countdown p.gun,
#countdown p.dak,
#countdown p.san

</style>
</head>

<div id="countup">
<div align="center" style="font-style: oblique; color: #F916BF;">
"mevzu olalı
<p id="days">00</p>
<p class="timeRefDays">gün</p>
<p id="hours">00</p>
<p class="timeRefHours">saat</p>
<p id="minutes">00</p>
<p class="timeRefMinutes">dakika</p>
<p id="seconds">00</p>
<p class="timeRefSeconds">saniye</p> oldu."
</div>

<script>
window.onload=function uptime() {
// Month,Day,Year,Hour,Minute,Second
upTime('oct,03,2016,20:35:00'); // Bu satır değişecek!!
}
function upTime(countTo) {
now = new Date();
countTo = new Date(countTo);
difference = (now-countTo);

days=Math.floor(difference/(60*60*1000*24)*1);
hours=Math.floor((difference%(60*60*1000*24))/(60*60*1000)*1);
mins=Math.floor(((difference%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
secs=Math.floor((((difference%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);

document.getElementById('days').firstChild.nodeValue = days;
document.getElementById('hours').firstChild.nodeValue = hours;
document.getElementById('minutes').firstChild.nodeValue = mins;
document.getElementById('seconds').firstChild.nodeValue = secs;

clearTimeout(upTime.to);
upTime.to=setTimeout(function uptime(){ upTime(countTo); },1000);
}
</script>



<div id="countdown">
<div align="center" style="font-style: oblique; color: #F916BF;">
"mevzunun olmasına
<p id="gun">00</p>
<p class="timeRefDays">gün</p>
<p id="saat">00</p>
<p class="timeRefHours">saat</p>
<p id="dak">00</p>
<p class="timeRefMinutes">dakika</p>
<p id="san">00</p>
<p class="timeRefSeconds">saniye</p> kaldı."
</div>
<script>
window.onload=function endtime() {
// Month,Day,Year,Hour,Minute,Second
upTime('oct,03,2017,20:35:00'); // Bu satır değişecek!!
}
function endtime() {
now = new Date();
countTo = new Date(countTo);
difference = (countTo-now);

days=Math.floor(difference/(60*60*1000*24)*1);
hours=Math.floor((difference%(60*60*1000*24))/(60*60*1000)*1);
mins=Math.floor(((difference%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
secs=Math.floor((((difference%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);

document.getElementById('gun').firstChild.nodeValue = days;
document.getElementById('saat').firstChild.nodeValue = hours;
document.getElementById('dak').firstChild.nodeValue = mins;
document.getElementById('san').firstChild.nodeValue = secs;

clearTimeout(endTime.to);
endTime.to=setTimeout(function endtime(){ endTime(countTo); },1000);
}
</script>



Yardım edebilirseniz çok sevinirim
O
9 yıl
countup ve countdown (nerede yanlışım?)
arkadaşlar elimde bir belirli bir günden ileri sayan bir sayaç var

onun altına da belirli bir güne geri sayım yapan bir sayaç eklemem lazım

javascript kodunu anladığım kadarı ile editliyorum ama olmuyor

*not: o kodu editlemem gerekmekte

 
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="donanım.ico" rel="icon" type="image/x-icon" />


<style>
#countup {margin: "center"}
#countup p {display: inline-block;padding: 0px;}
#countup p.hours,
#countup p.days,
#countup p.minutes,
#countup p.seconds
#countdown {margin: "center"}
#countdown p {display: inline-block;padding: 0px;}
#countdown p.saat,
#countdown p.gun,
#countdown p.dak,
#countdown p.san

</style>
</head>

<div id="countup">
<div align="center" style="font-style: oblique; color: #F916BF;">
"mevzu olalı
<p id="days">00</p>
<p class="timeRefDays">gün</p>
<p id="hours">00</p>
<p class="timeRefHours">saat</p>
<p id="minutes">00</p>
<p class="timeRefMinutes">dakika</p>
<p id="seconds">00</p>
<p class="timeRefSeconds">saniye</p> oldu."
</div>

<script>
window.onload=function uptime() {
// Month,Day,Year,Hour,Minute,Second
upTime('oct,03,2016,20:35:00'); // Bu satır değişecek!!
}
function upTime(countTo) {
now = new Date();
countTo = new Date(countTo);
difference = (now-countTo);

days=Math.floor(difference/(60*60*1000*24)*1);
hours=Math.floor((difference%(60*60*1000*24))/(60*60*1000)*1);
mins=Math.floor(((difference%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
secs=Math.floor((((difference%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);

document.getElementById('days').firstChild.nodeValue = days;
document.getElementById('hours').firstChild.nodeValue = hours;
document.getElementById('minutes').firstChild.nodeValue = mins;
document.getElementById('seconds').firstChild.nodeValue = secs;

clearTimeout(upTime.to);
upTime.to=setTimeout(function uptime(){ upTime(countTo); },1000);
}
</script>



<div id="countdown">
<div align="center" style="font-style: oblique; color: #F916BF;">
"mevzunun olmasına
<p id="gun">00</p>
<p class="timeRefDays">gün</p>
<p id="saat">00</p>
<p class="timeRefHours">saat</p>
<p id="dak">00</p>
<p class="timeRefMinutes">dakika</p>
<p id="san">00</p>
<p class="timeRefSeconds">saniye</p> kaldı."
</div>
<script>
window.onload=function endtime() {
// Month,Day,Year,Hour,Minute,Second
upTime('oct,03,2017,20:35:00'); // Bu satır değişecek!!
}
function endtime() {
now = new Date();
countTo = new Date(countTo);
difference = (countTo-now);

days=Math.floor(difference/(60*60*1000*24)*1);
hours=Math.floor((difference%(60*60*1000*24))/(60*60*1000)*1);
mins=Math.floor(((difference%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
secs=Math.floor((((difference%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);

document.getElementById('gun').firstChild.nodeValue = days;
document.getElementById('saat').firstChild.nodeValue = hours;
document.getElementById('dak').firstChild.nodeValue = mins;
document.getElementById('san').firstChild.nodeValue = secs;

clearTimeout(endTime.to);
endTime.to=setTimeout(function endtime(){ endTime(countTo); },1000);
}
</script>


Yardım edebilirseniz çok sevinirim
O
11 yıl
adobe flash cc cache
adobe flash cc projesinin çıkışını alırken program %94 kapanıyor. tahminim cache sıkıntısı limitinin yetmediği, fakat bunu nasıl arttıra bileceğimi bulamadığım için ayarı değiştirip denyemedim. herhangi bir deneme yapamadığımdan da emin değilim. (herhangi bir hata kodu veya hata bilgisi de vermiyor)
O
11 yıl
flash a3 üçle air
adobe flash as3 ile bir android app (oyunu yapıyorum) test için yükleme yaptığım tablette adobe'nin air uygulamasını yükletti.
air olmadan as3 ile bir şey üretme imkanım var mı?
O
12 yıl
gmail app\u0027yi varsayılan mail olarak atama
telefonumda gmail app uygulamasını kullanıyorum (bazı işlemlerde daha çok işe yaradığından) fakat herhangi bir şeyi e-posta olarak göndermek istediğim de telefon kendi mail uygulamasını açıyor.... gmail app'yi nasıl varsayılan (default) olarak ataya bilirim?
O
12 yıl
mobil siteye yönleniyor ama açmıyor
sitemin mobil html versiyonunu yaptım.
subdomain olarak mobile.xxxx.com'u oluşturdum mobil giriş yapınca subdomain'e ulaşıyor fakat subdomain'deki index.html sayfamı açmıyor
webden mobile.xxxx.com'a girince sorunsuz açabiliyorum

neden olabilir acaba?
O
12 yıl
lenovo z580 OS X Mavericks
lenovo z580 laptop'um var. win7 yanına OS X Mavericks yüklemeyi düşünüyorum bazı programları kullanmayı ilerletmek için... sizce bir sorun yaşar mıyım?

hardware özellikleri pc'nin;
*3.nesil Intel® Core™ i7-3632QM işlemci
*Orijinal Windows® 7 Home Premium 64-bit
*15.6W HD LED Wedge with HD camera 1.0MP
*6GB DDR3 RAM
*1TB 5400rpm HDD
O
12 yıl
kalorifer hiç durmadan tıklıyor
merkezi ısıtma sistemi var apartmanda eski döküm kalorifer peteklerinden.
pay ölçer takılmadan önce sadece ısınırken ve soğurken tık tık öten kalorifer şu an hiç durmadan tık tık ötüyor ve bir su sesi geliyor hep kaloriferden.
neden olabilir fikri veya bilgisi olan var mı acaba?
DH Mobil uygulaması ile devam edin. Mobil tarayıcınız ile mümkün olanların yanı sıra, birçok yeni ve faydalı özelliğe erişin. Gizle ve güncelleme çıkana kadar tekrar gösterme.