[Flashcoders] loading html with tag img

2006-12-27 Thread natalia Vikhtinskaya

Hi to all

I have difficulty with this simple loading html with img. If align=right
link  does not work. If align=left everything is correct.

pa href=http://some.com; target=_blank img src=media/pic1/sm1.jpg
vspace=0 align=right /a text text./p
Can anybody explain me what is wrong? Thank you for help.
___
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] scrollPane scrolls too much

2006-12-27 Thread Mendelsohn, Michael
Hi list...

I have a scrollPane with a homemade accordion in it.  Each of my
accordion's components have a masked mc in them.  They are all inited as
collapsed.  The problem is that when the scrollPane's vscrollbar is
inited, it seems to take into account the total height of the accordion
components' masked mc's (including the height of what's masked MCs
despite the fact that they aren't visible).  How can this be fixed?  Any
insight is appreciated.

Thanks!
- Michael M.

ScrollPane should be:
---
  #|
   |
  #|
   |
  #|
   |
  #|
   |
  ###
   ##
  ###
   00
  ###
   ##
  ###
---


But ScrollPane is:
---
  #|
   |
  #|
   |
  #|
   |
  #|
   |
  ###
   ##
   ##
   00
  (too ##
  much)##
   ##
---

___
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] loading xml with html using tag img and align

2006-12-27 Thread natalia Vikhtinskaya

Hi to all

I have difficulty with this simple loading html with img. If align=right
link   does not work. If align=left everything is correct.

pa href=http://some.com; target=_blank img src=media/pic1/sm1.jpg
vspace=0 align=right /a text text./p
Can anybody explain me what is wrong? Thank you for help.
___
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] loading xml with html using tag img and align

2006-12-27 Thread slangeberg

You're loading the html as xml into flash? If so, I had troubles (in IE, i
think) using ' target=_blank '. I had to remove that property.

-Scott

On 12/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:


Hi to all

I have difficulty with this simple loading html with img. If align=right
link   does not work. If align=left everything is correct.

pa href=http://some.com; target=_blank img
src=media/pic1/sm1.jpg
vspace=0 align=right /a text text./p
Can anybody explain me what is wrong? Thank you for help.
___
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





--

: : ) Scott
___
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] Remove elements from Array

2006-12-27 Thread slangeberg


he told me was that FLEX could not consume web services without Flex Data
Services



Uh, no. You can consume webservices in Flex. I'm guessing it must conform to
SOAP, which shouldn't be a problem. .NET, CF, all good.

Is this true, or can FLEX consume a web serivce but with limiations?  By

limitations, for example, not being able to consume a .Net dataset directly
- needing to pass the data into an array.



Not sure what you mean by that. You can hook up to a webservice. You cannot
hook up 'directly' to .NET, if you mean some kind of remoting connection
(RTMP?), unless you set something up like that in .NET. PHP has AMFPHP and
CF has Flash Remoting built in. However, you could set up a socket server in
.NET and hook flex 2 directly to that, since it now has binary socket
functionality.

-Scott


On 12/22/06, Brake, Stephen [EMAIL PROTECTED] wrote:


I have a Flex question.  I have been considering FLEX 2.0, but when I
spoke with the guy at Adobe, the first thing he told me was that FLEX could
not consume web services without Flex Data Services and the price he quoted
me for the Departmental License was (well, lets not say).

Is this true, or can FLEX consume a web serivce but with limiations?  By
limitations, for example, not being able to consume a .Net dataset directly
- needing to pass the data into an array.

Thanks,

Steve



From: [EMAIL PROTECTED] on behalf of Mike Cobb
Sent: Thu 12/21/2006 11:58 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Remove elements from Array



-

Hi everyone,

I'm having a braindead moment today, which I was hoping someone could
help me with.

I have the following array...

//Create array with 5 elements
var myArray1:Array = new Array();
myArray1.push( new Array(A:, -1) );
myArray1.push( new Array(B:, -1) );
myArray1.push( new Array(C:,  0) );
myArray1.push( new Array(D:,  0) );
myArray1.push( new Array(E:, -1) );
myArray1.push( new Array(F:,  1) );
myArray1.push( new Array(G:,  0) );
myArray1.push( new Array(H:, -1) );
//name, score

...and I'm trying to remove all the elements in myArray1 with a score of
less than 0 without sorting/reordering the array at all.

I was trying to use a 'for loop', but obviously as the elements are
removed, the length of the array changes  causes the wrong elements to
be deleted.

Can anyone help?

Thanks,
Mike

--
-
Mike Cobb
Creative Director
HMC Interactive
-
Tel: + 44 (0)845 20 11 462
Mob: + 44 (0)785 52 54 743
Web: http://www.hmcinteractive.co.uk
-
Grosvenor House, Belgrave Lane,
Plymouth, PL4 7DA, UK.
-

I've got a new e-mail address: [EMAIL PROTECTED]
Please update your address book. Thanks.

___
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





--

: : ) Scott
___
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] loading xml with html using tag img and align

2006-12-27 Thread natalia Vikhtinskaya

yes I am loading html from xml. Removing target does not help. If
align=left href with http://; works but when I put Asfunction what I
really need it also does not work. I checked this ASfunction with text. It
is correct for text.

2006/12/27, slangeberg [EMAIL PROTECTED]:


You're loading the html as xml into flash? If so, I had troubles (in IE, i
think) using ' target=_blank '. I had to remove that property.

-Scott

On 12/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:

 Hi to all

 I have difficulty with this simple loading html with img. If
align=right
 link   does not work. If align=left everything is correct.

 pa href=http://some.com; target=_blank img
 src=media/pic1/sm1.jpg
 vspace=0 align=right /a text text./p
 Can anybody explain me what is wrong? Thank you for help.
 ___
 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




--

: : ) Scott
___
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


Re: [Flashcoders] loading xml with html using tag img and align

2006-12-27 Thread slangeberg

Oh, I see. Can you post the code you're using? The xml, parsing and html?

-Scott

On 12/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:


yes I am loading html from xml. Removing target does not help. If
align=left href with http://; works but when I put Asfunction what I
really need it also does not work. I checked this ASfunction with text. It
is correct for text.

2006/12/27, slangeberg [EMAIL PROTECTED]:

 You're loading the html as xml into flash? If so, I had troubles (in IE,
i
 think) using ' target=_blank '. I had to remove that property.

 -Scott

 On 12/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:
 
  Hi to all
 
  I have difficulty with this simple loading html with img. If
 align=right
  link   does not work. If align=left everything is correct.
 
  pa href=http://some.com; target=_blank img
  src=media/pic1/sm1.jpg
  vspace=0 align=right /a text text./p
  Can anybody explain me what is wrong? Thank you for help.
  ___
  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
 



 --

 : : ) Scott
 ___
 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





--

: : ) Scott
___
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] loading xml with html using tag img and align

2006-12-27 Thread natalia Vikhtinskaya

?xml version=1.0 encoding=utf-8?

content

   information

   gallery dirpath=media/pic1 title=Open Air

![CDATA[ pimg src=media/pic1/sm1.jpg vspace=0 hspace=0 bra

href=asfunction:showGallery,1 TEXTFORMAT blockindent=10FONT
COLOR=#BA1B0A bOpen Air /b/FONT/TEXTFORMATbrTEXTFORMAT
blockindent=10More text./TEXTFORMAT/a/p]]/gallery

   /information

/content



If align right does not work in flash with url I decided to use left.
Above asfunction works well with text.

Here when I click on img Asfunction does not work (but works with text)

gallery dirpath=media/pic1 title=Open Air ![CDATA[ pa
href=asfunction:showGallery,1 img src=media/pic1/sm1.jpg vspace=0
hspace=0 brTEXTFORMAT blockindent=10FONT COLOR=#BA1B0A bOpen
Air /b/FONT/TEXTFORMATbrTEXTFORMAT blockindent=10More
text./TEXTFORMAT/a/p]]/gallery


2006/12/27, slangeberg [EMAIL PROTECTED]:


Oh, I see. Can you post the code you're using? The xml, parsing and html?

-Scott

On 12/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:

 yes I am loading html from xml. Removing target does not help. If
 align=left href with http://; works but when I put Asfunction what I
 really need it also does not work. I checked this ASfunction with text.
It
 is correct for text.

 2006/12/27, slangeberg [EMAIL PROTECTED]:
 
  You're loading the html as xml into flash? If so, I had troubles (in
IE,
 i
  think) using ' target=_blank '. I had to remove that property.
 
  -Scott
 
  On 12/27/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote:
  
   Hi to all
  
   I have difficulty with this simple loading html with img. If
  align=right
   link   does not work. If align=left everything is correct.
  
   pa href=http://some.com; target=_blank img
   src=media/pic1/sm1.jpg
   vspace=0 align=right /a text text./p
   Can anybody explain me what is wrong? Thank you for help.
   ___
   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
  
 
 
 
  --
 
  : : ) Scott
  ___
  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




--

: : ) Scott
___
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] Font Symbols

2006-12-27 Thread Matt Donadio
Hi all,

I have searched around for the answer to this, but haven't found
anthing.

When you create a font symbol and export it, does the _entire_ font get
exported?

I am trying to export Arial Unicode MS as a font symbol, but glyphs seem
to be missing (traditional Chinese at least).

I created a font symbol for Arial Unicode MS, and exported it.

If I assign the font to some dynamic text with a textformat, then
western text works but Chinese doesn't.  The SWF size is also way too
small for having the entire font (size on disk is exactly 1 Meg).

Just authoring w/ Arial Unicode MS and embedding the whole font works,
but I have to delete the font symbol from the library first.  The SWF
size is also about what I expect (about 8 megs).  Arial is being used as
a fall back font in this case, so I would rather not do this.
Code2000 does the same thing.

Any ideas?

Thanks.

---
matthew donadio
lead developer
night kitchen interactive
411 south 2nd street, suite 200
philadelphia, pa 19147
215-629-9962 x109
215-629-9963 fax
[EMAIL PROTECTED]
http://www.whatscookin.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] live preview swf not scaling horizontally

2006-12-27 Thread Wade Arnold
I have a component that I am using an external swf for live preview. The swf
is scaling vertically but not horizontally on the stage. Any ideas as to
what I need to change so that the live preview fills my bounding box
horizontally like it does vertically? 

 

Thanks! 

Wade Arnold 

 

___
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] Adding a simple popup window link from a flash banner

2006-12-27 Thread KAI.HOLLAND
Hi,

We want to add a simple popup window link from a flash banner. No data
needs to be transferred. Popup window parameters are:
height=450,width=670,resizable=no,scrollbars=yes. Does anyone have
code for that?

 

Thanks!

 

 

___
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] Adding a simple popup window link from a flash banner

2006-12-27 Thread David Brunswick
Create a button or something you want to use to launch the pop call the
instance popup
Then add this code
popup.onRelease = function(){
getURL (javascript:window.open('your new
popup.html','thewin','height=450,width=670,toolbar=no,scrollbars=no'););
}
Or you can use 

getURL (javascript:window.open('your new
popup.html','thewin','height=450,width=670,toolbar=no,scrollbars=no'););

somewhere with the timeline

David 
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of KAI.HOLLAND
Sent: Wednesday, December 27, 2006 1:55 PM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Adding a simple popup window link from a flash banner

Hi,

We want to add a simple popup window link from a flash banner. No data
needs to be transferred. Popup window parameters are:
height=450,width=670,resizable=no,scrollbars=yes. Does anyone have
code for that?

 

Thanks!

 

 

___
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] Tweaking Full-Screen Mode in Flash Player 8

2006-12-27 Thread Kelly Smith

Hello -

I am building a video application which requires a full-screen mode for
flash 8 players.

I want to pass along some settings from the normal-sized view (browser) to
the full-screen browser when it opens upon user's command via javascript.
Specifically, I want to take some objects out of view, and scale others,
when the app is full screen. Unfortunately, what I've tried to this point
gets me nothing except for the initialization settings defined in my app.

Hints? Suggestions?

thanky

- Kelly
___
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] LoadVars.sendAndLoad and Internet Explorer

2006-12-27 Thread Jason Van Cleave

I am having an issue where LoadVars.sendAndLoad() (currently using
POST) works the first time I use it in IE but subsequent calls to it fail.
Firefox doesn't have an issue.

Has anyone came across this?
___
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] which tool to 3d rotate image?

2006-12-27 Thread Matthew Pease

Hello All -

I'm trying to figure out which tool is best to 3d rotate an image on a plane.

Something like this:

http://karmapop.com/content/cardFlip.swf

but with a dynamically loaded image on the front and another image
on the back with a font superimposed on it.  this is going to be a
postcard.

this is basically a shape tween, but where an image is being distorted.

I want the animation to be as smooth as possible, the file size to be
as small as possible, and keeping it to Flash 7 to allow the most
people to use it.


Which of these is best for the job?

Sandy
http://www.mosessupposes.com/Fuse/
http://hosted.zeh.com.br/mctween/
Papervision3d
Something else?

Thank You -
Matt
San Francisco
___
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