Re: [Flashcoders] digest

2007-10-21 Thread Cynthia Lawson Jaramillo
Yes, but what password did you assign to us?  My usual passwords are  
not working to log in, so I'm guessing a default one was used?


Thanks,
C.

On Oct 19, 2007, at 12:04 PM, Dave Watts wrote:


Apparently some user preferences were jostled/reset by the move.


Yes, sorry about that!

I've reset your account to digest, but in the future you can use  
the URL in

the message footer.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

___
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] still the click to activate this ActiveX.

2007-02-23 Thread Cynthia Lawson Jaramillo
I used the javascript available at http://blog.deconcept.com/ 
swfobject/ and it worked like a charm!


xx
C.

On Feb 23, 2007, at 10:41 AM, Rodrigo Augusto Guerra wrote:



Hi all,

I was having some problems with the ActiveX block in IE. Then I  
used the Adobe's soluiton:
http://www.adobe.com/devnet/activecontent/articles/ 
before_after.html, it worked but I have to do it manually for EACH  
flash that i have in the screen.


but, if I have 15 swf's then I'll have to setup 15 flash's objects  
params, one by one.


What I'm looking for is  run a JS command or whatever when the page  
loads that looks for ALL the swf's in the page and then overwritie  
the object tag to avoid the activeX block without having to add a  
new command to each flash that i have in the screen.


I tried:
http://dhtmldev.com/content/view/109/26/
http://activecontent.blogspot.com/2006/04/external-javascript- 
solutions.html
http://www.flashnewz.com/ 
flashnewz-5-20061031FixingTheClickToActivateFlashContentInIE.html


without success.is there anything else that I can try?

thanks
rodrigo.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] full-browser flash resizing only a few elements

2007-01-22 Thread Cynthia Lawson Jaramillo

Hi everyone,

I'm trying to fill my browser window with my flash movie, but without  
resizing my nav buttons. My other element on stage is an FLV so I  
should be able to assign it's width  height, right?


This is my code which does NOT work:

Stage.scaleMode=noScale;
var stageL=new Object();


stageL.onResize = function(){
  this.video._width = Stage.width - this.navigation_exit._width
  this.video._height = Stage.height - this.navigation_left._height
}

Stage.addListener(stageL);

What I want the movie to do is not resize the entire flash movie  
since I don't want the navigation buttons to change size, but  
instead, just resize the rest of the content (ie. the FLV on stage  
and some dynamic text elements.)  I guess I could do it the other way  
around, where I scale to fit everything, and then size down the nav  
buttons.  I have tried that as well, but no luck.


I found similar code to the above on other forums, and it works for  
other people.  Am I constrained/limited because it's an externally  
linked FLV that I'm trying to resize?


What am I doing wrong??

Thanks!

C.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] full-browser flash resizing only a few elements

2007-01-22 Thread Cynthia Lawson Jaramillo

Hi,

Thanks for the suggestion, but that didn't work either!

Any thoughts on what the setting for scaling should be under Publish  
Settings?  Should that matter, or regardless of what I select there,  
it should get overriden by my code?


Any other thoughts?

xx
C.

On Jan 22, 2007, at 10:51 PM, Webdevotion wrote:


Cynthia,

If video is an instance of the flv player component,
you should use this code instead:

stageL.onResize = function(){
  video.setSize( Stage.width, Stage.height );
}

Using _width and _height in this case can cause distortion.
If you use the setSize method, the component will handle
the resizing itself, avoiding distortion of the navigation etc.

Good luck!
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com