Schedule vibration mode for iphone using date/time

Can we schedule iphone using date/time  (duration in each day) , so that iphone can go into vibration/silent mode as per the schedule!!
Please share your views , Thanks in advance.

Thank you , I'm aware of this , but the bet is to make some app to play around for myself, any idea !!

Similar Messages

  • How to set up Airport Express in Bridge mode for hotel use

    Please provide step by step instructions on how to set up Airport Express in Bridge mode for hotel use. I do not have a computer with me, only an iPhone and AEX 802.11n.

    +"Please provide step by step instructions on how to set up Airport Express in Bridge mode for hotel use. I do not have a computer with me, only an iPhone and AEX 802.11n."+
    AirPort Utility is the application that must be used to setup and make any configuration changes to the AirPort Express. I'm not aware of an "App" for this.
    If you could borrow a computer from someone there for 30 minutes or maybe use the computer in the lobby, you could download AirPort Utility and reconfigure your Express. To help with setup, use an ethernet cable from the computer to the Express to help AirPort Utility "see" the Express.
    http://support.apple.com/downloads/#airport

  • Min,Max for a time Range and Sum of Records for the last date/time

    Hi All,
    I have a table with the following structure/data:
    create table  Events   (
                                        [EventID]       
    int                   NOT NULL,
                                        [Title]            
    nvarchar(200)  NOT NULL,
                                        [SourceName]  nvarchar(20)    NOT NULL,
                                        [Type]             
    int                  NOT NULL,
                                        [eDate]           
    datetime
    insert into Events values(100, 'Event 1', 'S01', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S07', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S08', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S09', 3,'2014-01-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S010', 3,'2014-01-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S03', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S04', 3,'2014-01-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S05', 3,'2014-01-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S06', 3,'2014-01-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S01', 3,'2014-02-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S02', 3,'2014-02-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S03', 3,'2014-02-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S04', 3,'2014-02-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S05', 3,'2014-02-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S06', 3,'2014-02-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S01', 3,'2014-03-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S02', 3,'2014-03-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S03', 3,'2014-03-01 00:00:00.000')
    insert into Events values(100, 'Event 1', 'S04', 3,'2014-03-01 00:00:00.000')
    insert into Events values(101, 'Event 2', 'S05', 3,'2014-03-01 00:00:00.000')
    insert into Events values(102, 'Event 3', 'S06', 3,'2014-03-01 00:00:00.000')
    And I wrote the following query:
     select EventID as [Event ID],
           Title, 
           count(distinct(SourceName)) as [Instances], 
           Type,
           min(eDate) as  [First Detected],
           max(eDate) as [Last Detected],
           datediff(d,min(eDate),max(eDate)) as [Delta (days)]
    from  Events
    where type = 3
    group by EventID, Title, Type
    having max(eDate) <> min(eDate)
       and max(eDate) =(select top 1 eDate from Events order by eDate desc)
    and I get the following results (see the instance number)
    Event ID Title         Instances Type First Detected                      Last Detected                    
       Delta (days)
    =============================================================================================================================
    100         Event 1         5         3    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000    
    59
    101         Event 2        
    3         3    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000     59
    102         Event 3        
    2         3    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000     59
    This is normal for this query however what I need to do is a little different.
    In other words, while I need to show when we recorded a specific event first and last time,
    I need to display the results for the last date/time when it was recorded. 
    For example what I need to provide should look like this:
    Event ID  Title                Instances        Type       First Detected                    
    Last Detected                          Delta (days)
    =============================================================================================================================
    100         Event 1            2                   3           
    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000      59
    101         Event 2            2                   3           
    2014-01-01 00:00:00.000     2014-03-01 00:00:00.000      59
    102         Event 3           
    2                   3            2014-01-01 00:00:00.000     2014-03-01 00:00:00.000     
    59
    Could you please help me to fix this query?
    TIA,
    John

    ;With cte As
    (Select EventID as [Event ID],
    Title,
    SourceName,
    Type,
    min(eDate) Over(Partition By EventID, Title, Type) as [First Detected],
    max(eDate) Over(Partition By EventID, Title, Type) as [Last Detected],
    eDate,
    datediff(d,min(eDate) Over(Partition By EventID, Title, Type),max(eDate) Over(Partition By EventID, Title, Type)) as [Delta (days)],
    max(eDate) Over() As MaxEDate
    from Events
    where type = 3)
    Select [Event ID],
    Title,
    COUNT(Distinct SourceName) As Instances,
    Type,
    [First Detected],
    [Last Detected],
    [Delta (days)]
    From cte
    Where eDate = MaxEDate And [First Detected] <> [Last Detected]
    Group By [Event ID],
    Title,
    Type,
    [First Detected],
    [Last Detected],
    [Delta (days)];
    Tom
    P.S. Thanks for providing the DDL and data.  That is always very helpful.

  • Can I create books for iPhone using iBooks Author?

    Can I create books for iPhone using iBooks Author?

    There is a new $5 iBooks Creator app in iOS app store for the iPad.
    The output looked pretty good for an iPad app.
    There is a video on how to use it to give you an idea of how easy it is.
    It creates ePub 2 whihc can be read on all platforms with an ePub reader except Amazon Kindle whihc forbids such things.
    You can run the ePub through Calibre and get MOIB for Kindle which works for me.
    I have done thirty or forty conversions so far.

  • Is there an official Rugby World Cup App for iPhone coming any time soon?

    Is there an official Rugby World Cup App for iPhone coming any time soon?

    Its good to know that I am not the only one left wondering about this!
    I expected the RWC 2011 website to post some information regarding this, though it appears they have something set up with Blackberry already.
    I'm holding out, hoping that an official app will come along, but some of the non-official ones seem quite decent.
    There seems to be a real lack of iDevice and Andriod official services/support for this RWC, which is a real shame because this would be the first RWC where you could combine the sport with great technology and communications.
    To me it appears the organizers missed a great oppertuinity or suck at planning/promoting.
    An iPhone/iPad official app would be fantastic!

  • How to compile your flex application for Iphone Using Adobe Flash CS5?

    How to compile your flex application for Iphone Using Adobe Flash CS5?

    I'm so sorry, I'm not really familiar with the codes.

  • Does messages on an iPhone use data if no wi-fi available?

    Does messages on an iPhone use data if no wi-fi available?

    well isn't that obvious... wy do you need to ask this? how else will you send data across...or do anything like surf the web if wifi is not there... thru ether?

  • How to Modify Search for Leads using Date types in the Assgmnt Block Date

    Hello Experts,
    I have a requirement to modify the search for Leads using Dates in the Assignment Block Dates and using the Posting Date of the transaction.
    Any ideas?
    Thank you in advance,
    Justin

    If you look at the grants, you'll see that there are over 170 objects from the FLOWS_030000 granted to PUBLIC:
    SQL> select count(*) from dba_tab_privs where owner= 'FLOWS_030000' and grantee = 'PUBLIC';
    173
    If we were go grant these privileges to a role, called APEX_APP_RU, and grant this role to APEX_PUBLIC_USER and any schemas an application is linked to (Workspace to Schema), would that be a workable solution?
    The only problem I see right off hand that this might not work is that PUBLIC has synonyms created for the FLOWS_030000 objects. If we revoke the underlying privileges, because of the synonyms, this might not work.
    SQL> select COUNT(*) from dba_synonyms where table_owner = 'FLOWS_030000' and owner = 'PUBLIC';
    176
    Does anyone else have any ideas?

  • Optimizing iweb 09 site for iphone use ?

    Hi does anyone know how I can optimize my site for iphone use ?
    At present the dimensions are fine but I cannot zoom in or scroll the portfolios ?
    Any tips would be great !
    My site is www.ruperteden.com
    Thanks in advance !

    edos wrote:
    Hi does anyone know how I can optimize my site for iphone use ?
    Apple says: +"You should read this document if you want your web content to look good and perform well on either the desktop or iPhone OS..."+ :
    _Safari Web Content Guide_
    Also bear in mind that Apple says: +"...if your webpage is less than 980 pixels wide causing it to scale too small on iPhone..."+
    edos wrote:
    My site is www.ruperteden.com
    Rather than posting your URL like this:
    www.ruperteden.com
    ...include the prefix to make it conveniently clickable:
    http://www.ruperteden.com

  • Add Attendees (name AND phone no.) from Address Book to iCal for iPhone use

    Hello scripting gurus and newbs alike.
    I've looked through the forums, but can't find a COMPLETE solution to what I believe should be a fairly straightforward problem. I'll start by asking the question as concisely as I can, then bring in more information about what I have tried, and learned, so far. I'll also outline my broad (mini) project aims at the end, in case anyone is interested.
    * Q: How can I add attendees, from my Address Book, to an iCal event, so that **ALL** the attendee details are included?
    Note: It is VITAL to me that attendees' phone number(s) are available through iCal, not just {display name, email, participation status}. This is because I want MobileMe to synch the event with my iPhone, so I can call attendees directly from iCal. (or at least have iCal open the attendee's Contacts record so I can call from there!)
    WHY DO I THINK IT SHOULD BE POSSIBLE?
    Manually, I can simply dbl-click on the event, click into the attendees field, start typing the attendee name, and hit enter. When I do this, it works. MobileMe synchs it to the iPhone, I open iCal, select the event, tap the attendee, and I'm calling.
    WHAT I'VE TRIED USING APPLESCRIPT
    When I try the following script, I've only managed to set Sheila's name/email/participation status. I can retrieve her phone number from Address Book using the above approach, but unsure how to make it stick in iCal * such that I am able to use it to call directly from iCal on the iPhone *
    ++++++++++++++++++++++
    tell application "Address Book"
    set anAttendee to name of (first person whose name contains "Sheila")
    end tell
    tell application "iCal"
    set newEvent to make new event at end with properties ¬
    {summary:"Meeting Info.", location:"ZIP", description:"More yak", start date:SD, end date:SD + 120 * minutes}
    make new attendee at end of attendees of newEvent with properties {display name:anAttendee}
    end tell
    ++++++++++++++++++++++
    WHERE I'VE LOOKED FOR SIMILAR EXAMPLES
    Thanks to Rob (et al) for providing script examples used to create the above, see here: http://macscripter.net/viewtopic.php?id=5692
    I've also looked at the following article, which makes me think I somehow need to use the PERSON ID in the event attendee list. Unfortunately, I have only managed to retrieve the ID, but had no joy trying to set it.
    http://www.mactech.com/articles/mactech … index.html
    THE PROJECT
    I'm a surveyor, and using dialog(s) to enter relevant info., I'm looking to streamline my preparation for surveys when I make each new appointment.
    My mini-project presently enables me to print survey forms (based on a Pages template) with details relating to the specific property (address/contact name&no./appointment date&time etc.) It also uses the appointment date&time to create the appropriate event in iCal.
    I'm also confident I can add the contact details, such as agent/owner name(s) and phone number(s) in Address Book.
    IF I COULD ONLY ADD THESE AS ATTENDEE(S), AS IF ADDED MANUALLY, I WOULD ALSO BE ABLE TO PHONE THE PROPERTY OWNERS WITH A COURTEOUS REMINDER WHEN I'M ON THE WAY!!
    Can anyone help me achieve this?
    Here's hoping.
    Phil (wiimixer)

    Phil
    Referencing the attendee in iCal will only directly record the properties you mention - because that's how it's designed to work and there's no way around the restriction unless iCal is changed.
    You could set the phone number elsewhere in the iCal event - e.g. notes, location, ... - and that would probably allow you to call from iCal (I don't have an iPhone so I can't be sure), but I am not sure I see the advantage over using the link to iPhone's Address Book which is set up by adding an attendee to the event. This might be because I am being dense, so if this is the case please elaborate.
    EDIT:
    I have read your original post in more detail since I wrote the above. It seems to me that you are saying that when you add the person to the iCal event via AppleScript that you do not get the link to the iPhone's Address Book when you sync via MobileMe. You imply, however, that it does work when you type the name manually. Are these both correct statements?
    Message was edited by: Bernard Harte

  • Message sent as iMessage instead of text for iPhone without data

    My iPhone does not have data. When I am in a wifi zone iMessage works and texts are received. When I am not in wifi, anyone who sends me a text from an iPhone using iMessage does not come through. Is there a setting where iMessages get automatically changed to text messages when receiving messages

    Hey there lg2222,
    It sounds like you are not getting iMessages from other people when not connected to Wi-Fi. I would first do these steps, if you have not already:
    The first step to resolving an issue with iMessage is to update your iOS software and your carrier settings to the latest versions. If iMessage still has an issue, follow the steps below for your issue.
    Then use these troubleshooting steps to help isolate and resolve the issue:
    To resolve issues with sending and receiving iMessages, follow these steps
    Check iMessage system status for current service issues.
    Go to Settings > Messages > Send & Receive and make sure that you registered iMessage with your phone number or Apple ID and that you selected iMessage for use. If the phone number or Apple ID isn't available for use, troubleshoot iMessage registration.
    Open Safari and navigate to www.apple.com to verify data connectivity. If a data connection isn't available, troubleshoot cellular data or a Wi-Fi connection.
    iMessage over cellular data might not be available while you're on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn which network your phone supports. If your network doesn't support simultaneous data and voice calls, go to Settings > Wi-Fi and turn Wi-Fi on to use iMessage while you're on a call.
    Restart your device.
    Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    If you still can't send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that the contact you're trying to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
    Back up and restore your device as new.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • How to use dates/times in the definition of local fields?

    Hello!
    I have few tough questions for which I haven't found an answer. I hope someone is capable to help me.
    1. Is there a transaction to search tables if we know the field?
    2. I'd like to define a local field and need to use dates in the calculation function. So basically I need to calculate the lean-time from the date of the purchase order (field BSTDK) to the date of the final delivery (field PLIFTS) and the result should be displayed in weeks. How can I do this? Or can I?
    3. Can I use the local fields further in my calculations?
    Thank you in advance!
    Maria Kangasniemi

    Hi,
    1. Is there a transaction to search tables if we know the field?
    Tcode:    SE84
    2. I'd like to define a local field and need to use dates in the calculation function. So basically I need to calculate the lean-time from the date of the purchase order (field BSTDK) to the date of the final delivery (field PLIFTS) and the result should be displayed in weeks. How can I do this? Or can I?
    Doing some calculation you can define it.
    3. Can I use the local fields further in my calculations?
    What is local Fields?

  • Time Zone for a particular date/time and location

    Hi,
    Consider this:
    You have some date stored somewhere (e.g. in a database), and it is stored in UTC. Now, you want to display that date in the local time at that particular time, e.g. with or without daylight savings depending on the time of year.
    A more concrete example:
    In Perth, Australia, daylight savings goes from Dec to Feb inclusive (approx).
    Now, you have two dates, say 2007-01-01T12:00:00+0000 and 2007-05-01T12:00:00+0000.
    You would like to display these dates as:
    2007-01-01T21:00:00+0900 and 2007-05-01T20:00:00+0800 respectively.
    However, given that the current timezone today (26th June) in Perth is +0800, they will be displayed as:
    2007-01-01T20:00:00+0800 and 2007-05-01T20:00:00+0800 respectively.
    Code for displaying in current timezone follows, as a starting point:
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.GregorianCalendar;
    import java.util.List;
    import java.util.TimeZone;
    public class TimeZoneTestMain
         * @param args
        public static void main(String[] args)
            // UTC timezone.
            TimeZone utcTZ = TimeZone.getTimeZone("UTC");
            // Collection of dates.
            List<Calendar> dates = new ArrayList<Calendar>();
            // Create a date/time - 10 Dec 2005 12pm UTC
            Calendar cal1 = new GregorianCalendar(2005, Calendar.DECEMBER, 10, 12, 0);
            dates.add(cal1);
            cal1.setTimeZone(utcTZ);
            // Create a date/time - 10 Dec 2006 12pm UTC
            Calendar cal2 = new GregorianCalendar(2006, Calendar.DECEMBER, 10, 12, 0);
            dates.add(cal2);
            cal2.setTimeZone(utcTZ);
            // Create a date/time - 10 Apr 2007 12pm UTC
            Calendar cal3 = new GregorianCalendar(2007, Calendar.APRIL, 10, 12, 0);
            dates.add(cal3);
            cal3.setTimeZone(utcTZ);
            displayDates(dates);
        private static void displayDates(List<Calendar> dates)
            DateFormat utcDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
            utcDF.setTimeZone(TimeZone.getTimeZone("UTC"));
            DateFormat waDF = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
            waDF.setTimeZone(TimeZone.getTimeZone("Australia/Perth"));
            for (Calendar cal : dates)
                Date date = cal.getTime();
                System.out.println("UTC date: " + utcDF.format(date)
                                   + ", WA date: " + waDF.format(date));
    }Output is:
    UTC date: 2005-12-10T12:00:00+0000, WA date: 2005-12-10T20:00:00+0800
    UTC date: 2006-12-10T12:00:00+0000, WA date: 2006-12-10T20:00:00+0800
    UTC date: 2007-04-10T12:00:00+0000, WA date: 2007-04-10T20:00:00+0800
    I would like the output to be (daylight savings only came in for WA in 2006):
    UTC date: 2005-12-10T12:00:00+0000, WA date: 2005-12-10T20:00:00+0800
    UTC date: 2006-12-10T12:00:00+0000, WA date: 2006-12-10T21:00:00+0900
    UTC date: 2007-04-10T12:00:00+0000, WA date: 2007-04-10T20:00:00+0800
    Cheers

    >
    might be problem with jdk version which you are
    using!!!
    Mine is jdk 5You are right - just tried with 1.6.0_01-b06 and all is good.
    For some reason it didn't occur to me that the other version of the JVM I was using wouldn't have the daylight savings rule, which would make sense since it was released before the daylight saving legislation was introduced by the WA state government!

  • Creating folios for iphone using a pdf-to-indesign script

    Hello, i need to convert all my magazines to iphone format. Someone can help me with the script using pdf-to-indesign for IPHONE? Or an alternate solution to convert all my magazines (1024 x 768) to Iphone (480 x 320)? Thanks a lot!!

    Working with Derek directly did the trick!
    The difficulty with the script is that it requires everything to be in "alphabetical order." What that means is that when you split the files in Acrobat into individual PDFs, everything needs to be in "alphabetical order" and Acrobat does not do that the way this script requires.
    So Acrobat gives me 1_ISSUE24.pdf, 2_ISSUE24.pdf and if I had 9 pages, that wouldn't be an issue. But I had over 200 pages for a specific issue and when you get to page 10, you're no longer working in alphabetical order if the single page numbers don't have a 0 in front of them.
    So if you have up to 99 pages, make sure every page with a single page number has a 0 in front of it, e.g. 01_ISUEE24.PDF
    If you have up to 999 pages, make sure every page with a single page and double page number has two 0's in front it., e.g. 001_ISSUE24.PDF
    Unless there's a program out there that will automatically put 0s in front of filenames for you, you have to do this manually, which is slightly time consuming. FAR LESS time consuming, however; than re-sizing everything yourself and doing this the old fashioned way with cut and paste, etc. etc. etc.
    So the script is extremely helpful, it's free - you just have to have your page numbers numbered correctly.
    Thank you, Derek, for your time and your help.

  • Is there a screensnap app which uses date/time as the filename?

    I'm looking for a simple screensnap app which uses the current date/time as the filename... e.g. 010220120500 or something similar.

    Ah... automator... the ******* step-child of the OS.  Forgot about that one. I checked out your link and ran up against a barrier. I can make a sequential workflow, a date/time workflow in day/month/year and a couple other variations... but not a truly sequential day/date/year/hour/minute/second non-repeating workflow. Oddly enough I can make a hour/min/sec workflow but that would not absolutely define the file and could create duplicate filenames.
    I've looked over a lot of these screensnap apps and haven't found one that can do a non-repeating (thru system on/off sequences) filenaming thing. Maybe it can't be done.
    Automator was a good idea and it was fun using it again. Thanks Jeff.

Maybe you are looking for

  • Issue in Bursting with XML Publisher in Applications

    Hi , After I submitted the conc.request for XML Output PDF, the request is getting Completed with Normal Status. I'm getting the below NULL Pointer Exception. Please find the below EXCEPTION from logfile. =============================================

  • Passing SORTED internla table  to ALV Function Module

    Hello all,       I define a work area WA1 with reference I defined a table (itab) by using following statement.       DATA: itab TYPE SORTED TABLE OF WA1 WITH UNIQUE KEY  field1 field2  WITH HEADER LINE.     I am unable pass the table itab to FM Reus

  • Layers from a PDF to be recognized by Illustrator

    I have exported a dwg to pdf using Autocad, now when I open the pdf with acrobat 9 I can see the layers from the dwg file with the same names and everything, and turn them on and off. When I open the same file with Illustrator the layers are all in o

  • HT4061 How to activate Nike+ipod in my iphone 5S

    Dear All, I want to activate nike+ipod app in my iphone 5s, but due to some reason which i don't know I enaable to activate nike+ipod application. Please do the needful... regards Viral Umate

  • Multiple MVC

    Hi guys, I am developing an BSP application with MVC Pattern. I am using data binding , where model binds the data between controller and view,which is very effective and efficient.           I have read in many logs and also in sap help that it is g