Skip to main content

Home/ myiphone/ Group items tagged apple

Rss Feed Group items tagged

lilin_fr

Forum iPhone & iPod Touch - www.iPhon.fr / Choisir son propre ordre d'icones - 0 views

  • Voici la liste des identificateurs pour ceux qui ne sont pas inscrit sur le site: Musiccom.apple.mobileipod-AudioPlayerVideoscom.apple.mobileipod-VideoPlayerPhotoscom.apple.mobileslideshow-PhotosiTunescom.apple.MobileStoreSafaricom.apple.mobilesafariMailcom.apple.mobilemailWeathercom.apple.weatherInstallercom.nullriver.iphone.InstallerCalendarcom.apple.mobilecalYoutubecom.apple.youtubeNotescom.apple.mobilenotesContactscom.apple.MobileAddressBookMapscom.apple.MapsClockcom.apple.mobiletimerCalculatorcom.apple.calculatorSettingscom.apple.PreferencesStockscom.apple.stocksFindercom.googlecode.MobileFinderChatcom.twenty08.MobileChatToDoListcom.include7.mobiletodolistTextEditcom.google.code.MobileTextEditNEScom.natetrue.iphone.nesappFiveDicecom.borngraphics.fivediceMinesnet.mm-3.iphone.minesTetrominoscom.google.code.tetrominosiBlackJackcom.mccarron.iblackjackLights Offorg.deliciousmonster.lightsoffSudokuorg.zackb.sudokuAntsnet.schine.ants_controlPigShootercom.spiffytech.pigshooterObliquecom.folabs.obliqueiLightcom.sadun.iLightCustomizecom.thespicychicken.customizeApollocom.google.code.apolloimBookscom.zacharybrewstergeisz.booksColloquycom.googlecode.mcolloquyiSplitcom.kroo.iSplitSketchescom.latenitesoft.SketchesTerminalcom.googlecode.mobileterminal.TerminalLockBoxcom.googlecode.iphonelockboxSummerboard Prefscom.apptapp.SummerBoardStumblercom.googlecode.iphone-wireless.applications.StumblerNavizoncom.mexens.iphone.navizonPDF Viewercom.sadun.pdfvieweriFlashCardscom.googlecode.iflashcardsInstaller 3.0a11:com.apptapp.Installer
lilin_fr

Modifier le Double-Tap - 0 views

  • Les manipulations :    * Récupérer le fichier : com.apple.springboard.plist situé dans /private/var/root/Library/Preferences/    * Faîtes en une sauvegarde,    * Editez le (si vous êtes sur PC, utilisez ce lien afin de le transformer dans un format lisible : Convert Apple Property list from binary to text XML )    * Récupérez le .app que vous souhaitez exécuter depuis le double-tap (dans notre cas l’application search.app située dans le répertoire /Applications    * Ouvrez le fichier Info.plist se trouvant dans votreapp.app et recopiez la ligne comme indiqué dans l’image ci-dessous:    * Ouvrez le fichier com.apple.springboard.plist et remplacez com.apple.mobilephone?view=FAVORITES par celui de votre application ci-dessus comme dans l’image ci-dessous (cliquez sur l’image) :    * Remplacez votre fichier com.apple.springboard.plist de votre iPhone par celui que vous venez de modifier,    * Redémarrez votre iPhone    * C’est “tout” …Si vous désirez revenir à la situation initiale, il vous suffit d’aller dans les Settings/General/Home Button et de re-sélectionner une des options proposées.
thanaads Thanaads Noo

Unlocked iPhone 4 rumored to be launching in U.S. this week | All Apple News - 0 views

  •  
    Here's a rumor that popped up out of nowhere: reports are circulating that Apple will be releasing an unlocked version of the iPhone 4 in the United States this week.
thanaads Thanaads Noo

Apple leaks "iPhone 4S" product name in latest iTunes beta | iPhone News Updated - 0 views

  •  
    With just days to go before the company is expected to detail its latest iPhone offerings, Apple has let slip references to an Phone 4S in its latest iTunes beta.
alicejen monahan

Samsung Galaxy Tab 10.1 - 1 views

Samsung is all geared up to challenge the longtime favorite in touchscreen tablets, the Apple iPad. Announced in September and released in November 2010, the Samsung Galaxy Tab 10.1 is the long awa...

started by alicejen monahan on 09 Oct 12 no follow-up yet
lilin_fr

Modifier le Double-Tap - 0 views

  • Pour accéder directement aux contacts :<key>SBDoubleTapURL</key>   <string>doubletap://com.apple.mobilephone?view=CONTACTS</string>Amicalement.
lilin_fr

App idea: Unread SMS Notification - ModMyiFone.com - Apple iPhone forum, iPhone hacking... - 0 views

  • # date: 29th Dec 2007 # usage: a simple python script to check for unread messages at interval # if there are unread messages, play a user-defined sound # warning: this script is not well tested, so use at your own risk # the script requires Python and Erica's Utilities to work # any problem please drop me a message # contact: peeInMyPantz@gmail.com import sqlite3 import os import time sms_db_path = "/private/var/root/Library/SMS/sms.db" # sound file to play when there are unread messages sound_path = "/private/var/root/Library/Scripts/sounds/OW1.WAV" # interval for checking unread SMS (in seconds) interval = 600 def main(): while 1: time.sleep(interval) if has_unread(sms_db_path): playSound() def has_unread(sms_db_path): conn = sqlite3.connect(sms_db_path) c = conn.cursor() # check for unread messages query = '''select count(flags) from message where flags=0''' c.execute(query) unread = int(c.fetchone()[0]) conn.close() if unread>0: return 1 else: return 0 def playSound(): cmd = "playaudio %s" % sound_path os.popen(cmd) main()
1 - 12 of 12
Showing 20 items per page