About FlashActiveContent & FlashVars

just a rewrite of a function in AC_RunActiveContent.js to
support a FlashVar Parameter =D
function AC_GetArgs(args, ext, srcParamName, classid,
mimeType){
var ret = new Object();
ret.embedAttrs = new Object();
ret.params = new Object();
ret.objAttrs = new Object();
for (var i=0; i < args.length; i=i+2){
var currArg = args
.toLowerCase();
switch (currArg){
case "classid":
break;
case "pluginspage":
ret.embedAttrs[args] = args[i+1];
break;
case "src":
case "movie":
args[i+1] = AC_AddExtension(args[i+1], ext);
ret.embedAttrs["src"] = args[i+1];
ret.params[srcParamName] = args[i+1];
break;
case "onafterupdate":
case "onbeforeupdate":
case "onblur":
case "oncellchange":
case "onclick":
case "ondblClick":
case "ondrag":
case "ondragend":
case "ondragenter":
case "ondragleave":
case "ondragover":
case "ondrop":
case "onfinish":
case "onfocus":
case "onhelp":
case "onmousedown":
case "onmouseup":
case "onmouseover":
case "onmousemove":
case "onmouseout":
case "onkeypress":
case "onkeydown":
case "onkeyup":
case "onload":
case "onlosecapture":
case "onpropertychange":
case "onreadystatechange":
case "onrowsdelete":
case "onrowenter":
case "onrowexit":
case "onrowsinserted":
case "onstart":
case "onscroll":
case "onbeforeeditfocus":
case "onactivate":
case "onbeforedeactivate":
case "ondeactivate":
case "type":
case "codebase":
ret.objAttrs[args
] = args[i+1];
break;
case "FlashVars":
case "width":
case "height":
case "align":
case "vspace":
case "hspace":
case "class":
case "title":
case "accesskey":
case "name":
case "id":
case "tabindex":
ret.embedAttrs[args] = ret.objAttrs[args
] = args[i+1];
break;
default:
ret.embedAttrs[args] = ret.params[args
] = args[i+1];
ret.objAttrs["classid"] = classid;
if (mimeType) ret.embedAttrs["type"] = mimeType;
return ret;
and the new html must say:
<script language="javascript">AC_FL_RunContent =
0;</script>
<script src="AC_RunActiveContent.js"
language="javascript"></script>
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js. In Flash,
run \"Apply Active Content Update\" in the Commands menu to copy
AC_RunActiveContent.js to the HTML output folder.");
} else {
AC_FL_RunContent(
'codebase', '
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'width', '157',
'height', '157',
'src', 'flashmovie',
'quality', 'high',
'pluginspage', '
http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'transparent',
'devicefont', 'false',
'id', 'someid',
'bgcolor', '#ffffff',
'name', 'lolcontent',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', 'flashmovie',
'FlashVars','foo=var&bar=foo',
'salign', ''
); //end AC code
</script>
See ya !!
By TøCaÐø157
Comments to :
sromero(at)voie(dot)com(dot)ar

Well, when you go in flash to commands menu, (if only you
update the Active Control update form flash..
http://www.adobe.com/go/7c29e252
) you will be able to see the option, and then it generes by it
self, placing the file .js on the folder where your file is.
and the above script, where the HTML is, take a look
http://www.flashgroup.net/forum/archive/index.php?t-5091.html
it works!!, but i have some issues on the possitioning of my
swf.....

Similar Messages

  • Help Needed!! embeding a swf widget into a flash site

    Hi all.
    I am currently making a flash site for a band, and need to
    embed an external SWF widget into it.
    Its easy enough to embed it into HTML page, but idealy this
    site will endup a single SWF file, to make distribution onto the
    bands various pages (MYspace etc) easier.
    The code to embed in html is:
    <embed src="
    http://www.soundclick.com/player/V2/mp3player200.swf"
    width="200" height="140"
    flashvars="bandid=850463&playType=band&ext=1&testMode=0&autoplay=1"
    name="MP3PlayerBasic" type="application/x-shockwave-flash"
    wmode="transparent" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    Some one told me it should be no probs to embed a swf with
    some sort of LoadMovie command, but he didnt have a qule about
    assigning flashvars to it.
    Any help here would ge greatly apreciated.
    Cheers.
    Sion

    I am listening to you and was letting you know that the code that I am trying to use is probably from an old forum. The code that Flash CS4 cranks out is about 10 pages long which seems a little much just to import an .swf with a transparent background. I don't imagine CS6 would be much shorter.
    From what I gathered, the html file checks to see what version of Flash you're using as well as what browser. The code for that is insane in my opinion and I am trying to keep my html file for my homepage rather small. I had no problem importing this in DW with a transparent background (when I was using DW) but am using Komodo Edit as my HTML editor now as it didn't come with Production Premium that I just got.
    If you know the correct (newer) code, that would import an .swf with a transparency, that would be most be useful. If not I guess I'll just wait for someone to reply that does.
    I will try to extract the code from the CS4 HTML file and use that, but did already try it once and it didn't work. If all else fails, I'll just download a trial version of DW and/or Flash CS6 and see if I can figure out how I did it on a website I developed a couple years ago (that I lost the files from in a HD crash).

  • Need help with flashvars in cs5.5 html generated code

    how could use flashvars in cs5.5 html generated code, there are tutorial in net about flashvars but its all cs4 with javascript in it while cs5.5 html code doesn't have. here is the code for non-IE generated by cs5.5
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="sample.swf" width="800" height="800">
    <param name="movie" value="sample.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--<![endif]-->
    <a href="http://www.adobe.com/go/getflash">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
    </a>
    <!--[if !IE]>-->
    how can I put flashvars in html and as3?

    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="sample.swf" width="800" height="800">
    <param name="movie" value="sample.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <PARAM NAME=FlashVars VALUE="imageFilename=images%2Fimage1%2Ejpg">
    <param name="allowScriptAccess" value="sameDomain" />
    <!--<![endif]-->
    <a href="http://www.adobe.com/go/getflash">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.g if" alt="Get Adobe Flash player" />
    </a>
    <!--[if !IE]>-->
    and you can read via flash AS3:
    http://www.permadi.com/tutorial/flashVars/indexAs3.html

  • A question about measuring video consumption in flash

    Hi all, a problem puzzled with me, that is whether the measurement swf could capture netstream info from the playback swf in the html page not in the AS environment, such as:
    <script type="text/javascript">
                 var swfVersionStr = "11.2.0";
                 var params = {};
                 params.name = "BASE";
                 params.allowscriptaccess = "always";
                 var attributes = {};
                 attributes.id = "loadMonitor";
                 attributes.name = "loadMonitor";
                 swfobject.embedSWF(
                     "loadMonitor.swf", "flashMonitor",
                     "0%", "0%", swfVersionStr);
             </script>
             <div id="flashMonitor">if no Monitor display here</div>
             <script type="text/javascript">
                 // For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection.
                 var swfVersionStr = "11.2.0";
                 // To use express install, set to playerProductInstall.swf, otherwise the empty string.
                 var xiSwfUrlStr = "playerProductInstall.swf";
                 var flashvars = {};
                 var params = {};
                 params.name = "BASE";
                 params.quality = "high";
                 params.bgcolor = "#ffffff";
                 params.allowscriptaccess = "always";
                 params.allowfullscreen = "true";
                 var attributes = {};
                 attributes.id = "loadPlayer";
                 attributes.name = "loadPlayer";
                 attributes.align = "middle";
                 swfobject.embedSWF(
                     "loadPlayer.swf", "flashContent",
                     "100%", "100%",
                     swfVersionStr, xiSwfUrlStr,
                     flashvars, params, attributes);
                 // JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
                 swfobject.createCSS("#flashContent", "display:block;text-align:left;");
             </script>
    In the example, loadMonitor.swf executes measurement function, and loadPlayer.swf executes playback function. But I found measurement cannt capture any netstream info.
    The articlesaid they should belong to the same security context, but I cannt find more info about the description, could you help me? Thanks a lot.

    @flex2008,
    Its true as you said the type coercion exception occurs since you have not overridden the clone() method. But the thing here you should note is even though there is a type mismatch of the event type the property enteredText still exists on that event Object except the type of Event is normal flash Event.
    Hope you understood..Since the event you dispatched is infact a event with enteredText property...
    Just to let you know as you are giving a presentation on events. I would like you to highlight one point in your code...so that you can share..
    If in your dispatchedEventHandler() method if you dispatch the event with innerContainer instead of parentComp then your application will go into a Event dispatch recursion overflow error which means that your event gets dispatched and listened infinite times.
    private function dispatchedEventHandler(event:CustomEventNoCloning):void
                    innerContainer.dispatchEvent(event);
    Thanks,
    Bhasker

  • Unable to pass flashvars in application url in Flex 4.5.

    I am creating an application in which I have to pass variable in application URL like http://localhost/Test/test.html?name=testUser
    It works fine in flex 3.5 and can be read using Application.application.parameters['name']. But with flex 4.5 it is not detected unless declared in html wrapper.
    Problem is, since requirement changes dynamically so somehow its not possible to determine all parameters user want to use so can't be declared in html wrapper.
    Is there any work around for reading flashVars directly from application URL ? how about using browserManager's fragments for solving this problem??

    I am creating an application in which I have to pass variable in application URL like http://localhost/Test/test.html?name=testUser
    It works fine in flex 3.5 and can be read using Application.application.parameters['name']. But with flex 4.5 it is not detected unless declared in html wrapper.
    Problem is, since requirement changes dynamically so somehow its not possible to determine all parameters user want to use so can't be declared in html wrapper.
    Is there any work around for reading flashVars directly from application URL ? how about using browserManager's fragments for solving this problem??

  • Need SWF to accept FLV source at runtime from flashvar

    Hi I need to build an SWF with a FLVPlayback component that gets its
    FLV source from flashvars pased in at runtime via javascript.
    This  is the code I am using on the page:
                     <script type="text/javascript"  src="../../../js/swfobject2.js"></script>
                      <script type="text/javascript">
                              var flashvars = {};
                             flashvars.dSource =  "rtmp://www.xxxxx.com/live/xxxx"; 
                             var params = {};
                              params.scale = "noscale";
                             var attributes  = {};
                             swfobject.embedSWF("swfObj.swf",  "mediaspace", "550", "400", "9.0.0", false, flashvars, params,  attributes);
                     </script>
    Using  swfobject 2.2
    I need a full example of the Actionscript 3  part of this.
    I have only this in my Flash file
    if(root.loaderInfo.parameters["dSource"]  != null)
             mattVid.contentPath =  root.loaderInfo.parameters["dSource"]
    when I compile I get:
    1119: Access of possibly undefined property contentPath through a
    reference with static type fl.video:FLVPlayback.

    OK. I think you got it.
    I really wish I knew more about Flash.
    When I set it to MattVid.source, it still didn't work. However in the file that I *did* have working with a hard coded source, there was one additional line that I did not have in this file. On line 1 I added:
    MattVid.isLive=true;
    And it worked. Therefore it was a combination of two issues, I had set them both right before but not right at the same time in the same file. Once done, it appears to work fine. This is HUGE for us as we are doing dozens of streams a week and I would have to have hardcoded individual files each time. THANK YOU!

  • Multicast stops after about 2 minutes

    Hi,
    We are testing IP Multicast, with Flahs media player 4.0.
    We set up the encoder and generated the manifest file.
    Multicast start, but we see lot of bufferring and video running fast.
    After about 2 minutes, the encode stops publishing to the server.
    We are using digital rapids as the encoder.
    Any idea this might be causing ?

    A few things to try:
    1. If you're using the 'multicast' application that ships with FMS4, it logs state transitions and event info to the app log as the server-side multicast relay (a server-side NetConnection/NetGroup/NetStream) start up and redirect the ingest stream from FMLE into the Flash Group. I'd recommend reading through that and verifying that the server-side objects handling the relay into the Group are happy (i.e. not disconnecting or being closed down).
    2. The multicastplayer client SWF app has some flashvars defined in the HTML shim file that loads it. One of these is a debug flag. If you set that to true, you'll get some debug info surfaced up to your UI. This will include the various events the client is processing on its NetConnection/NetGroup/NetStream that's being used to play the multicast stream out of the target Flash Group. Feel free to post those details back to this thread.
    3. If you're doing IP multicast, that won't work over the public internet. In that case you'll want to be using P2P multicast.
    Best,
    Seth

  • Pass flashvars to an AIR app?

    I'm converting a Flex app to an AIR app.
    The current flex app uses the SWFObject inthe html template
    to pass in flashvars...
    var so = new SWFObject("myappp.swf", "myappp", "${width}",
    "${height}", "9.0.115");
    so.addVariable("XMLData",
    getXML(document.getElementById("MyXMLData")));
    so.write();
    ...where MyXmlData is defined in the html template as
    follows....
    <div style="display:none;" id="MyXMLData">
    <video>
    <clip url="rtmp://cpxxx.edgefcs.net/500k/myflv"
    hideSkin="false">
    </clip>
    </video>
    </div>
    In my ActionScript I get the flashvars as follows...
    if (!loaderInfo.parameters.hasOwnProperty("MyXMLData"))
    throw("Error: Missing XML Data");
    How would I do this with AIR? Is there a way to pass the XML
    to the loader when the AIR app is starting up? To put it another
    way... How would I pass flashvars to an AIR app?
    Thanks!
    Chris

    It depends on how your application is being launched. If it's
    being launched from a web page via the browser API, you can pass
    arguments to the launch call. That's not really appropriate for an
    entire XML file, but you could pass e.g. a URL to one.
    However, if your application is being launched directly by a
    user on the desktop, then there's no way to pass arguments to it.
    Stepping back a bit, it might be more useful to think about
    your use case and how to make it work, rather than focusing
    immediately on Flashvars, which is just a feature.
    Oliver Goldman | Adobe AIR Engineering

  • Flashvars in AS2

    So I am really not getting how to use flashvars at all. I
    know it must be really simple, but I am just not making the
    connection, so I would really appreciate anybody's help.
    This is the html for my flash movie:
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>cameras</title>
    <script language="javascript">AC_FL_RunContent =
    0;</script>
    <script src="AC_RunActiveContent.js"
    language="javascript"></script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="javascript">
    if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js.");
    } else {
    AC_FL_RunContent(
    'codebase', '
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
    'width', '800',
    'height', '100',
    'src', 'cameras',
    'quality', 'high',
    'pluginspage', '
    http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'window',
    'devicefont', 'false',
    'id', 'cameras',
    'bgcolor', '#ffffff',
    'name', 'cameras',
    'menu', 'true',
    'allowFullScreen', 'false',
    'allowScriptAccess','sameDomain',
    'movie', 'cameras',
    'salign', ''
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="800" height="100" id="cameras" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="cameras.swf" /><param
    name="quality" value="high" /><param name="bgcolor"
    value="#ffffff" /> <embed src="cameras.swf" quality="high"
    bgcolor="#ffffff" width="800" height="100" name="cameras"
    align="middle" allowScriptAccess="sameDomain"
    allowFullScreen="false" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    </noscript>
    </body>
    </html>
    Here are the variables I want to change:
    vau_nbslots = "Number of products in the banner"
    Then for each product, you will have (starting at index 0,
    and with 6 products in this case: 0 to 5):
    vau_tooltip_0 = "Description of the Product - will be shown
    when mouse over"
    vau_picture_0 = "http link to the image url"
    vau_overlay_0 = "http link to the overlay image url (like a
    Free Shipping ribbon for instance) - if empty show nothing"
    vau_clicklink_0 = "http link of the new page to open when the
    user clicks on the product"
    vau_tooltip_5 = "Description of the Product - will be shown
    when mouse over"
    vau_picture_5 = "http link to the image url"
    vau_overlay_5 = "http link to the overlay image url (like a
    Free Shipping ribbon for instance) - if empty show nothing"
    vau_clicklink_5 = "http link of the new page to open when the
    user clicks on the product"
    And here is the code (I think):
    for (slotIndex = 0; slotIndex <
    parseInt(this["vau_nbslots"]); slotIndex++)
    pictureUrl = this["vau_picture_" + slotIndex];
    tooltipText = this["vau_tooltip_" + slotIndex];
    overlayUrl = this["vau_overlay_" + slotIndex];
    clickLink = this["vau_clicklink_" + slotIndex];
    I suppose my real question is where all this goes and if I
    have it right?

    Redeclaring the click handler function in each loop through buttons is not necessary, you'd better do it like this, with click handler outside the loop:
    for (var i:Number=0; i<11; i++)
        menu_mc["button" +  i].addEventListener(MouseEvent.CLICK, clickHandler);
    And the second thing - click handler. For more flashvars (or if you don't know how many flashvars will be used) you can loop throug loaderInfo.parameters object with for-in loop. The problem here is that order in for-in loop is rather random ("not guaranteed" as they nicely call it :-) ), so it complicates assigning the urls to particular buttons. I would connect here name of a flashvar (this declared in HTML) with a button:
    function clickHandler(evt:MouseEvent):void
         for (var par:* in loaderInfo.parameters)
             if (evt.target.name == par) // checks if instance name of the clicked button is equal to the current flashvar, here par is NAME of the flashvar, NOT VALUE
                   var request:URLRequest = new URLRequest(loaderInfo.parameters[par]); // when the name of flashvar = name of button, the VALUE of this flashvar is retrieved in URLRequest constructor
                     navigateToURL(request,"_blank");

  • Adobe Bridge in Photoshop - How to install Bridge and camera raw? And what is it all about?

    Hi everyone! I am actually in love with this adobe photoshop. I used PSCS2 before, but later on upgraded to CS4. But I feel tired in upgrading to CS5.
    One time, I found a tutorial in youtube about camera raw, and would really want to use it. But I was wondering how to install the camera raw. I believe camera raw is a plugin? so I downloaded the plugin here, installed it in my PS. I downloaded a file Camera Raw.8bi and paste it on my C drive - C:\Program Files\Adobe\Photoshop CS4\Plug-ins\File Formats.
    I now am very confused, how will I open it? I do not have adobe bridge!  After I installed the camera raw, I opened my PS. I clicked the file>then browse in bridge. I had an error, it's "error 2 photoshop11 undefined". Which is what I thought, I might have done something wrong with installing it.
    My question is, do you still need adobe bridge installed in order to use camera raw?
    If yes, how does it work? How am I suppose to open camera raw?
    If no, how am I going to open camera raw without bridge?
    And also, where will I download adobe bridge? I cannot find one here for CS4, only adobe bridge for CS5. I am wondering, is it okay to install adobe bridge CS5 and use it with my PS CS4?
    I badly need help!

    WebDAV (Web-based Distributed Authoring and Versioning) is a set of extensions to HTTP/1.1.
    The main difference from FTP as far as I can see is that it allows you to edit documents on a remote web server.
    WebDAV was used by the Apple server - MobileMe but is not generally supported by hosting services.
    Using WebDAV you can mount a directory locally. This was how iDisk worked on your Mac and you could drag files onto it to upload them to the remote directory.
    With WebDAV, a number of users can share a directory which is why its used in local networks but presents security problems when using a remote server.
    If you are into file sharing rather than publishing, Dropbox or its new rival SugarSync are more appropriate.

  • A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my
    laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    You need to talk with the tax authorities in the countries to which you traveled and that of your home country. We are all end-users liek you and not Apple agents.

  • I am trying to use itunes, it will not open at all, have uninstalled and downloaded new software and 64bit for windows. i have an old ipod nano from about 5 years ago. anything i can do, even to view my purchases and watch/listen to music etc?

    ok i have a advent roma laptop with window 7. my itunes used to work fine, completely. every time i plugged in my ipod it was ok. recently my ipod was not working so i never bothered with itunes, however i have movies/tv prog that i purchased and would like to view them. i have an ipod nano from about 5 years ago, the problem with thet is, it switches on, but the circular control panel does nothing, all you can do is lock and unlock it - nothing else.
    i tried to download new version of itunes, then uninstalled my origonal version, incase it was corrupted etc, i then again tried to down load new version and also version that is windows 64bit. still when i select the downlaod to open as son as it is finnished nothing happens. and now my desktop shortcut has dissapeared. before when it was there, id double click it, nothing, right click to open it, nothing.
    im not the best technically minded but i just dont see what im doing wrong here, please help

    Perhaps it would be helpful for you to view the page source code of this page
    http://www.alanwork.com/
    As you can see, the submenu code links are immediately below the top level code, and are
    wrapped in their own  <UL> </UL> tag pairs.
    Hope that helps

  • Vendor payments and debts about an asset

    Dear sap colleages
    I need to know these information about an ASSET:
    Purchased orders,
    Items from purchase orders,
    which of these items i've received, i've paid (also date), i've not paid ( amount of debt related to asset)
    payments in advanced (date),
    wich of these payments have been cleared (clearing date) and wich not,
    who is the vendor,
    other expenses (such as delivery)
    the amount of taxes,
    invoices related and NOT RELATED TO purchase order
    payments without invoice
    Which transactions do i need to follow?
    or
    Which document flow?
    or
    Which tables? Wich keys?
    or
    Is there a standard report that can give me such information?
    Any documentation and/or code will be appreciated.
    I need to program a report to integrate all these information.
    Thanks and Kind Regards

    Hi,
    Refer to T.code AW01N - Asset Explorer .
    Additionally you cna also refer to SAP Standard reports in Asset Accounting
    Accounting - Financial Accounting - Fixed Assets - Information System - Reports on Asset Accounting
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • I cannot receive email properly now. When I open mail, it says that is downloading about 1,700 emails. At the very end, it gives me my newest ones. But this takes a long time. I've contacted the Internet service provider and verified all the right setting

    I cannot receive email properly on either my IPad or my IPhone. I have had them for over a year and they have always worked fine. Until three days ago, when they both started acting up. On the IPad, when I open mail, it says it is downloading about 1,700 emails. At the very end, which takes quite a while to get to, I finally get the most recent ones. The IPad is sending emails just fine.
    On my IPhone, when I open mail, it says it is downloading 100 emails, but it doesn't do that. And it gives me no new emails at all. The IPhone is sending email just fine.
    I have already deleted the email accounts on both devices and reinstalled them. I've contacted the Internet service provider and verified all the right settings. The Outlook email on my desktop is working perfectly.

    WMV is a heavily-compressed format/CODEC, and the processing time will depend on several factors:
    Your CPU, which is not that powerful in your case
    Your I/O sub-system, which is likely a single HDD on your laptop
    The source footage. What is your source footage?
    Any Effects added to that footage. Do you have any Effects?
    Each of those will have an impact on the time required.
    The trial has only one main limitation - the watermark. Now, there are some components, that have to be activated, but are not with the trial, but they would be evident with Import of your source footage, if it's an issue.
    Good luck,
    Hunt

  • I have had my IPAD2 for quite a while but haven't activated my cellular data for about a year.  I am now trying to activate and when I go to cellular data, turn it on and try to tap view account i just get a message that says "connection to server lost".

    I have had my IPAD2 for quite a while but haven't activated my cellular data for about a year.  I am now trying to activate and when I go to cellular data, turn it on and try to tap view account i just get a message that says "connection to server lost".  I could swear the last time I used cellular data you would see the signal in the upper left corner and I only see "no service" there, I am in a location where I know I should have service.  Is there something I should do to my IPAD?  I tried resetting, I tried clearing cookies and history in Safari (after reading a post n these discussions).  I don't know what to do next. My IOS version is 6.1.3.  I did go into Network from the general tab and I see it says "SIM not provisioned".    HELP and Thank you in advance.

    Hello Theresa818,
    Thank you for using Apple Support Communities!
    It sounds like the cellular data will not activate for some reason on the iPad.
    I found this article that will help you resolve this issue here, named iPad (Wi-Fi + Cellular Models): Troubleshooting a cellular data connection, found here http://support.apple.com/kb/TS4249
    Check for a carrier settings update.
    Update your iPad.
    Toggle the Cellular Data setting off and on under Settings > Cellular Data.
    Restart your iPad.
    Tap Settings > General > About. Locate the Carrier entry and make sure that your carrier is correct.
    If your SIM card has SIM PIN enabled, try turning it off: Tap Settings > Cellular Data > SIM PIN.
    Make sure you're in an area of good coverage. If the cellular data connection works in another area, contact your carrier to report the original affected area.
    Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    Restore the iPad as new.
    If none of the above steps resolves the issue, make an appointment at an Apple Retail Store, contact your carrier, or contact AppleCare to troubleshoot further.
    I know you may have done one or two of the steps here, so you can skip those.
    Take care,
    Sterling

Maybe you are looking for

  • Why can't I open an InDesign file on a computer that only has Creative Suite (no cloud)?

    I have one computer with the cloud. One computer with the whole suite. When I try to open a document on my computer with the suite that I had previously saved from my computer with the cloud - I receive an error message. Why is this happening and how

  • IBook won't boot in Mac OS X Panther CD

    Tryin to update an old iBook (500Mhz G3) to a boxed copy of Panther that I bought 2nd hand. The problem is, i can't boot into the cd. The iBook has nothing on the hard disk, and when i try and start up from the cd by holding down the C button, it sti

  • Refurbished Mac Pro and Intel Core Dual??

    Quick question... I got a refurbished MBP G4... can I upgrade to the Intel Core Dual? How would I do that and would it be spendy? I really want it!

  • Cast Exception

    I'm getting this error and I don't understand why, please help.      Door door;      Window window;      int index = 0;      Object element;      element = this.aVector.get(index); for(index=0;index<this.aVector.size();index++){      if (element inst

  • Fill combobox from information from other combobox's

    I have been working on this for awhile and had a system, but now I get a code to large error, the I have more data to put into the program, so I will show you my first code, and the other code I am trying to adapt. unless you can show me a different