Help in sending 23 min movie to other people to be able to be opened on their iPhone or iPad?

Help in sending 23 min movie to other people to be able to be opened on their iPhone or iPad?

Dont send the movie. Load the movie on a website and send people the LINK to the movie.

Similar Messages

  • I can send a imessage but the other person won't receive it, i can recieve theirs though. It shows messaged delivered

    I can send a IMessage but the other person won't receive it, i can receive theirs though. It shows message delievered

    Try running a power cycle = hold the power button till the phone shuts off then re-powers and you might try running system cache clear it's not like a Factory Reset but it can sometimes straighten out phone issues.. If the issue persist you might removing the Sim Card do it with phone off use care when removing leave it out for 10min. then reinstall..
    Give these suggestions a try let us know if it Helped. b

  • Sending To-do item to other people

    I guess this is more of a feature request than anything...
    But does anyone know of any "hack" to be able to send To-do items to other people.
    It would be amazing if I could send colleagues To-do items for them.
    You can of course put to-do items in notes - which you can send - but the To-do items get stripped off.
    The To-do items are actually just e-mails sitting on the mail server - so it can't be too hard...
    James

    HI Timothy,
    Try selecting the text, then right or control click it. You should see a pop up menu. The "to do" is at the bottom.
    Carolyn

  • HT204088 how can i see if other people are using my app store account on their phone ?????

    how can i see or know if people are using my app store id on their phone ??

    change your password also
    http://support.apple.com/kb/HT5624
    Peace, Clyde

  • I Can't load a website but other people can, it's not a problem with their website, I Can load any other page besides this website.

    I've been trying to get on this website for the past two days, All other websites work fine for me but this one doesn't, all other people I've asked have been able to get on it just fine, but I have not. It's not just on Firefox either, Internet Explorer and Google Chrome cannot load this website for me.

    Do a malware check with some malware scanning programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    See also:
    *http://kb.mozillazine.org/Error_loading_websites

  • When I try to send a message it says "sending". I can send text messages. Help! I also know of two other people who have this problem today. iPhone 5 users are we.

    I can not send messages only text from my iPhone 5. It's the same case for a couple of my friends. Started today.

    Hey laurafrommilwaukee,
    Thanks for the question. I understand you are experiencing issues sending iMessages. The following article may help to resolve your issue:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    You may also want to reset your network settings:
    Settings > General > Reset > Reset Network Settings.
    Note: this will delete any network related settings (saved Wi-Fi passwords, etc), it will not erase any content from your device.
    Thanks,
    Matt M.

  • HELP! I have a .mov and PC people can't see it. Can I reformat?

    HELP PLEASE!
    I am a relative novice to web building and QT, and have a problem that should be easy for SOMEONE out there to help me with...
    I am hearing from TOO many PC people that they can not view my video (.mov, @40mb) on my website. Some hear the sound but see no images, some see or hear nothing.
    I have a report from someone with XP Pro that it is just fine, but his XP Home gives him just sound. I have a "savvy PCer" who has no problem at all. Most get a quicktime error, need ActiveX enabled or get no message (or video) at all.
    I want to either put up a format that as many Mac and PC users as possible can see, or, I can put a "click here if you are on a PC" button to take them to a new page with a better format for these people.
    I would prefer the viewer NOT have to download ANYTHING to view the movie... Cause nobody really wants the hassle of that, and these are potential clients.
    This is the code I have in the site, if it helps... is it just a simple code change?
    <embed src="images/movie.mov" width="336" height="274.5" loop="False" align="middle" autoplay="true" controller="true" pluginspage="http://apple.com/quicktime/download/" border="3"> </embed>
    How do I save a Windows Media Player format? Do I need to buy some third party software?
    PLEASE, EXPERTS OF THE WORLD, HELP! I really want to fix this TODAY for new company launch!!
    PowerBook G4   Mac OS X (10.4.3)  

    As mentioned by the good folks above, you're embedding your movie, but you're not telling the browser which plugin to use. Also, for Internet Explorer, you need to use an <object> element and pass in additional <param>s. below is some code that should work for you. It uses both <object> and <embed> for maximum compatability:
    <object<br>
    classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
    codebase="http://www.apple.com/qtactivex/qtplugin.cab"
    height="290.5"
    width="336"
    <param name="src" value="images/movie.mov"/>
    <param name="scale" value="aspect" />
    <param name="controller" value="true" />
    <param name="autoplay" value="true" />
    <embed<br>
    type="video/quicktime"
    pluginspage="http://www.apple.com/quicktime/download/"
    height="290.5"
    width="336"
    src="images/movie.mov"
    scale="aspect"
    controller="true" //the controller adds 16px to height
    autoplay="true"
    />
    </object>
    The HTML code above contains an <object> element which contains several <param> elements and an <embed> element. Here is a breif description of what each of the <embed> parameters are doing:
    1. type specifies the MIME type of the streaming media so that the web browser knows which plugin to play the streaming media with. Do not change the value of this parameter.
    2. pluginspage this is an optional parameter which gives the user a location that they can download the appropriate plugin from. Do not change the value of this parameter.
    3. height refers to the media display height in pixels. If this parameter is not provided, the media will display using its actual hieght. When used it is important to remember to add 16 pixels to the height value if the controller bar will also be used.
    4. width refers to the media display width in pixels. If this parameter is not provided, the media will display using its actual width.
    5. src refers to the URL or location of the reference movie. The URL can be relative or absolute.
    6. scale is an optional value that will scale the media display according to the height and width specified multiplied by the value given. The default value is 1 (i.e. 1x). If you used a 2, the display would be twice as big as the height and width specified (i.e. 2x). You can also use the values "tofit" and "aspect". "tofit" will stretch or compress (change the apsect of) the movie to fit the height and width specified. "aspect" will fit the movie as closely as possible to the height and width specified without changing its aspect ratio.
    7. controller is an optional parameter that will not display the controller bar if the value given is "false". The default value is "true". When displayed, the controller bar will use 16 pixels from the value provided in the height parameter.
    8. autoplay is an optional parameter that will cause the media to not automatically play if the value given is "false". The default value is "true".
    The <embed> element and its parameters are supported by most web browsers except for Internet Explorer. This is why the <embed> element is nested inside the <object> element. Notice that the <object> element has its own height and width parameters. Also, the <object> element contains classid and codebase parameters which are required for your media to work properly inside of Internet Explorer. Do not change the values of classid and codebase.
    The <param> elements are used to pass additional parameters to Internet Explorer along with the <object> element. Notice that each of the <param> elements duplicate the remaining parameters provided in the <embed> element with the exception of the type and pluginspage parameters, which are specific to the <embed> element. Additional parameters for the <embed> and <object> elements can be found at Apple Computer Inc.'s QuickTime HTML Scripting Tutorial.

  • Under PC with windows 9, can I move garageband projects from one iOS devide to another ? (e.g iphone to ipad)

    I made a garageband project with iphone and export it to itunes to move it to my ipad.
    Hoever, exported .band is decrbed as folder, not a file, so i cannot move it to ipad.
    Do you know any way to solve this?

    Windows 9??? I didn't think 8 was finished yet!
    At the moment iTunes can't add a folder to the file sharing area, only individual files. Looking at an iMovie project it is exported as a zip file with a .iMobileMovie extension and I don't really understand why the same hasn't been done with .band exports.
    I have seen reports of success using iExplorer (formerly iPhoneExplorer) to add projects to the device but having completely failed to get it to work, or even show me the contents of the GarageBand app's folder on my iPhone I can't really suggest that as an option right now.
    I have however submitted a bug report about the issue. With luck it will be addressed at some point.
    tt2

  • HT4356 When or how can I print if mine is not an airprint? And I want to print from my iphone or iPad?

    Want to print but my printer is not airprint compatible according to the list on apple? When will it be available? It is Brother MFC-9840CDW a very expensive, printer, scanner, copier that is not currently compatible? Any help would be great thanks

    Only Brother will know if/when it will support AirPrint, they are the only people who can add support for it, not Apple. Does Brother have their own app in the app store that supports it and/or have you tried any of the thir-party printer apps ?

  • TS3276 can't get or send gmail following installing Yosemite 10.10.1 on my desktop but its working fine iPhone and iPad

    Following installing Yosemite 10.10.1 I can't get or send gmail on my iMac (21.2-inch, late 2012)

    Mail troubleshooting - Yosemite
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • If I buy a movie on iTunes will I be able to watch it on my iPhone without wifi?

    I'm going on holiday to France next week, and would like to buy a movie (The Breakfast Club) to watch during the journey on my iPhone. Will I be able to watch it without wifi? Or do you have to have wifi to watch? I would have thought that as soon as it's downloaded you can watch it without wifi but I wanted to double check in case I bought the film them couldn't watch it. Thank you!

    Once the movie has completey download, having an Internet connection is no longer necessary. It would be wise to test the movie before you leave, though, in case of glitches.
    Regards.

  • How can I save my fillable form so that when I share my form with other people they are able to save the fillable version of the form?

    I made a fillable form in Adobe Live Cycle - The problem I'm having is that when I share the form with someone they are unable to save the fillable version of the form once information has been put in - I need them to be able to save the fillable form so that when we need to make changes in the future that we don't need to fill out the entire form again.

    Firefox 4 saves the previous session automatically, so there is no longer need for the dialog asking if you want to save the current session.
    You can use "Firefox > History > Restore Previous Session" to get the previous session.<br />
    There is also a "Restore Previous Session" button on the default <b>about:home</b> Home page.
    Another possibility is to use:
    * [http://kb.mozillazine.org/Menu_differences Firefox (Tools) > Options] > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"

  • On 3G we cannot send emails from either our iPhones or iPad and this also happens with some WiFi connections but not all.  Yet we can always send emails from our Hotmail Email account.  What is causing this and what do we need to do to resolve it?

    On 3G we cannot send  Business emails from either our iPhones or Ipad and this also happens with some WiFi connections but not all.  Yet we can always send emails from our Hotmail Account using both 3G and WiFi.
    We bought the iPhones and Ipad so that we could send emails while we are out of the Office, but we are not able to do this unless we can find a WiFi connection. Incoming emails are fine.  We use IMAP, for Business emails just incase this is relevant and I know that Hotmail is POP3.
    Our technical IT knowledge is not great, so we look forward to your suggestions as to how to resolve this. 

    Contact whomever supports the email account and get the correct Outgoing email server settings from them.

  • TS4268 I'm trying to text my daughter through iMessage, which has always worked. But now it's not working. I can iMessage other people and so can she. We just can't talk to each other anymore.

    My daughter and I can't iMessage each other, which has never been a issue until today. We both can send and receive iMessage from other people just not each other. We have both deleted each other contact info and re-entered it. Turned iMessage off and on. Still can't message each other.

    It is no wonder she is not receiving your messages if she has iMessage turned off in her iPad.
    For her to receive iMessages on the iPad, she needs to turn iMessage ON in her iPad and then she needs to be connected to the internet in order to receive them.  This connection can go through WiFi or through cellular data if her iPad has this functionality, but those two requirements are a must.
    1. iMessages ON
    2. iPad connected to Wifi or cellular data.

  • Mountain Lion Messages and other iPhone and iPads not connecting

    Just downloaded Mountain Lion and have been trying to connect with the family on their iPhones and iPads. On the messaging page, it shows that they are offline, but when I check their phones, it looks like everything is ok.
    Also tried to connect via iChat and it would start the process and ring and pop up but when you tried to connect, it would totally disconnect.
    I dont know why their devices are showing off line and not receiving messages notes that I am sending

    Just downloaded Mountain Lion and have been trying to connect with the family on their iPhones and iPads. On the messaging page, it shows that they are offline, but when I check their phones, it looks like everything is ok.
    Also tried to connect via iChat and it would start the process and ring and pop up but when you tried to connect, it would totally disconnect.
    I dont know why their devices are showing off line and not receiving messages notes that I am sending

Maybe you are looking for

  • T8000 - Possible to use 80 GB HDD?

    Hi, I bought the T8000-Notebook with BIOS-Version 8.30. Now I want to upgrade my harddisk to a 80 GB device. Is this possible and is it afterwards possible to use the whole 80 GB or does the mainboard only detect less than the 80 GB? Is it only possi

  • Error in the adobe reader installation

    I need a help to install adobe reader. when trying to install software of any link available on the network the following error message appears in the installation: the path my documents or the volume is invalid. Insert it again. sorry for the transl

  • How to insert new line char while writing bytes into file

    Hello Sir, Is it possible to insert the new line character in set of String variables and stored them into bytearray ,then finally write into File? This is the sample code which i tried:              File f = new File(messagesDir,"msg" + msgnum + ".t

  • Photo problems and can i drag and drop files using windows explorer?

    i can only sync photos frm my com to my touch but i cant choose which photos i want and i tried searching for the files in itunes and i cant find them, thus cant delete them... on top of that, i can access the files in my touch but cant find any opti

  • Windows File Protection and a3d.

    When I install the driver CD for a X-fi series card on a fresh install of Windows XP, I get a warning in Event Viewer from "Windows File Protection." <BLOCKQUOTE dir=ltr> <EM>File replacement was attempted on the protected system file a3d.dll. This f