Download web site application

Hey all, I finished my application and I need to upload it to a web site that allow the user to download and install it on the device, how do I do that in details please, thnx in advance

What is a better link?

http://supportforums.BlackBerry.com/T5/testing-and-deployment/how-to-deploy-and-distribute-Applicati...

Tags: BlackBerry Developers

Similar Questions

  • Cannot download Web site at businesscatalyst host of muse, it shows the connection timeout.

    Cannot download Web site at businesscatalyst host of muse, it shows the connection timeout.

    Hello

    Please see the link below that has the same discussion.

    https://forums.Adobe.com/thread/1934384

    Kind regards

    Vivek

  • Display downloaded Web site problem

    I'm relatively new to creating websites in general, but nevertheless I am always creating a new site in flash for a restaurant.

    After you download a template and make any necessary changes, I have publish it in a HTML of Adobe Flash CS4 file and go forward from Dreamweaver CS4 to make other changes.

    Happy with my changes, I proceed to upload it to a field.

    The problem is that when displayed in any browser, the locations of the elements of the Web site are not the right places or are totally invisible.

    From now on, I have not a clue as to what is the problem.

    The website can be found here: www.kizpanasian.com

    Here are some pictures of what the site should look like. You can see what it currently appears as the link I provided.

    Should-Menu.png

    Should-Contact.png

    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=big5" />
    <title>Mikado Ryotei</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
    {
     var version;
     var axo;
     var e;
     // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
     try {
      // version will be set for 7.X or greater players
      axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
      version = axo.GetVariable("$version");
     } catch (e) {
     }
     if (!version)
     {
      try {
       // version will be set for 6.X players only
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
       
       // installed player is some revision of 6.0
       // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
       // so we have to be careful. 
       
       // default to the first public version
       version = "WIN 6,0,21,0";
       // throws if AllowScripAccess does not exist (introduced in 6.0r47)  
       axo.AllowScriptAccess = "always";
       // safe to call for 6.0r47 or greater
       version = axo.GetVariable("$version");
      } catch (e) {
      }
     }
     if (!version)
     {
      try {
       // version will be set for 4.X or 5.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
       version = axo.GetVariable("$version");
      } catch (e) {
      }
     }
     if (!version)
     {
      try {
       // version will be set for 3.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
       version = "WIN 3,0,18,0";
      } catch (e) {
      }
     }
     if (!version)
     {
      try {
       // version will be set for 2.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
       version = "WIN 2,0,0,11";
      } catch (e) {
       version = -1;
      }
     }
     
     return version;
    }
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
     // NS/Opera version >= 3 check for Flash plugin in plugin array
     var flashVer = -1;
     
     if (navigator.plugins != null && navigator.plugins.length > 0) {
      if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
       var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
       var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
       var descArray = flashDescription.split(" ");
       var tempArrayMajor = descArray[2].split(".");   
       var versionMajor = tempArrayMajor[0];
       var versionMinor = tempArrayMajor[1];
       var versionRevision = descArray[3];
       if (versionRevision == "") {
        versionRevision = descArray[4];
       }
       if (versionRevision[0] == "d") {
        versionRevision = versionRevision.substring(1);
       } else if (versionRevision[0] == "r") {
        versionRevision = versionRevision.substring(1);
        if (versionRevision.indexOf("d") > 0) {
         versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
        }
       }
       var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
      }
     }
     // MSN/WebTV 2.6 supports Flash 4
     else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
     // WebTV 2.5 supports Flash 3
     else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
     // older WebTV supports Flash 2
     else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
     else if ( isIE && isWin && !isOpera ) {
      flashVer = ControlVersion();
     } 
     return flashVer;
    }
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    {
     versionStr = GetSwfVer();
     if (versionStr == -1 ) {
      return false;
     } else if (versionStr != 0) {
      if(isIE && isWin && !isOpera) {
       // Given "WIN 2,0,0,11"
       tempArray         = versionStr.split(" ");  // ["WIN", "2,0,0,11"]
       tempString        = tempArray[1];   // "2,0,0,11"
       versionArray      = tempString.split(","); // ['2', '0', '0', '11']
      } else {
       versionArray      = versionStr.split(".");
      }
      var versionMajor      = versionArray[0];
      var versionMinor      = versionArray[1];
      var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor version >= requested minor
      if (versionMajor > parseFloat(reqMajorVer)) {
       return true;
      } else if (versionMajor == parseFloat(reqMajorVer)) {
       if (versionMinor > parseFloat(reqMinorVer))
        return true;
       else if (versionMinor == parseFloat(reqMinorVer)) {
        if (versionRevision >= parseFloat(reqRevision))
         return true;
       }
      }
      return false;
     }
    }
    function AC_AddExtension(src, ext)
    {
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?'); 
      else
        return src + ext;
    }
    function AC_Generateobj(objAttrs, params, embedAttrs) 
    { 
      var str = '';
      if (isIE && isWin && !isOpera)
      {
        str += '<object ';
        for (var i in objAttrs)
        {
          str += i + '="' + objAttrs[i] + '" ';
        }
        str += '>';
        for (var i in params)
        {
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        }
        str += '</object>';
      }
      else
      {
        str += '<embed ';
        for (var i in embedAttrs)
        {
          str += i + '="' + embedAttrs[i] + '" ';
        }
        str += '> </embed>';
      }
      document.write(str);
    }
    function AC_FL_RunContent(){
      var ret = 
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
        );
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    }
    function AC_SW_RunContent(){
      var ret = 
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
        );
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    }
    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[i].toLowerCase();    
        switch (currArg){ 
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = 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":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace": 
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
        }
      }
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    }
    // -->
    </script>
    </head>
    <body bgcolor="#000000">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
     AC_FL_RunContent(
      'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
      'width', '979',
      'height', '750',
      'src', 'main',
      'quality', 'high',
      'pluginspage', 'http://www.adobe.com/go/getflashplayer',
      'align', 'middle',
      'play', 'true',
      'loop', 'true',
      'scale', 'showall',
      'wmode', 'window',
      'devicefont', 'false',
      'id', 'main',
      'bgcolor', '#000000',
      'name', 'main',
      'menu', 'true',
      'allowFullScreen', 'false',
      'allowScriptAccess','sameDomain',
      'movie', 'main',
      '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=8,0,0,0" width="979" height="750" id="main" align="middle">
     <param name="allowScriptAccess" value="sameDomain" />
     <param name="allowFullScreen" value="false" />
     <param name="movie" value="main.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /> <embed src="main.swf" quality="high" bgcolor="#000000" width="979" height="750" name="main" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
     </object>
    </noscript>
    </body>
    </html>
    


    Thanks for the help.

    Hey, it's something wrong with this site!
    Try to reinstall!
  • I have a simple question which I'm sure someone will be able to respond easily - I have windows xp, I've added nothing to my machine, but it does not now download updates - when I try to go on the microsoft download Web site - I can't. Help, please.

    I don't know how long this has happened, I get the shield down, but my downloads are not downloaded.

    I know that I probably won't get a response to my three questions, but I want to post a separate thank you.  It's really great that you use your knowledge to help people like me who just bumble along...  Thanks again.

    Now I have 3 questions that are not questions of direct update but I have the feeling that you can help.

    I now have service pack 3

    1. is windows better than Kerio firewall
    2. I said do not install IE8 - what you think
    3. should I perform MAM and Onecare safety scanner regularly.

    I thank in advance.

    J

    You're too kind, Joan. And, you're welcome mowst. Let's start from the beginning.
    Does firewall Kerio and AVG protect your system ?
    Go by the log MBAM, the answer is No .
    Windows native firewall is a sufficient protection when a system is on a network where the router contains a hardware firewall . A router that has a hardware firewall is not so expensive and well worth the investment.
    You can use a wired router, as opposed to a router costs a little more, if necessary.

    Now, as for the antivirus, I'm not a big fan of the AVG used by the user to type.
    I would recommend that the user typical home use AntiVir or Avast on moy. Like AVG, both are free for home use.
    For paid AVs, I would recommend NOD32 or FPROT .
    Microsoft Security Essentials, which is also free, we hope to be a solid AV, but I can not recommend at this stage.

    Installation of critical security updates, it is a needs . It seems that some malware has been able to infect the system due to the absence of the same installation. Specifically this one:

    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet004\Services\Tcpip\Parameters\Interfaces\ {f5eb5c1a-9817-46c9-b36a-6a6a007a8621} \NameServer (Trojan.DNSChanger )-> Data: 85.255.115.110,85.255.112.175-> quarantined and deleted successfully.

    Indicate if another update problem occurs that you wait not long to take care of it. Installation of critical security updates prevent many infections.

    I think that IE8 is the best browser that MS has ever released. If you choose to install it, strongly suggests you download the standalone installation package manually and Save it. Close all open programs and browsers.
    Temporarily disable the antivirus installed by following the steps in clean boot, and then install it.
    Make sure that you reboot twice when it installs.  You should receive at least a prompt to reboot, but do another after recommend an anyway.

    Now, back to the question 3. Strongly suggest you boot the system in Safe Mode and do a full scan of the system, just to be sure that MBAM has detected and deleted all the malware. Make sure you update MBAM before each scan .
    You can do it in normal mode Windows or Safe Mode with setting in network, but not in Safe Mode as long as the system is not connected to the internet in Mode without failure.
    It will take time for the full analysis to run, but it was worth. There may still be present hidden malware.
    And Yes, do at least an fortnight analysis with MBAM is well worth.
    In fact, you should consider buying the paid version, as the protection in real time, unlike the free version, and it will not come into conflict with the installed AV.
    Did a scan monthly with the OneCare safety scanner is also a smart thing to do.

    BUT , if it were a client system, I no longer trust him to bank services online or any other financial transaction.
    The system may have wrong headed by the DNSChanger trojan to web sites that were not what they seem.
    As well as information from financial transactions, passwords that you use, and no personal information stored on the system were also sent to the malicious web servers.
    To strongly suggest that you change every password you use just to be on the safe side.
    If you need or want to do transactions from this new system so the only way that you can trust , it is to format the hard drive and reinstall XP. Now that Service Pack 3 is installed and If you have the XP installation CD, you can do what is called a slipstream SP3 with the installation CD. In this way when format you and reinstall XP, it will be the SP3 and you'll save time by not having do not install several security updates.
    It's really not hard to do. Here's a good tutorial with graphics that explains it all:
    XP CD slipstreamed Windows using SP3

    And, finally, any AV or security program protects a system when the user installs the questionable software .
    Be very careful of free software, stolen software, cracked, key generators and other programs.
    Always investigate any software that seems too good to be true. As in real life, something that seems too good to be true probably is . Discover the software using Google or Bing to see what others have to say and to report on this issue.

    Be careful and safe surfing, Joan.

    MowGreen MVP Data Center Management - update of safety Consumer Services

  • The database file Thumbs.db is necessary for the Web site application

    I work with a folder of images created in "My pictures", I copied the image folder in my site folder and inserted images on pages using Kompozer html.  I download using Filezilla.  When I open the folder, an icon of Thumbs appears at the end of the list of image files and is usually quite large [350, 000 bytes =].  It does not appear when I opened the folder on my computer, only Filezilla.  It is a necessary instrument for my images display correctly on my site?  I'm "challenged by electronic means" so that any help would be appreciated by mos.

    Thank you

    Kristi

    Thumbs.DB is a hidden file in Windows with thumbnail views of image files in a folder.  Probably, it is not necessary on your web site.  Try to set up the site without him.  You can always download Thumbs.db on the site if needed. Boulder computer Maven
    Most Microsoft Valuable Professional

  • Download Web site to host FTP - folder on the server?

    I am trying to download my Web site on the FTP host.

    FTP server, username and password (to connect to the FTP server) seem to be good.

    The question appears to the next step (Upload to FTP host): URL of the Site and folder on the server

    The first error I get is "file X does not appear to point to site X."

    When I say "Fix", it highlights the URL of the Site in red.

    When I say 'Ignore' seems to download something, but the site still does not work.

    What should I exactly put to "folder on the server?

    I expect the upload to be much easier than this.

    I watched several videos on this and none address this problem.

    The problem with Muse or my domain/server?

    Need help ASAP please - this site is going live today!

    Thank you

    Hello Kathrin,

    It is well known that in all these cases you describe I'm not a friend of a detailed diagnosis. In order to be independent in all these things is one of the reasons why I prefer an external FTP program. The difficulties with which we must fight encourage me in this opinion, especially because we are always looking for experts, we charge a 'jack of all trades '.

    To manage multiple Web sites or download my files, and sometimes for the reverse, for a necessary download from my server or use a "sync a whole site", I use FileZilla. It just seems easy for me to keep track of all transactions accurately and generate or easily reflect the desired tree structure.

    First and foremost, FileZilla has a function (translation of my German FileZilla), called 'compare the list of files. Here it is possible to use the time of size or change file as a criterion. There is also the possibility of 'hide identical files', while only those files that you want to redact remain visible.

    And even if it means that you need to install a new program, I am convinced that there is an advantage. Here is the link to get it and where you can read information on how it works:

    http://FileZilla-project.org/ and http://wiki.filezilla-project.org/Tutorial#Using_the_site_manager

    Mac: Mac OS X (use: the additional download options)

    http://FileZilla-project.org/download.php

    Of course, you must also all data to MIME issues and access to reach your server, please contact your web hosting provider.

    In my filezilla, must be used as the server name, the name that you get from your provider (see screeshot)

    Sorry, but I had to remove the real names of the 'server' and 'Benutzer '.

    Hans-Günter

    P. S.

    Since I use two screens, it has become even more comfortable.

  • Firefox downloads Web site, but not properly

    It downloads the page but the page window is too small, so you can't interact with it.

    Reset the page zoom on pages that cause problems: view > Zoom > reset (Ctrl + 0 (zero); Cmd + 0 on Mac)

    See the font size and zoom - increase the size of web pages and the font size and zoom - increase the size of web pages and http://kb.mozillazine.org/Zoom_text_of_web_pages

  • my gift of graphics svg, t looks like when I download Web site

    I create a logo, an extension .svg for web in illustrator and add to project muse, when I saw in the browser looks very good and works, but load on the web (hosting... etc.), open my site logo and svg doesn't appear, only a rectangle with error, anyone know why happens?, thank all.

    Hi Joaquin,.

    Please refer to: How can I get my SVG is displayed in the browser? With the help of Adobe Muse.

    Kind regards

    Akshay

  • &amp; quot; find a location nearest you &amp; quot; Web site application

    I would like to integrate an application to 'find a location near you' on my site. What product could it be providing the tools that I need to develop such an application? I understand, there is a need of hand coding as well.

    Yes that would be perfect! Thank you. My email is: haft [at] canchair.com

  • Problem with the download Web site

    I'm having a problem when I publish my site Builder at host gator.  The following errors are happening, and I don't know if these are problems of vista or not

    l\Temp\WER70C1.tmp.version.txt
    \Temp\WERC789.tmp.AppCompat.txt
    l\Temp\WERC7F7.tmp.mdmp
    Thanks advance!

    Cat hubrich,
    You will need to check with the Support of Ewisoft with this question.  Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • (Redirected) download web site in the folder files

    I've just updated to a Dell inspiron 17R labtop that I work from home and need to download files in folders I have Setup on my desktop.  It does give me a 'SAVE AS' option

    As you have a laptop, better make this laptop in the computer Forum post here:

    http://en.community.Dell.com/support-forums/laptop/default.aspx

    Bev.

  • Web site application launcher

    How can I delente unwanted site in my screen that I've been added? Palm Inc. remember the icon of installation of waste?

    Press and hold down the orange key and then press the icon of the Launcher. You will be prompted with two choices, click on delete.

  • How to download Web site on the server using adobe dreamviewer...

    I tried several times, but I couldn't. Can someone help me...

    This is my blog http://lecturenotesfree.blogspot.com/

    You will need to consult your host about FTP settings to upload files to your server.

  • I can not install applications on Web sites

    I downloaded applications on a Web site and when the download is complete, he says "cannot download the application cannot be installed at this time." I can download apps on the app store very well, but I can't get on Web sites.

    You should do all your downloads on the App Store only. It is the only way.

  • to convert applications PC Web site power on mac os.10.7

    to convert documents from PC Web site power on mac os.10.7. I often need to download my site of University conferences. I had no problem to do so on mac os 10.4.11 power pc applications.now with my new computer, I often struggle to do?

    What kind of documents are who?

    Do you mean presentations PowerPoint (PPS) files?

Maybe you are looking for