[Flashcoders] rendering 3d model of a car for use in flash as an image sequence (360)

2009-07-02 Thread Matt Muller
Hi, I am about to get some rendered frames of a car for a 360 as a targa
sequence for use in flash as an image (JPG's) sequence.

Does anyone know what the optimum target polygon count is for the vehicle
exterior?

Does anyone know roughly how many JPGs will be needed to create a smooth
sequence?

Any other tips or tricks or URL' s greatly appreciated.

thanks,

MaTT
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] [OT] generate serial for onlinepayment

2009-07-02 Thread Hans Wichman
Hi List,

this is a bit off topic, but I need to generate a serial for an online
payment.

Basic process is:
* customer pays
* mail with invoice and serial should be generated including account data
* customer logs into account with data from email, downloads game
* installs game using given serial

Seems to me there should be out of the box solutions for this, but I'm
having a hard time finding any.
Currently I'm thinking about using paypal, ipn and a custom script.

cheers,
JC
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] rendering 3d model of a car for use in flash as an image sequence (360)

2009-07-02 Thread Hans Wichman
Hi,

if you are rendering it to jpg's what does the polygon count matter? Crank
it up until it looks so good you're pc is on its knees:)
We've been doing like wise things, which required about 180 jpg's, but you
might be able to skip a lot of those using some nice effects.
In addition in our setup you can only stop every 20 frames I think, and all
the frames in between (while moving) are lower quality to save filesize.

regards,
JC

On Thu, Jul 2, 2009 at 3:02 PM, Matt Muller matthewmul...@gmail.com wrote:

 Hi, I am about to get some rendered frames of a car for a 360 as a targa
 sequence for use in flash as an image (JPG's) sequence.

 Does anyone know what the optimum target polygon count is for the vehicle
 exterior?

 Does anyone know roughly how many JPGs will be needed to create a smooth
 sequence?

 Any other tips or tricks or URL' s greatly appreciated.

 thanks,

 MaTT
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Linux Kernel 2.6.29, FP10 Webcams

2009-07-02 Thread Glen Pike

Hi,

   Anyone here having problems with webcams on Linux.  I have upgraded 
my kernel from 2.6.27 to 2.6.29 and now Flashplayer can't find my 
webcameras?


   Glen
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Strange characters added to file when saving from AIR using fileStream

2009-07-02 Thread Cheetham, Marcus
I'm using fileStream to save a text file. This works OK, but introduces
some strange characters at the beginning of the saved text.
I'm saving XML data. I've kept this as an XML object and also converted
it to string -- same thing always happens.
 
Any idea how I can get rid of these characters?
 
Thanks,
 
This is what I end up with (note the 'g at the beginning) :
 
'gorder
  item id=1
menuNameburger/menuName
price3.95/price
  /item
  item id=2
menuNamefries/menuName
price1.45/price
  /item
/order
 
This is the Flex 3 code:
?xml version=1.0 encoding=utf-8?
mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute activate=createXML()
mx:Script
 ![CDATA[
  import flash.events.Event;
  import flash.filesystem.*;
  
  public function createXML():void 
  {
   x1 = order
  !--This is a comment. --
  ?PROC_INSTR sample ?
  item id='1'
 menuNameburger/menuName
  price3.95/price
  /item
  item id='2'
  menuNamefries/menuName
  price1.45/price
  /item
  /order
  }
  
  public  var file:File;
 
  public  function saveToFile() :void
  {
   file = new File(/filename.xml);
   file.addEventListener(Event.SELECT, dirSelected);
   file.browseForSave('');
  }
  
 
  public  function dirSelected(e:Event) :void
  {
   // this object will get saved to the file
   var dat:String = new String;
   var str:String = new String;
   str = x1.toXMLString();
   dat = str;
   var fileStream:FileStream = new FileStream();
   fileStream.open(file, FileMode.WRITE);
   fileStream.writeObject(dat);
   fileStream.close();
  }
 
 ]]
/mx:Script
 
 mx:Button x=102 y=320 label=Save XML click=saveToFile()/
 mx:XML id=x1 format=e4x/
 
/mx:WindowedApplication


 

 

 
This email was sent by a company owned by Pearson plc, registered office at 80 
Strand, London WC2R 0RL.
Registered in England and Wales with company number 53723
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Linux Kernel 2.6.29, FP10 Webcams

2009-07-02 Thread Glen Pike
User error - was permission problem - the user was  not in the required 
groups...


Glen Pike wrote:

Hi,

   Anyone here having problems with webcams on Linux.  I have upgraded 
my kernel from 2.6.27 to 2.6.29 and now Flashplayer can't find my 
webcameras?


   Glen
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] rendering 3d model of a car for use in flash as an image sequence (360)

2009-07-02 Thread jared stanley
yeah, lower the quality between stopping points if there are any,

a big filesaver is to remove every other frame, although depending on
what you're doing that is too big of a quality loss.

depending on the sequence try reusing images for symmetrically-flipped
images; i.e. a 360-degree spin at 90 degrees and 270 degrees - be sure
to check the lighting etc, again every situation will be different.






On Thu, Jul 2, 2009 at 8:07 AM, Hans
Wichmanj.c.wich...@objectpainters.com wrote:
 Hi,

 if you are rendering it to jpg's what does the polygon count matter? Crank
 it up until it looks so good you're pc is on its knees:)
 We've been doing like wise things, which required about 180 jpg's, but you
 might be able to skip a lot of those using some nice effects.
 In addition in our setup you can only stop every 20 frames I think, and all
 the frames in between (while moving) are lower quality to save filesize.

 regards,
 JC

 On Thu, Jul 2, 2009 at 3:02 PM, Matt Muller matthewmul...@gmail.com wrote:

 Hi, I am about to get some rendered frames of a car for a 360 as a targa
 sequence for use in flash as an image (JPG's) sequence.

 Does anyone know what the optimum target polygon count is for the vehicle
 exterior?

 Does anyone know roughly how many JPGs will be needed to create a smooth
 sequence?

 Any other tips or tricks or URL' s greatly appreciated.

 thanks,

 MaTT
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Event.RESIZE

2009-07-02 Thread Mario Gonzalez
You have to becareful how you call that, because as you're dragging it 
out, calling about 3-4 times a second.

That could be related to your problem.

You're correct in that they are actually the same thing.

If you're trying to stretch it to the width of the stage, and it started 
out as the width of the stage at creation.

The only thing you need to change is:

clip.scaleX = stage.stageWidth / startWidth; // If it was 1000 at start, 
and stretched the window 2.5 times as big as it was originally, the new 
width will be 2500.



Onedayitwillmake
http://onedayitwillmake.com


Pedro Kostelec wrote:

Hi,

i have a MC (footer background) that is scalled proportionally to the stage
width. I use Event.RESIZE and it works nice if i expand the window from its
borders or corners, but it doesn't work if i click the minimize/maxmize
button.

Aren't the minimize/maximize buttons the same as resizing the window in as3?
How could i make it treatable as a normal resize?

stage.addEventListener(Event.RESIZE, resizeHandler);

function resizeHandler(e:Event):void {
TweenLite.to(Footer_mc, .5,  {alpha:1.0, y:(stage.stageHeight-bottomOffset),
x: stage.stageWidth/2, scaleX:(stage.stageWidth/Footer_mc.width),
ease:Elastic.easeOut, delay:0.2});

}
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  



__ Information from ESET NOD32 Antivirus, version of virus signature 
database 4211 (20090702) __

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Event.RESIZE

2009-07-02 Thread Pedro Kostelec
Thanks. I fixed it by adding a Footer_mc.scaleX = 1;  just before the
Tweenlite tween so the scale is reset before calculating the new one.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] problem with code

2009-07-02 Thread Gustavo Duenas LRS

Hi coders I have this code

this is an onclick function


function onClick(e:mouseEvent):void{

if(e.currentTarget.name ==about){
about();
}else if(e.currentTarget.name==contact){
contact();
}else if(e.currentTarget.name==commercial){
commercial();
}else{ gotoAndPlay(3);}
}

function about():void{
do something
}
function commercial(){
do something
}
function contact():void{
do something}

Well the problem is that anytime I'm running through the flash, it  
gets me an odd error like an 1021: Duplicate function


does anyone can see what is wrong there and what am I missing?

Gustavo
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Karl DeSaulniers

Hey there Gus,
I think you just had a couple of things typed wrong. Try this:

//declare your functions before the onClick

function about():Void{//you had a lowercase void here it needs to  
be Void

//do something
}
function commercial():Void {//you didn't have a Void here
//do something
}
function contact():Void {//you had a lowercase void here it needs  
to be Void

//do something
}

function onClick(e:MouseEvent):Void {//you had a lowercase void  
here, I think it needs to be Void, plus you had mouseEvent and I  
think it needs to be MouseEvent

if (e.currentTarget.name == about) {
about();
} else if (e.currentTarget.name == contact) {
contact();
} else if (e.currentTarget.name == commercial) {
commercial();
} else {
gotoAndPlay(3);
}
}

HTH

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 9:03 PM, Gustavo Duenas LRS wrote:


Hi coders I have this code

this is an onclick function


function onClick(e:mouseEvent):void{

if(e.currentTarget.name ==about){
about();
}else if(e.currentTarget.name==contact){
contact();
}else if(e.currentTarget.name==commercial){
commercial();
}else{ gotoAndPlay(3);}
}

function about():void{
do something
}
function commercial(){
do something
}
function contact():void{
do something}

Well the problem is that anytime I'm running through the flash, it  
gets me an odd error like an 1021: Duplicate function


does anyone can see what is wrong there and what am I missing?

Gustavo
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Gustavo Duenas LRS
Ok I've tried just what you say and now I HAVE IMCOMPATIBLE OVERRIDE  
AND DUPLICATE FUNCTION DEFINITION, SOMEONE HELP ME PLEASE!!!


GUSTAVO

On Jul 2, 2009, at 10:44 PM, Karl DeSaulniers wrote:


Hey there Gus,
I think you just had a couple of things typed wrong. Try this:

//declare your functions before the onClick

function about():Void{//you had a lowercase void here it needs to  
be Void

//do something
}
function commercial():Void {//you didn't have a Void here
//do something
}
function contact():Void {//you had a lowercase void here it needs  
to be Void

//do something
}

function onClick(e:MouseEvent):Void {//you had a lowercase void  
here, I think it needs to be Void, plus you had mouseEvent and  
I think it needs to be MouseEvent

if (e.currentTarget.name == about) {
about();
} else if (e.currentTarget.name == contact) {
contact();
} else if (e.currentTarget.name == commercial) {
commercial();
} else {
gotoAndPlay(3);
}
}

HTH

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 9:03 PM, Gustavo Duenas LRS wrote:


Hi coders I have this code

this is an onclick function


function onClick(e:mouseEvent):void{

if(e.currentTarget.name ==about){
about();
}else if(e.currentTarget.name==contact){
contact();
}else if(e.currentTarget.name==commercial){
commercial();
}else{ gotoAndPlay(3);}
}

function about():void{
do something
}
function commercial(){
do something
}
function contact():void{
do something}

Well the problem is that anytime I'm running through the flash, it  
gets me an odd error like an 1021: Duplicate function


does anyone can see what is wrong there and what am I missing?

Gustavo
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Karl DeSaulniers

Hello List..

I could go to Google and try and find this out, but I figured being  
the seasoned designers you are, I would be in better hands if I asked  
here.
Excuse me if this is a little off-topic, but what, in your opinion,  
is the best way to optimize your flash site for search engines?


S.E.O is what I believe they call it.
Search Engine Optimization.

Doesn't this more pertain to the type of MetaData you have in your  
HTML then in your flash file???

Or is there a separate technology for S.E.O??

Any and all responses are welcome..

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Gustavo Duenas LRS

Ok I got it.

the problem was that I got my buttons which were movieClips named the  
same as functions, I've just changed the name from about() to aboutUs 
() and now it is working, thank you.


Gustavo
On Jul 2, 2009, at 11:18 PM, Gustavo Duenas LRS wrote:

Ok I've tried just what you say and now I HAVE IMCOMPATIBLE  
OVERRIDE AND DUPLICATE FUNCTION DEFINITION, SOMEONE HELP ME PLEASE!!!


GUSTAVO

On Jul 2, 2009, at 10:44 PM, Karl DeSaulniers wrote:


Hey there Gus,
I think you just had a couple of things typed wrong. Try this:

//declare your functions before the onClick

function about():Void{//you had a lowercase void here it needs  
to be Void

//do something
}
function commercial():Void {//you didn't have a Void here
//do something
}
function contact():Void {//you had a lowercase void here it  
needs to be Void

//do something
}

function onClick(e:MouseEvent):Void {//you had a lowercase void  
here, I think it needs to be Void, plus you had mouseEvent and  
I think it needs to be MouseEvent

if (e.currentTarget.name == about) {
about();
} else if (e.currentTarget.name == contact) {
contact();
} else if (e.currentTarget.name == commercial) {
commercial();
} else {
gotoAndPlay(3);
}
}

HTH

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 9:03 PM, Gustavo Duenas LRS wrote:


Hi coders I have this code

this is an onclick function


function onClick(e:mouseEvent):void{

if(e.currentTarget.name ==about){
about();
}else if(e.currentTarget.name==contact){
contact();
}else if(e.currentTarget.name==commercial){
commercial();
}else{ gotoAndPlay(3);}
}

function about():void{
do something
}
function commercial(){
do something
}
function contact():void{
do something}

Well the problem is that anytime I'm running through the flash,  
it gets me an odd error like an 1021: Duplicate function


does anyone can see what is wrong there and what am I missing?

Gustavo
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Karl DeSaulniers

H...

I think I am mistaken about the Void.
Make all the Void back to void on the onClick function.
Do you have a listener set up for your button?

//declare your functions before the onClick

function about():Void{
//do something
}
function commercial():Void {
//do something
}
function contact():Void {
//do something
}

function onClick(e:MouseEvent):void {
if (e.currentTarget.name == about) {
about();
} else if (e.currentTarget.name == contact) {
contact();
} else if (e.currentTarget.name == commercial) {
commercial();
} else {
gotoAndPlay(3);
}
}
myButton.addEventListener(MouseEvent.CLICK, onClick);

I do appologize, I am not a AS3 programer and my specialty is mor  
AS2, but hopefully someone can add to this response who would know  
more about it.

HTH


Karl DeSaulniers
Design Drumm
http://designdrumm.com


On Jul 2, 2009, at 10:18 PM, Gustavo Duenas LRS wrote:

Ok I've tried just what you say and now I HAVE IMCOMPATIBLE  
OVERRIDE AND DUPLICATE FUNCTION DEFINITION, SOMEONE HELP ME PLEASE!!!


GUSTAVO

On Jul 2, 2009, at 10:44 PM, Karl DeSaulniers wrote:


Hey there Gus,
I think you just had a couple of things typed wrong. Try this:

//declare your functions before the onClick

function about():Void{//you had a lowercase void here it needs  
to be Void

//do something
}
function commercial():Void {//you didn't have a Void here
//do something
}
function contact():Void {//you had a lowercase void here it  
needs to be Void

//do something
}

function onClick(e:MouseEvent):Void {//you had a lowercase void  
here, I think it needs to be Void, plus you had mouseEvent and  
I think it needs to be MouseEvent

if (e.currentTarget.name == about) {
about();
} else if (e.currentTarget.name == contact) {
contact();
} else if (e.currentTarget.name == commercial) {
commercial();
} else {
gotoAndPlay(3);
}
}

HTH

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 9:03 PM, Gustavo Duenas LRS wrote:


Hi coders I have this code

this is an onclick function


function onClick(e:mouseEvent):void{

if(e.currentTarget.name ==about){
about();
}else if(e.currentTarget.name==contact){
contact();
}else if(e.currentTarget.name==commercial){
commercial();
}else{ gotoAndPlay(3);}
}

function about():void{
do something
}
function commercial(){
do something
}
function contact():void{
do something}

Well the problem is that anytime I'm running through the flash,  
it gets me an odd error like an 1021: Duplicate function


does anyone can see what is wrong there and what am I missing?

Gustavo
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Karl DeSaulniers

OH, well sweet deal.
GTK

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 10:33 PM, Gustavo Duenas LRS wrote:


Ok I got it.

the problem was that I got my buttons which were movieClips named  
the same as functions, I've just changed the name from about() to  
aboutUs() and now it is working, thank you.


Gustavo
On Jul 2, 2009, at 11:18 PM, Gustavo Duenas LRS wrote:

Ok I've tried just what you say and now I HAVE IMCOMPATIBLE  
OVERRIDE AND DUPLICATE FUNCTION DEFINITION, SOMEONE HELP ME PLEASE!!!


GUSTAVO

On Jul 2, 2009, at 10:44 PM, Karl DeSaulniers wrote:


Hey there Gus,
I think you just had a couple of things typed wrong. Try this:

//declare your functions before the onClick

function about():Void{//you had a lowercase void here it needs  
to be Void

//do something
}
function commercial():Void {//you didn't have a Void here
//do something
}
function contact():Void {//you had a lowercase void here it  
needs to be Void

//do something
}

function onClick(e:MouseEvent):Void {//you had a lowercase void  
here, I think it needs to be Void, plus you had mouseEvent  
and I think it needs to be MouseEvent

if (e.currentTarget.name == about) {
about();
} else if (e.currentTarget.name == contact) {
contact();
} else if (e.currentTarget.name == commercial) {
commercial();
} else {
gotoAndPlay(3);
}
}

HTH

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 9:03 PM, Gustavo Duenas LRS wrote:


Hi coders I have this code

this is an onclick function


function onClick(e:mouseEvent):void{

if(e.currentTarget.name ==about){
about();
}else if(e.currentTarget.name==contact){
contact();
}else if(e.currentTarget.name==commercial){
commercial();
}else{ gotoAndPlay(3);}
}

function about():void{
do something
}
function commercial(){
do something
}
function contact():void{
do something}

Well the problem is that anytime I'm running through the flash,  
it gets me an odd error like an 1021: Duplicate function


does anyone can see what is wrong there and what am I missing?

Gustavo
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Gustavo Duenas LRS
you could use to optimize a flash site the swfaddress, you can  
download it from here:

http://www.asual.com/swfaddress/
 and I'll send you a link for you to see how to apply this to your  
code, Actually the structure I have now is based on that.
You can use the metadata available in your keywords, description and  
others part also if you are using swfobject you can put in the part  
where is supposed to be the warning about the
flash kind you actually have running in your flash object (I'm doing  
that with no problem at all).
You can use indexation using a xml.tar.gz file to index the files in  
your website, you can make more than one page in html and named as  
the different parts of your website.


That is what I've been using.

Gus
On Jul 2, 2009, at 11:22 PM, Karl DeSaulniers wrote:


Hello List..

I could go to Google and try and find this out, but I figured being  
the seasoned designers you are, I would be in better hands if I  
asked here.
Excuse me if this is a little off-topic, but what, in your opinion,  
is the best way to optimize your flash site for search engines?


S.E.O is what I believe they call it.
Search Engine Optimization.

Doesn't this more pertain to the type of MetaData you have in your  
HTML then in your flash file???

Or is there a separate technology for S.E.O??

Any and all responses are welcome..

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] problem with code

2009-07-02 Thread Karl DeSaulniers

Mmmm...
Interesting take..
Thanks Gustavo,
Currious about this xml.tar.gz, do you have more info on what that  
does for your site?


Best

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Jul 2, 2009, at 10:41 PM, Gustavo Duenas LRS wrote:

you could use to optimize a flash site the swfaddress, you can  
download it from here:

http://www.asual.com/swfaddress/
 and I'll send you a link for you to see how to apply this to your  
code, Actually the structure I have now is based on that.
You can use the metadata available in your keywords, description  
and others part also if you are using swfobject you can put in the  
part where is supposed to be the warning about the
flash kind you actually have running in your flash object (I'm  
doing that with no problem at all).
You can use indexation using a xml.tar.gz file to index the files  
in your website, you can make more than one page in html and named  
as the different parts of your website.


That is what I've been using.

Gus
On Jul 2, 2009, at 11:22 PM, Karl DeSaulniers wrote:


Hello List..

I could go to Google and try and find this out, but I figured  
being the seasoned designers you are, I would be in better hands  
if I asked here.
Excuse me if this is a little off-topic, but what, in your  
opinion, is the best way to optimize your flash site for search  
engines?


S.E.O is what I believe they call it.
Search Engine Optimization.

Doesn't this more pertain to the type of MetaData you have in your  
HTML then in your flash file???

Or is there a separate technology for S.E.O??

Any and all responses are welcome..

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders