Re: How to set time to send a SMS automatically

I am ennoyed by the fact that it's not included the Sony SMS app in my Z3 Dual D6633, but alternative is here. Why would this app need access to Photos/Media/Files? 

Probably because if you attach a media file to an SMS it will become an MMS which is the same but has a file and so without access to files then if you did want to attach a file then you couldn't then this thread would be all about why can't I attach a media file to a SMS

Similar Messages

  • Where can I find a video that tells me how to set time on photos to 1 second each?

    where can I find a video that tells me how to set time on photos to 1 second each? Where can I find a video that tells me how to add black space to the sides of all photos so that they display completely instead of only showing the center (which shows peoples' crotches but cuts off their heads- great huh?)? Would like to import whole folders of photos, set each to 1 second, have each display completely without distorting to fill. and "play" the timeline as I build it so that I can see if its working before putting in 2000 pics?

    Hello Cain,
    You can see the Domestic Outbound Scenario (DOT) for how to use incompatibility scenario.
    You can find the Customizing guides at SAP Support Poratl.
    Regards
    Nitesh

  • In Forms, how to set time to control editng?

    hi guys, Im doing a data entry module.This module used to encode our daily transactions. Sometimes, there are editing/updating of data that happen everyday. My problem is that, i want to control this editng everday to lessen some data problem. My question is how to set time in an oracle forms to control this everyday editing or updating. I want to their editing/updating allow only during the date they encode that particular transactions.
    Can anybody help me solve this problem. Thank you!
    Lala

    Do you want to get the current date?
    You can use SYSDATE for that (getting the database-date) or SYSTEM.CURRENT_DATETIME (getting the OS-date)

  • How to set time zone for a session in Client Only installation

    Environment:
    OS : Unix (HP-UX 11.0)
    Oracle DB : Ver 8.0.5
    Developer : Ver 1.6 ( Client only Installation)
    Developer also on Unix.
    RDBMS and Developer Installed on different
    home directories.
    Our development is Forms 4.5 on X windows.
    Runtime is forms character mode.
    Probelm Description:
    To run the application I am using TWO_TASK to connect to the database. In our application we have to take care of time zones. For that in previous versions(NO TWO_TASK used) I used TZ unix environment variable, to get time zone dependent time wherever sysdate is used.
    Now because I am using TWO_TASK, oracle is no more using users TZ settings.
    Question : Is there any way I can make oracle to use the TZ environment setting

    Thanks for replying Johnny!
    What you are referring to is adding a city. I need to know how to set the time zone in settings -> Date & Time -> Timezone. Unless & untill this is set properly the iPod will never show me the right time. Please help me with it.
    I will definately use your advice on the second query.
    Thanks once again!
    Windows XP Pro

  • How to set time in calendar?

    Hi all,
    is possible set time in a calendar component in WVP with JSF1.2?
    i.e '10-12-2007 12:30'.
    any free component that do this?
    thank's in advance!

    No, I store ok and retrieve from DB.
    But in DB I have a datetime field in Mysql and I need to store the data in this way DATE 01-10-07 and time 10:15 pm.
    I need a component to do this. I don't believe that nobody had this situation.
    I need like the swing component JCALENDAR http://www.toedter.com/en/jcalendar/
    in JCAlendar you can set a dateformatpattern like dd/MM/yyyy HH:mm
    how is possible to do this, I think that 2 textfields, one to hours other to minutes is a poor solution.
    Thank's

  • How to set timer intervals for object + and a motion for entering stage

    Hi, I am making a simple game but I have a couple problems/queries.
    1) My game is a touch an object and you get a point game, currently the objects appear randomly over the screen, however I am trying to get it to slide into the screen similar to the Fruit Ninja game, but not limited to entering from one side, does anyone know how to set this?
    2) As I mentioned above my objects appear randomly, I have set a timer when I change the timer from 800 to another number, it just makes all the objects on the screen last for 800 milliseconds all at the same time then disappear and appear somewhere else on the screen for another 800 milliseconds and it repeats, what I am trying to do is make them come at different intervals, for example:
    Object 1 - constantly appears, so when the 800 millisecond is over, it comes back on a different part of the stage
    Object 2 - I want it to appear every 5 seconds, so when the 800 millisecond is over it will come back on the stage in 5 seconds, but not instantly like Object 1
    But I have no idea how to do this :/ anyone have the code needed for me to do this?
    Sorry for the long questions, I only asked because I really am stuck, I have been trying to do this for over 2 weeks now.
    Thanks very much.
    My Code
    [Code]
    //importing tween classes
    import fl.transitions.easing.*;
    import fl.transitions.Tween;
    import flash.utils.Timer;
    //hiding the cursor
    Mouse.hide();
    var count:Number = 60;
    var myTimer:Timer = new Timer(1000,count);
    myTimer.addEventListener(TimerEvent.TIMER, countdown);
    myTimer.start();
    function countdown(event:TimerEvent):void {
    myText_txt.text = String((count)-myTimer.currentCount);
    if(myText_txt.text == "0"){
    gotoAndStop(5)
    //creating a new Star instance;
    var star:Star = new Star();
    var box:Box = new Box();
    var bomb:Bomb = new Bomb();
    //creating the timer
    var timer:Timer = new Timer(800);
    var timerbox:Timer = new Timer(850);
    var timerbomb:Timer = new Timer(1000);
    //we create variables for random X and Y positions
    var randomX:Number;
    var randomY:Number;
    //variable for the alpha tween effect
    var tween:Tween;
    //we check if a star instance is already added to the stage
    var starAdded:Boolean = false;
    var boxAdded:Boolean = false;
    var bombAdded:Boolean = false;
    //we count the points
    var points:int = 0;
    //adding event handler to the timer;
    timer.addEventListener(TimerEvent.TIMER, timerHandler);
    //starting the timer;
    timer.start();
    function timerHandler(e:TimerEvent):void
              //first we need to remove the star from the stage if already added
              if (starAdded)
                        removeChild(star);
              if (boxAdded)
                        removeChild(box);
              if (bombAdded)
                        removeChild(bomb);
              //positioning the star on a random position
              randomX = Math.random() * 800;
              randomY = Math.random() * 1280;
              star.x = randomX;
              star.y = randomY;
              star.rotation = Math.random() * 360;
              box.x = Math.random() * stage.stageWidth;
              box.y = Math.random() * stage.stageHeight;
              box.rotation = Math.random() * 360;
              bomb.x = Math.random() * stage.stageWidth;
              bomb.y = Math.random() * stage.stageHeight;
              bomb.rotation = Math.random() * 360;
              //adding the star to the stage
              addChild(star);
              addChild(box);
              addChild(bomb);
              //changing our boolean value to true
              starAdded = true;
              boxAdded = true;
              bombAdded = true;
              //adding a mouse click handler to the star
              star.addEventListener(MouseEvent.CLICK, clickHandler);
              box.addEventListener(MouseEvent.CLICK, clickHandlerr);
              bomb.addEventListener(MouseEvent.CLICK, clickHandlerrr);
    function clickHandlerr(e:Event):void
              //when we click/shoot a star we increment the points
              points +=  5;
              //showing the result in the text field
              points_txt.text = points.toString();
                        if (boxAdded)
                        removeChild(box);
              boxAdded = false;
    function clickHandler(e:Event):void
              //when we click/shoot a star we increment the points
              points++;
              //showing the result in the text field
              points_txt.text = points.toString();
              if (starAdded)
                        removeChild(star);
              starAdded = false;
    function clickHandlerrr(e:Event):void
              gotoAndPlay(5);
    [/Code]

    The only thing that affects TopLink is the increment by, as increasing this is what allows TopLink to reduce the number of times it needs to go to the database to get additional numbers. Ie, an increment value of 1 means TopLink needs to go the database after each insert; an increment value of 50 allows it to insert 50 times before having to get a value from the sequence. The cache on the sequence object in the database affect the database access times. While it may improve the access times when the sequence number is obtained from the database, but I believe the network access to obtain the sequence is the greater concern and slow down for most applications. It all depends on the application usage and design though - an increment (and application cache) of 50 numbers seems to be the best default.
    I cannot say what effect the cache vs nocache settings will have on your application, as it will depend on the database load. Only performance testing and tuning will truly be able to tell you whats best for your application.
    Best Regards,
    Chris

  • How to set up delayed sending with Mail ?

    Since I am not allways internet connected, I would like in Mail to send my mail only when I am connected, or to decide by myself when to send mails.
    How to set up this fonction ?
    Or how to do with Mail when I am not permanently conncetd to internet ?
    Than You

    If you are not connected to the internet when selecting Send for a message, you will receive the following error message.
    Error
    This message could not be delivered and will remain in your Outbox until it can be delivered.
    The server "the account's SMTP server here" cannot be contacted on port 25 (or whatever Server Port is used by the account's SMTP server).
    When connected to the internet and launching Mail, all messages that remain in the Outbox mailbox will be sent automatically.
    No other setting is required but if you select Send for a message when not connected to the internet, you cannot prevent any messages from being sent that remain in the Outbox when connected to the internet and launching Mail.
    If you want to decide when to send messages that were composed when not connected to the internet, save the messages as a Draft. Open the saved Draft message and select Send.

  • How to set iPhone to send signal to TV

    Have iPhone 4, bought the apple composite AV cable. Nothing plays. Tried all TVs around the house. Manual says to set iPhone to send signal to TV. I re-read the Manual but I can't find any direct information on how to do this.

    Thank you for the prompt reply. The box of the product states "Apple Composite AV Cable MB129LL/B".
    Regarding your second sentence, I want to make sure I understand you. I have to download the iPod app "Videos" into my iPhone?
    Thank you again!

  • How to set up 'add sender to address book'

    I somehow lost all my contacts!! How can I add the sender of an email to my address book on a one-click basis. I think I have searched all avenues with no success. Have I missed something? Thanks

    When you are viewing a message in a tab or message pane there is a star to the right of the sender. If the star is filled with color they are already in one of your address books. Clicking an empty star adds it to the address book. Clicking the filled star opens the contact edit dialog box to fill in more details.

  • How come every time I send a text it says Message failure

    It just started happening a couple of days ago, every time I send a text message to people it says "message failed to deliver" and I have to resend the text.
    What does this mean its driving me nuts !!
    H E L P !!

    Hi Nessaa95,
    Welcome to the Apple Support Communities!
    I understand that sometimes when you send a message from your iPhone, you see an alert that the message failed to deliver. In this situation, I would recommend reading over and working through the troubleshooting steps in the attached article. 
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support
    Best regards,
    Joe

  • How to set an attached USB drive to automatic sleep using Airdisk?

    Greetings all!
    I am looking for a way to set my two USB drives to sleep when they are not being used. I only use them a few minutes a day, and don't want to run them down or use the electricity to keep them spinning.
    It seems there has been some discussion about this but I haven't been able parse all the conversations. Some people seem to have gotten it to work, while others are relying on a drives "internal" mechanisms. It would be great if someone (perhaps at Apple?) could chime in with an overview of the problem.
    Perhaps it is linked to the method of authentication - ie., (using Airport Utility 5.1), whether the Disks > File Sharing > "Secure Shared Disks" > is with "disk password" or another method?
    Some have suggested a radio button for a future firmware/other update such as:
    "Set drives to sleep when not in use" (Let's hope for this!), but I am hoping for a simple solution in the near future.
    Any thoughts out there?
    best to all.
    *NB: I first posted this on Posted: Apr 4, 2007 12:23 AM and got NO response at all - hopefully I'll have more luck this time !

    Hello Andy,
    Thanks for your reply.
    1. For using Microsoft Outlook rules, we need to keep the computer on, even after work or the colleague is on leave. That is not allowed in my company.
    2. For sending an auto-reply email based on subject, that is impossible because the emails from customers are different and we don't have a basic standard.
    3. Could you please elaborate how to set a transport rule in Exchange server to achieve the goal?
    Thanks a lot in advance.
    Steven
    1. Only client rules require that the Outlook client remain open. An auto-reply rule should be server-side, so no need to leave Outlook open.
    2. Yep!
    3. Walk through the hub transport rules and you see one that replies with a rejection code. Thats the best you can get with a hub transport rule and not something I would recommend in your scenario. You could also search around for 3rd party solutions.
    Twitter!:

  • HT1178 how to set time capsule on new network

    I had a time capsule set up on a wireless network. The network changed modems and I forgot to change the time capsule. Now it will not register on the new network. How do I get it to register.

    Do a factory reset.

  • How to set time delay in javascript for indesign cs2?

    while am running the js, am using function date.getMonth, date.getDate()...
    this function produce the error, which return the function as error message,
    if i set alert before running this every time , am not getting the errror
    how to solve this?
    thanks in advance
    subha

    Dear Subhaoviya
    Please use the below coding and get your date and Time functions
    var today = new Date();
    var myDate = today.getDate();
    Thanks & Regards
    T.R.Harihara SudhaN

  • How to set time out in the abap program?

    Hi,
    I want to set the execution time in the IN_UPDATE block of a BADI, could you tell me how to code that?
    When the specified execution time reaches, and the badi is still running, then pop up a window and tell the end user the time out message.
    Does SAP have any function regarding this? Thanks in advance.

    You can have the INPUT be a number of seconds, then calculate the max endtime = SY-UZEIT + INPUT. Have checks throughout the program that returns an error as OUTPUT if exittime >= SY-UZEIT(current time).
    There may be an easier way but this is all I can think of as a user set timeout option.

  • Timing Function in IDM ;  how to set "timer"

    I have a question which has not been discussed here before (or, if it has, I haven't noticed).
    It concerns the use of a TIMER function in IDM.
    I am pretty sure IDM has one; just not sure how to implement this.
    Let's say you want to evaluate the time difference between when a person logs into the system, and today's (current) date? If a certain amount of time has elapsed, send that person an Email Notification?
    Or : someone has not performed a certain required action; after a certain time, send them a "*notice*" (could also be an email notification).
    Or, even more complex : send 2 or 3 such notifications, at regular intervals; and, if the person does not respond, then IDM will automatically perform an action of its own (maybe, disable that person's account, etc)
    Basically, my point is : does IDM possess a certain "*internal clock/timer*" which can be activated, to monitor certain activities; and, based on how much time has elapsed, perform a certain action ??
    If yes, then how can I configure and/or implement such a function?

    Going with the deferred task example you'd have to do something like this:
    (Again, it doesn't have to be a deferred task.)
    <Action id="0" name="Add Deferred Task" application="com.waveset.session.WorkflowServices">
        <Argument name="op" value="addDeferredTask"/>
        <Argument name="type" value="User"/>
        <Argument name="name" value="$(accountId)"/>
        <Argument name="subject" value="Configurator"/>
        <Argument name="task" value="Your Workflow Name"/>
        <Argument name="date"> <!-- date the deferred task is to execute -->
            <ref>date</ref> <!-- precalculated date -->
        </Argument>
        <Argument name="date_task_added">
            <!-- add the time the task was actually registered -->
            <invoke name="getTime"> <!-- calculates "now" -->
                <invoke name="getInstance" class="java.util.Calendar"/>
            </invoke>
        </Argument>
        ... other deferred task arguments here
    </Action>IDM will wait until the date the task is to be executed, see the "date" argument. When IDM actually executes the deferred task (it may be a long time after it was originally scheduled to execute if there's been a delay or an outage or whatever) you'll have a variable in your workflow called "date_task_added" that should be a java date object. (Or a string, I can't remember. If it is you'll just have to convert it, no biggy.) That will give you the date the deferred task was registered. Within the workflow you can build another date object using the exact same code to calculate "now".
    From there getting the time difference between both objects is a simple matter of getting the milliseconds for each and doing the math to get the difference. That's just one way, there's dozens of ways of calculating time differences with the java date and calendar objects.
    Note: untested code. You may have to tweak it to work properly.

Maybe you are looking for