Warning: Constant ABSPATH already defined in /home/raypasto/www/www/wordpress/wp-config.php on line 26

Warning: Cannot modify header information - headers already sent by (output started at /home/raypasto/www/www/wordpress/wp-config.php:26) in /home/raypasto/www/www/wordpress/wp-includes/feed-rss2.php on line 8
HTML – Dr. Ray Pastore's Instructional Technology Blog https://raypastore.com/wordpress Thu, 25 Apr 2013 12:14:51 +0000 en-US hourly 1 https://wordpress.org/?v=5.7.17 166124113 Firefox Mobile OS https://raypastore.com/wordpress/2013/04/firefox-mobile-os/ https://raypastore.com/wordpress/2013/04/firefox-mobile-os/#respond Thu, 25 Apr 2013 12:14:01 +0000 https://raypastore.com/wordpress/?p=2196 This is something I am quite excited for as its made using HTML5. Firefox OS has an opportunity to really show how awesome FF is. Now, what I would really like to see is firefox to make a PC OS. From Mozilla “Firefox OS is an open source mobile operating system which uses Linux and Mozilla’s Gecko engine to run a user interface and set of applications written entirely in HTML, CSS and JavaScript.” What does this mean? You will be able to build Apps for firefox using HTML5, no more Xcode or Eclipse. Now sure you can build HTML5 apps for apple and google by exporting them via phonegap to xcode/eclipse however this OS is designed for HTML5. Very exciting.

Link to firefox os

Information for developers

Simulator where you can build and test your apps for firefox OS

An article discussing some of the advantages and disadvantages of firefox mobile (although more towards the negative side)

First firefox phones sell out

]]>
https://raypastore.com/wordpress/2013/04/firefox-mobile-os/feed/ 0 2196
My latest website – Carefree Organics 100% Organic Skin Care https://raypastore.com/wordpress/2013/03/my-latest-website-carefree-organics-100-organic-skin-care/ https://raypastore.com/wordpress/2013/03/my-latest-website-carefree-organics-100-organic-skin-care/#respond Tue, 05 Mar 2013 13:07:15 +0000 https://raypastore.com/wordpress/?p=2150 My latest website is a site that I created for my wife’s new organic skin care business. I used a lot of CSS3 as well as some javascript to create the site. I created the graphics in photoshop except for the logo which I created using illustrator.

One of the cool things about this site was that it was the first time I set up an ecommerce business so that people could ‘add to cart’ and pay right on the site. It was fun to figure out and I will be discussing ecommerce on this blog to describe my experiences. Anyway, check out the site: http://carefreeorganics.com

]]>
https://raypastore.com/wordpress/2013/03/my-latest-website-carefree-organics-100-organic-skin-care/feed/ 0 2150
CSS3 Generators https://raypastore.com/wordpress/2013/02/css3-generators/ https://raypastore.com/wordpress/2013/02/css3-generators/#respond Sun, 17 Feb 2013 14:56:40 +0000 https://raypastore.com/wordpress/?p=2114 I recently posted about a CSS3 button generator. Well here are a few others that are very cool:

Gradients: http://www.colorzilla.com/gradient-editor/

Many features (this one seems to do it all): http://css3generator.com/

]]>
https://raypastore.com/wordpress/2013/02/css3-generators/feed/ 0 2114
Javascript slideshow tutorial https://raypastore.com/wordpress/2013/02/javascript-slideshow-tutorial/ https://raypastore.com/wordpress/2013/02/javascript-slideshow-tutorial/#respond Tue, 12 Feb 2013 12:28:13 +0000 https://raypastore.com/wordpress/?p=2106 Here is a great tutorial on a simple scrolling slideshow. You can define the time and its very easy to implement. Here is the code from the article:

Javascript:

<SCRIPT LANGUAGE="JavaScript">
<!--
var dimages=new Array();
var numImages=2;
for (i=0; i<numImages; i++)
{
  dimages[i]=new Image();
  dimages[i].src="images/image"+(i+1)+".jpg";
}
var curImage=-1;
function swapPicture()
{
  if (document.images)
  {
    var nextImage=curImage+1;
    if (nextImage>=numImages)
      nextImage=0;
    if (dimages[nextImage] && dimages[nextImage].complete)
    {
      var target=0;
      if (document.images.myImage)
        target=document.images.myImage;
      if (document.all && document.getElementById("myImage"))
        target=document.getElementById("myImage");

      // make sure target is valid.  It might not be valid
      //   if the page has not finished loading
      if (target)
      {
        target.src=dimages[nextImage].src;
        curImage=nextImage;
      }
      setTimeout("swapPicture()", 5000);
    }
    else
    {
      setTimeout("swapPicture()", 500);
    }
  }
}
setTimeout("swapPicture()", 5000);
//-->
</SCRIPT>

Then here is the code to place it:

<IMG WIDTH=250 HEIGHT=250 ID="myImage" NAME="myImage"
  SRC="images/image0.gif"></IMG>
]]>
https://raypastore.com/wordpress/2013/02/javascript-slideshow-tutorial/feed/ 0 2106
Make buttons with CSS3 https://raypastore.com/wordpress/2013/02/make-buttons-with-css3/ https://raypastore.com/wordpress/2013/02/make-buttons-with-css3/#respond Sat, 09 Feb 2013 15:07:57 +0000 https://raypastore.com/wordpress/?p=2104 This is a very cool site that allows you to visually make a button with CSS3. Its very easy and free! Check it out here

]]>
https://raypastore.com/wordpress/2013/02/make-buttons-with-css3/feed/ 0 2104
mailto: html code on a mobile device is actually a good thing https://raypastore.com/wordpress/2012/11/mailto-html-code-on-a-mobile-device-is-actually-a-good-thing/ https://raypastore.com/wordpress/2012/11/mailto-html-code-on-a-mobile-device-is-actually-a-good-thing/#comments Fri, 30 Nov 2012 13:55:05 +0000 https://raypastore.com/wordpress/?p=2028 Many times when accessing a website we click on the contact link and it opens up outlook or another email program that we do not use. This is annoying and I cannot stand it. I tell all of my students never to use this code. However one thing one of my students recently pointed out to me is that when viewed on a mobile device, this actually takes you to your default phone email, which is actually a good thing on the mobile device as you are almost forced by google or apple to have a default email. Thus while I hate this on the computer, I love it on the phone. I just thought it was a pretty cool difference and thought I would share.

The code to create this type of link is: <a href=”mailto:someone@example.com”>

]]>
https://raypastore.com/wordpress/2012/11/mailto-html-code-on-a-mobile-device-is-actually-a-good-thing/feed/ 2 2028
How to make an HTML webpage the correct size on a mobile device https://raypastore.com/wordpress/2012/11/how-to-make-an-html-webpage-the-correct-size-on-a-mobile-device/ https://raypastore.com/wordpress/2012/11/how-to-make-an-html-webpage-the-correct-size-on-a-mobile-device/#respond Wed, 07 Nov 2012 12:30:32 +0000 https://raypastore.com/wordpress/?p=1949 I have written about this a few times (just last week) and I wanted to add some details to the discussion. Basically when designing a webpage for the mobile device you want your page to show up as the correct size on the device so the user does not need to zoom. To do it you would use the viewport code. Today I am adding some more details to that:

General width. Keep in mind the ‘780’ changes depending on the size of your actual page:

<meta name="viewport" content="width=780">

This code just matches their device regardless of what you set:

<meta name="viewport" content="width=device-width">

The following disables zooming altogether:

<meta name="viewport" content="width=device-width, user-scalable=no" /> 

This sets the zoom level when the page is first opened:

<meta name="viewport" content="initial-scale=1">

This creates no zooming and the user has to move the screen around:

<meta name="viewport" content="maximum-scale=1">

I encourage you to try them all out to see what works for your site and so that you get a better idea of what they all look like.

]]>
https://raypastore.com/wordpress/2012/11/how-to-make-an-html-webpage-the-correct-size-on-a-mobile-device/feed/ 0 1949
How well does HTML5 run on your browser? https://raypastore.com/wordpress/2012/11/how-well-does-html5-run-on-your-browser/ https://raypastore.com/wordpress/2012/11/how-well-does-html5-run-on-your-browser/#respond Tue, 06 Nov 2012 13:52:41 +0000 https://raypastore.com/wordpress/?p=1947 I did this test a year ago so its time for another shot. I have put together a page that you can test on your browser to see how well HTML5 is running on it:

http://raypastore.com/html5/html5.html

Also, check out this site which goes into specifics about how well your browser in handling HTML5 code: http://html5test.com/

 

]]>
https://raypastore.com/wordpress/2012/11/how-well-does-html5-run-on-your-browser/feed/ 0 1947
HTML5 Security and Vulnerability Issues https://raypastore.com/wordpress/2012/09/html5-security-and-vulnerability-issues/ https://raypastore.com/wordpress/2012/09/html5-security-and-vulnerability-issues/#respond Mon, 24 Sep 2012 12:24:31 +0000 https://raypastore.com/wordpress/?p=1816 While these are fairly obvious they are something that users pushing HTML5 should be aware of. The first is vulnerability. What does this mean?

All of your code is essentially open source. While thats great for me, its not great for businesses and really anyone who is trying to make money off of their software. There are some ways around it but keep in mind that both HTML5 and Javascript are open source. Here is a good article that goes into it:

HTML5 – Not Designed for Business Applications

The next issue is security. Apparently the standards have not really been developed with security in mind as it will really be up the developers, users, and browsers. So there are going to be some issues when this is used more often…and of course this is the case with any new technology. Here is an article that goes into the topic:

Old hacking tricks work too easily in attacks on HTML5, security expert says

]]>
https://raypastore.com/wordpress/2012/09/html5-security-and-vulnerability-issues/feed/ 0 1816
Flash is dead: Why this rumor makes sense for (some) instructional designers and why it’s not true https://raypastore.com/wordpress/2012/08/flash-is-dead-why-this-rumor-makes-sense-for-instructional-designers-and-why-its-not-true/ https://raypastore.com/wordpress/2012/08/flash-is-dead-why-this-rumor-makes-sense-for-instructional-designers-and-why-its-not-true/#comments Thu, 23 Aug 2012 13:00:18 +0000 https://raypastore.com/wordpress/?p=1665 I keep seeing forum posts like this in LinkIn and I have really been thinking a lot about it. Why have I been thinking a lot about it? Well because Flash is a very powerful software and there is currently nothing that matches its power. So how is Flash dead if there is not replacement for it? Then it all clicked and here are my thoughts….

1. HTML5 Rumors. HTML5 has been touted as a potential replacement to Flash. It does have some of the same capabilities. The issue is that HTML5 is really geared towards simple animations and interactions, not powerful animations that Flash is designed for. Thus HTML5 cannot replace Flash at this point. Will it ever? Quite possibly it will (I personally think it will be HTML6 that does it) but at this point you really need to know both Flash and Javascript so that you can offer multiple solutions to clients. I personally would not develop a game in HTML5 unless it was very simple because it just doesnt have the power to create something more in-depth.

2. Flash player is dying. Yes that is true in the mobile platform, but not the desktop/laptop. However, Adobe has instead focused on Adobe Air for the mobile platform and stopped focusing on flash player. What is Adobe Air: It allows you to publish Apps for iPhone, iPad, and Android. This leads to point 3.

3. Flash doesnt work on Apple iPad or iPhone. Well that is not true. It doesnt work in their browsers but it works very well on the devices. If you look at both Apple and Android, they are pushing apps, not the browers (at least that is what they want developers to focus on so that they can control (or make money off of) their stores). So Adobe is pushing Flash to mobile apps not the browsers (and they didnt have much of a choice as apple would not allow flash player on its browser). To publish a Flash app to iPhone or iPad, you simply click the publish button in Flash to publish as an app. And yes, there are tons of apps (some in the top 50 games) that are purely Flash based and you probably never knew. So yes, Flash does work very well on iPhone and iPad.

4. Instructional designers are not programmers. Our field is not computer science and I do not expect an ISDer to be able to program. Flash requires a lot of programming so most instructional designers cannot use it beyond basic tweens and maybe some simple interactions. As a result, they have turned to other software, such as Articulate, Lectora, PPT, Captivate, etc. that are very easy to use. That way the instructional designer can now also develop training without the need for a programmer and tout themselves as a one stop shop. The problem is that this software is not always the solution. It is simple software and produces simple training. What do I mean by simple training? I just mean training with some animation, limited interaction, and is perfect for flashcard type training (that can includes stories, cases, simple games etc.). I am not saying its bad, this simple software can create great training, just that its not a be-all end-all for training. It is not a total solution. It cannot do everything. If someone were to tell me they were going to use one of the simple software mentioned above (or any software for that matter) to develop my training without seeing my needs analysis and design requirements, I would be very very scared that they did not know what they were doing. You simply need to have Flash and other programming software in your arsenal. If you do not you are really limiting what you can do.

Just an fyi here. I am not against the ISDer being a developer or anything like that. I am an ISDer that is a developer as well. I can program and use all of the software I have mentioned above. I also like all of the software I have mentioned. I love HTML5. But I still just cannot figure out how ISDers are trying to dismiss Flash when none of the software I mentioned above matches its power. Am I biased? Well I do really like Flash but I also really like a lot of other software too. I probably like javascript the best which is what HTML5 is based on so if anything I probably like HTML5 more. I just know that most ISDers are not programmers and they are touting solutions that may not be appropriate because they want to be the one stop shop. Additionally I know that since most ISDers are not developers they are listening to a rumor and dismissing Flash just because they do not know any better because they do not know what any of this software does as they are not developing with it and thus believe this light software is actually a replacement for Flash. Maybe I am wrong? Actually I hope I am but I just do not see many other reasons.

]]>
https://raypastore.com/wordpress/2012/08/flash-is-dead-why-this-rumor-makes-sense-for-instructional-designers-and-why-its-not-true/feed/ 1 1665
HTML5 for game development https://raypastore.com/wordpress/2012/07/html5-for-game-development/ https://raypastore.com/wordpress/2012/07/html5-for-game-development/#respond Tue, 10 Jul 2012 11:55:57 +0000 https://raypastore.com/wordpress/?p=1487 Here is a great article that discusses all of the technologies that we tend to lump together when we discuss HTML5 and how they can be applied to game development. I think anyone interested in HTML5 should definitely read this article to get a better understanding of what we really mean when we say HTML5. If you plan to use HTML5 in your work, compare it to Flash, tout it as the next big thing, etc – You need to really understand each of the technologies discussed in this article otherwise you might be making uniformed decisions (my rant because of all the misinformation i hear on HTML5) The technologies discussed include:

HTML5
CSS3
DOM
Canvas
WebGL
SVG
Native Client
WebSockets
Node.js
Javascript

Here is a link to the article

]]>
https://raypastore.com/wordpress/2012/07/html5-for-game-development/feed/ 0 1487
Adobe: Web standards match 80 percent of Flash features https://raypastore.com/wordpress/2012/07/adobe-web-standards-match-80-percent-of-flash-features/ https://raypastore.com/wordpress/2012/07/adobe-web-standards-match-80-percent-of-flash-features/#respond Tue, 03 Jul 2012 12:33:48 +0000 https://raypastore.com/wordpress/?p=1465 Not very informative but interesting nonetheless: http://news.cnet.com/8301-1023_3-57464545-93/adobe-web-standards-match-80-percent-of-flash-features/

Essentially this is nothing new. HTML5 can do a lot of what Flash does but that 20% is big, because they are the high end interactions and gaming features which is what Flash is intended to do anyway. As I tell my students, at this point in time, you need to know Flash and its going to be long time before its gone so get used to developing in it and clients requesting it/needing it. I also tell them to start learning javascript because eventually it will be the future but at this point HTML5 is too new and its going to a long transition between Flash and HTML5. Additionally, Adobe appears to be the lead developer for HTML5 so you will more than likely continue to buy your authoring tools from them. Also remember that Adobe Air allows one to publish Flash Apps on iPhone and iPad.

]]>
https://raypastore.com/wordpress/2012/07/adobe-web-standards-match-80-percent-of-flash-features/feed/ 0 1465
Flash to HTML5: Buttons https://raypastore.com/wordpress/2012/05/flash-to-html5-buttons/ https://raypastore.com/wordpress/2012/05/flash-to-html5-buttons/#respond Thu, 10 May 2012 12:53:00 +0000 https://raypastore.com/wordpress/?p=1180 In this clip I test Adobe Flash’s HTML5 conversion tool. I test motion tweens, masks, and buttons via Wallaby, which is the conversion tool. I test the HTML output file in Safari, Chrome, and Firefox. The motion tweens and masks work in both Safari and Chrome. Nothing works in Firefox. The buttons do not work in any browser. While Wallaby has potential, this is a big limitation. This means that it is currently only useful for animations but not interactivity.

Check out the demonstration:

 

]]>
https://raypastore.com/wordpress/2012/05/flash-to-html5-buttons/feed/ 0 1180
Flash CS6 to HTML5 https://raypastore.com/wordpress/2012/05/flash-cs6-to-html5/ https://raypastore.com/wordpress/2012/05/flash-cs6-to-html5/#respond Tue, 08 May 2012 12:48:35 +0000 https://raypastore.com/wordpress/?p=1168 The following video demonstrates Adobe Flash’s CS6 to HTML5 conversion tool codenamed Wallaby. The tool converted my file in one second. It worked great in Safari but did not work in Firefox. I am not sure if Flash’s tool is not working or HTML5 is not working. I say this because of the compatibility issues I have with HTML5, especially in Firefox. Also, Adobe’s Wallaby tool was last updated on March 8th, which means that a new version is just around the corner. Overall, I am impressed it worked but need to test this with more advanced Flash files. I was not really surprised there was a compatibility issue as that is HTML5. Here is the video with the demonstration:

]]>
https://raypastore.com/wordpress/2012/05/flash-cs6-to-html5/feed/ 0 1168
Flash CS6 and HTML5 https://raypastore.com/wordpress/2012/05/flash-cs6-and-html5-2/ https://raypastore.com/wordpress/2012/05/flash-cs6-and-html5-2/#comments Wed, 02 May 2012 14:58:08 +0000 https://raypastore.com/wordpress/?p=1098 Here is a recent post I made in a discussion forum on linked in. I thought it would be worthwhile to post onto my blog:

Flash is not dead right now and from the looks of it, it has the opportunity to become the best authoring tool for HTML5.

HTML5 is currently not ready for widespread use due to compatibility issues. For those that do not know, HTML5 has been around for several years now – it is NOT new and still NOT ready. How many years do you think its going to take to be ready? You might want to look at recent history when DHTML (HTML4, CSS2, and Javascript) were touted as the next big thing in the early 2000s. Compatibility killed that idea. HTML5 does have more promise though. But remember HTML5 is just a simple upgrade to HTML4, it does not do that much more. The real power of HTML5 comes from javascript. Javascript libraries that have been around for years. Why are they not used more often? No authoring tool for them. Its all hand written code. Additionally, while both Google and Apple are making their web browsers HTML5 friendly, they are not making their app markets HTML5 friendly anytime soon. In order to publish an HTML5 app you need to get a third party software package that will do the conversion.

Additionally, at this point, the ONLY potential authoring tool for HTML5 that has promise in the future is Flash! Flash CS6 can export swf to javascript. So, those saying Flash is dead might be very wrong. Flash might just be the next big thing because it will export to HTML5. We currently do NOT have a good authoring tool for HTML5 and if Flash takes that spot, it will not be dead but might be more popular than it currently is now. The only way Flash will die is if another authoring tool that becomes very popular replaces it.

]]>
https://raypastore.com/wordpress/2012/05/flash-cs6-and-html5-2/feed/ 1 1098
HTML5 Doctype https://raypastore.com/wordpress/2012/04/html5-doctype/ https://raypastore.com/wordpress/2012/04/html5-doctype/#respond Sat, 28 Apr 2012 22:31:23 +0000 https://raypastore.com/wordpress/?p=1075 The HTML Doctype is used to tell a browser which version of HTML your page is written in. Thus it is very important that it is included on each HTML page. With HTML5, the doctype will be changed to be significantly shorter and easier to remember.

Here is the HTML5 Doctype:

<!DOCTYPE HTML>
<html>
<body>

You can see how much this differs from the common HTML 4.01 doctype:

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>
<html>
<body>

For more info on Doctypes see W3schools

]]>
https://raypastore.com/wordpress/2012/04/html5-doctype/feed/ 0 1075
So you want to learn Javascript? https://raypastore.com/wordpress/2012/02/learning-javascript/ https://raypastore.com/wordpress/2012/02/learning-javascript/#respond Wed, 01 Feb 2012 14:02:16 +0000 https://raypastore.com/wordpress/?p=721 With the increasing popularity of Codeacademy (http://www.codecademy.com), a free online javascript course, many people are signing up to learn Javascript. This popularity is stemming from the current state of the economy, leaders saying that everyone should learn to code, and where our future jobs are going.

I think this is awesome and I believe having an understanding of basic computer logic is a great skill to have. This is why I push software like Gamemaker, Squeak, Scratch, etc. which require one to understand basic programming logic.I also teach HTML, CSS, Javascript, PHP, and Actionscript in my classes.

However, I do think people are jumping the gun a bit with Javascript. The reason why? Javascript by itself is rather useless. I would not tell someone to learn javascript unless they had a solid foundation in HTML and CSS first. You really cant do anything with javascript without HTML. Learning javascript without HTML/CSS is like learning to hold your breath, then being put into a deep swimming pool without knowing how to swim.

So while I believe learning Javascript is great and I think everyone should learn basic programming…at least the logic, I believe that you should understand HTML and CSS before jumping the gun and learning Javascript.

So for those who want to learn js, just take a few weeks and learn HTML and CSS first. They are both very easy to learn – the easiest languages. Then when you have that foundation learn javascript. Then when you understand js, start learning a database language like PHP or Ruby.

]]>
https://raypastore.com/wordpress/2012/02/learning-javascript/feed/ 0 721
HTML5 and Flash (Yes this topic again) https://raypastore.com/wordpress/2012/01/html5-and-flash-yes-this-topic-again/ https://raypastore.com/wordpress/2012/01/html5-and-flash-yes-this-topic-again/#respond Tue, 31 Jan 2012 13:40:49 +0000 https://raypastore.com/wordpress/?p=719 Just to clarify some more information and so much misinformation is out there:

– HTML5 is simply an update of HTML4. It does a few extra things, like include a video tag. It is not this be all end all code that will replace Flash and by itself is not very powerful.

– HTML5 is not compatible on most browsers right now. There are many standards issues. Please see this report for more details: http://www.longtailvideo.com/html5/.

– The power of HTML comes from Javascript. Javascript has been able to do much of this for many years, it is NOT new. Most of the features people seem to think HTML5 can accomplish are really javascript features.

– Flash is used for a lot of things that it was not designed for, like web banners, just because there is not other tool out there. Flash was designed for rich interaction and games not web banners. HTML5 is not going to be used for these rich interactions and games, flash will be. Maybe someday this will happen, but not in HTML5. Maybe HTML6, 7, or 8. But remember Flash will continue to evolve as well in that time.

– The power of HTML5 really comes with mobile devices, not PCs. However, with more advancements in mobile processors such as quad cores, etc. This really isnt going to matter much. The only thing really stopping Flash right now on mobile devices is Apple. However, you can put flash onto apple mobile devices –  its a workaround though and not a process the average user can accomplish. Having said that, the same can be said of HTML5, the only thing stopping it from PCs right now is compatibility so as that gets better its use will grow.

So what exactly will HTML5 be used for that Flash once did?

Mobile applications. HTML5 will be used in the mobile world. Its more compatible and it’s free, which is the pure beauty of HTML5. However the main thing to point out here: HTML5 runs different on each browser right now. So its great if running on one device, like the iphone. But if running on android, iphone, and pc its really a pain to code. Flash is much better when using multiple devices. To get HTML5 to work on multiple devices I need to ‘trick’ the code for each browser which takes a lot of extra development time and adds a lot of extra code to my product.

Here are two good sources discussing this issue:

http://remysharp.com/2010/02/08/html5-vs-flash/

http://www.forbes.com/sites/fredcavazza/2011/07/17/why-opposing-html5-and-flash-is-a-non-sense/

*I am sure there will be many more HTML5 posts on here as it evolves:)

 

]]>
https://raypastore.com/wordpress/2012/01/html5-and-flash-yes-this-topic-again/feed/ 0 719
Flash file to html5 (.swf to html5) convertor https://raypastore.com/wordpress/2012/01/flash-file-to-html5-swf-to-html5-convertor/ https://raypastore.com/wordpress/2012/01/flash-file-to-html5-swf-to-html5-convertor/#respond Sun, 22 Jan 2012 17:39:38 +0000 https://raypastore.com/wordpress/?p=695 Google Swiffy

Have yet to try this tool out but since its from Google, I assume it does what it says – convert Flash .swf files to HTML5 files for use on iPhone/iPad. Let me know how it works:

http://www.google.com/doubleclick/studio/swiffy/

]]>
https://raypastore.com/wordpress/2012/01/flash-file-to-html5-swf-to-html5-convertor/feed/ 0 695
How to use HTML5 to publish mobile apps to apple and android app stores https://raypastore.com/wordpress/2011/12/how-to-use-html5-to-publish-mobile-apps-to-apple-and-android-app-stores/ https://raypastore.com/wordpress/2011/12/how-to-use-html5-to-publish-mobile-apps-to-apple-and-android-app-stores/#respond Mon, 05 Dec 2011 12:49:32 +0000 https://raypastore.com/wordpress/?p=556 Yes it is possible use HTML5, CSS3, and Javascript to make mobile apps that are published to Apple and Android app stores. I have mentioned it before. However, it is not as seamless as one would like. You unfortunately have to use 3rd party software to do it.

However, the great thing is that the 3rd party software is pretty good, and opensource. One such software and probably the most popular is called Phonegap (http://phonegap.com/).

Now the main question is when will Apple and Android support HTML5 and allow everyone to publish these kind of apps without using 3rd party software? As of right now both google and apple are hard at work pushing their own agendas and leaving HTML5 is the dust – and yes I am aware that both companies say they support html5 but until they stop pushing C/C++ and Java as the only way to build their apps then I will argue they are not pushing HTML5.

]]>
https://raypastore.com/wordpress/2011/12/how-to-use-html5-to-publish-mobile-apps-to-apple-and-android-app-stores/feed/ 0 556