スポンサードリンク
プリペイド携帯に画像を転送するには?
プリペイド携帯に画像を転送するには?
現在、Softbankのプリペイド携帯電話201SHを使用していますが、インターネットは出来ずメールもロングメール受信不可にしておりどうやってパソコンから写真などを転送するのか分かりません。
色々検索してみましたが、PHOTOカムカムなどを試しても無理でした。
使用しているパソコンに赤外線のポートがあれば赤外線経由で転送できます。
ノートPCとかだとこっそりついてたりするので見落としがちですが・・・。IBMのノートPCなどには
大体付いてます。
携帯の赤外線受信をONにしてPCに近づけてみてください。いろんな角度で試すと、PCの画面に
「赤外線で通信できる機器が近くにあります」と出たらしめたもんです。
あとは転送したい写真をデスクトップに出来上がったアイコンにドラッグ&ドロップすると転送開始
されます。携帯側に届いた時点で「保存しますか?」と出たら保存すればOKですよ。
頑張ってください。
パソコンからの赤外線送信とは、まさに目から鱗が落ちる思いです!気づきませんでした。あいにくうちのパソコンは赤外線を無視してますが、赤外線ポートなどの購入を将来考えようかと。
<%
Function googleColor(value, random)
Dim colorArray
colorArray = Split(value, ",")
googleColor = colorArray(random Mod (UBound(colorArray) + 1))
End Function
Function googleScreenRes()
Dim screenRes, delimiter, resArray
screenRes = Request.ServerVariables("HTTP_UA_PIXELS")
delimiter = "x"
if IsEmpty(screenRes) Then
screenRes = Request.ServerVariables("HTTP_X_UP_DEVCAP_SCREENPIXELS")
delimiter = ","
end If
resArray = Split(screenRes, delimiter, 2)
if (UBound(resArray) + 1) = 2 Then
googleScreenRes = "&u_w=" & resArray(0) & "&u_h=" & resArray(1)
end If
End Function
Dim googleTime, googleDt, googleScheme, googleHost
googleTime = DateDiff("s", "01/01/1970 00:00:00", Now())
googleDt = (1000 * googleTime) + Round(1000 * (Timer - Int(Timer)))
googleScheme = "http://"
if StrComp(Request.ServerVariables("HTTPS"), "on") = 0 Then googleScheme = "https://"
googleHost = Server.URLEncode(googleScheme & Request.ServerVariables("HTTP_HOST"))
Dim googleAdUrl, googleAdOutput
googleAdUrl = "http://pagead2.googlesyndication.com/pagead/ads?" &_
"ad_type=text" &_
"&channel=2284441383" &_
"&client=ca-mb-pub-7834860267459398" &_
"&color_border=" & googleColor("FFFFFF", googleTime) &_
"&color_bg=" & googleColor("FFFFFF", googleTime) &_
"&color_link=" & googleColor("0000CC", googleTime) &_
"&color_text=" & googleColor("000000", googleTime) &_
"&color_url=" & googleColor("000000", googleTime) &_
"&dt=" & googleDt &_
"&format=mobile_double" &_
"&host=" & googleHost &_
"&ip=" & Server.URLEncode(Request.ServerVariables("REMOTE_ADDR")) &_
"&markup=chtml" &_
"&oe=utf8" &_
"&output=chtml" &_
"&ref=" & Server.URLEncode(Request.ServerVariables("HTTP_REFERER")) &_
"&url=" & googleHost & Server.URLEncode(Request.ServerVariables("URL")) &_
"&useragent=" & Server.URLEncode(Request.ServerVariables("HTTP_USER_AGENT")) &_
googleScreenRes()
Set googleAdOutput = Server.CreateObject("MSXML2.ServerXMLHTTP")
googleAdOutput.Open "GET", googleAdUrl, false
googleAdOutput.Send
Response.Write(googleAdOutput.responseText)
%>
スポンサードリンク