Connecting Tech Pros Worldwide Forums | Help | Site Map

hiding part of a Flash image

Haines Brown
Guest
 
Posts: n/a
#1: Aug 17 '06
I'm trying to use a Shockwave Flash file as is except for a line of
text that it displays. I'd like to hide that line of text, and so I
tried to create a black mask to do it. However, I can't move the mask
over the text.

This is the idea:

<div id="inside">
<embed>...</embed>
<div id="mask"></div>
</div>

With the style:

embed { z-index: 1; }
#mask { width: 400px; height: 40px;
background-color: black;
position: relative; left: 380px; bottom: 30px;
z-index: 2;
}

The mask appears to slip under the Flash image regardless of z-index.

--

Haines Brown
KB1GRM
ET1(SS) U.S.S. Irex SS-482

David Stone
Guest
 
Posts: n/a
#2: Aug 18 '06

re: hiding part of a Flash image


In article <87bqqj70nj.fsf@teufel.hartford-hwp.com>,
Haines Brown <brownh@teufel.hartford-hwp.comwrote:
Quote:
I'm trying to use a Shockwave Flash file as is except for a line of
text that it displays. I'd like to hide that line of text, and so I
tried to create a black mask to do it. However, I can't move the mask
over the text.
>
This is the idea:
>
<div id="inside">
<embed>...</embed>
<div id="mask"></div>
</div>
>
With the style:
>
embed { z-index: 1; }
#mask { width: 400px; height: 40px;
background-color: black;
position: relative; left: 380px; bottom: 30px;
z-index: 2;
}
>
The mask appears to slip under the Flash image regardless of z-index.
I know this is a silly question, but why don't you just
remove the offending text from the flash file?
Nije Nego
Guest
 
Posts: n/a
#3: Aug 18 '06

re: hiding part of a Flash image


On Fri, 18 Aug 2006 07:33:58 -0400, David Stone wrote:
Quote:
In article <87bqqj70nj.fsf@teufel.hartford-hwp.com>,
Haines Brown <brownh@teufel.hartford-hwp.comwrote:
>
Quote:
>I'm trying to use a Shockwave Flash file as is except for a line of
>text that it displays. I'd like to hide that line of text, and so I
>tried to create a black mask to do it. However, I can't move the mask
>over the text.
>>
>This is the idea:
>>
><div id="inside">
><embed>...</embed>
><div id="mask"></div>
></div>
>>
>With the style:
>>
>embed { z-index: 1; }
>#mask { width: 400px; height: 40px;
> background-color: black;
> position: relative; left: 380px; bottom: 30px;
> z-index: 2;
> }
>>
>The mask appears to slip under the Flash image regardless of z-index.
>
I know this is a silly question, but why don't you just
remove the offending text from the flash file?
Obviously, offending text is somebody elses logo.

--
buy, bought, bye
Haines Brown
Guest
 
Posts: n/a
#4: Aug 19 '06

re: hiding part of a Flash image


Nije Nego <"nije\"nego"@net.hrwrites:
Quote:
On Fri, 18 Aug 2006 07:33:58 -0400, David Stone wrote:
>
Quote:
>In article <87bqqj70nj.fsf@teufel.hartford-hwp.com>,
> Haines Brown <brownh@teufel.hartford-hwp.comwrote:
>>
Quote:
>>I'm trying to use a Shockwave Flash file as is except for a line of
>>text that it displays. I'd like to hide that line of text, and so I
>>tried to create a black mask to do it. However, I can't move the mask
>>over the text.
>>
>I know this is a silly question, but why don't you just
>remove the offending text from the flash file?
>
Obviously, offending text is somebody elses logo.
A reasonable guess, but not the case in fact. The two Flash files were
purchased by my wife for her web page (and it was I who paid for
them). However, for her site's splash page, the original designer
also incorporated a hot text into the Flash file to link to the next
page. I felt it better to have the move automatic (meta refresh)
rather than require a mouse click. So I needed to hide the hot
text. Is there something about Flash files that they don't respond to
stacking with z-index? Is there some place on line where I can find
out about Flash parameters and attributes?

I would have liked to recreate the animationed effects from scratch,
but I would prefer not to use javascript, and the animations may be
too complicated for it: a) a text that encircles the globe which
emerges from a point, b) a star that likewise emerges, c) a text
that does the same. What are my (non-proprietary) options for creating
such effects?

--

Haines Brown
KB1GRM
ET1(SS) U.S.S. Irex SS-482
Gus Richter
Guest
 
Posts: n/a
#5: Aug 19 '06

re: hiding part of a Flash image


Haines Brown wrote:
Quote:
Nije Nego <"nije\"nego"@net.hrwrites:
>
Quote:
>On Fri, 18 Aug 2006 07:33:58 -0400, David Stone wrote:
>>
Quote:
>>In article <87bqqj70nj.fsf@teufel.hartford-hwp.com>,
>> Haines Brown <brownh@teufel.hartford-hwp.comwrote:
>>>
>>>I'm trying to use a Shockwave Flash file as is except for a line of
>>>text that it displays. I'd like to hide that line of text, and so I
>>>tried to create a black mask to do it. However, I can't move the mask
>>>over the text.
>>I know this is a silly question, but why don't you just
>>remove the offending text from the flash file?
>Obviously, offending text is somebody elses logo.
>
A reasonable guess, but not the case in fact. The two Flash files were
purchased by my wife for her web page (and it was I who paid for
them). However, for her site's splash page, the original designer
also incorporated a hot text into the Flash file to link to the next
page. I felt it better to have the move automatic (meta refresh)
rather than require a mouse click. So I needed to hide the hot
text. Is there something about Flash files that they don't respond to
stacking with z-index? Is there some place on line where I can find
out about Flash parameters and attributes?
>
I would have liked to recreate the animationed effects from scratch,
but I would prefer not to use javascript, and the animations may be
too complicated for it: a) a text that encircles the globe which
emerges from a point, b) a star that likewise emerges, c) a text
that does the same. What are my (non-proprietary) options for creating
such effects?
<http://www.quip.net/blog/2006/flash/how-to-position-flash-beneath-other-content>

--
Gus
Spartanicus
Guest
 
Posts: n/a
#6: Aug 19 '06

re: hiding part of a Flash image


Haines Brown <brownh@teufel.hartford-hwp.comwrote:
Quote:
>However, for her site's splash page, the original designer
>also incorporated a hot text into the Flash file to link to the next
>page. I felt it better to have the move automatic (meta refresh)
>rather than require a mouse click. So I needed to hide the hot
>text.
Get a Flash editor, change the Flash file.

--
Spartanicus
Sherm Pendley
Guest
 
Posts: n/a
#7: Aug 19 '06

re: hiding part of a Flash image


Haines Brown <brownh@teufel.hartford-hwp.comwrites:
Quote:
A reasonable guess, but not the case in fact. The two Flash files were
purchased by my wife for her web page (and it was I who paid for
them). However, for her site's splash page, the original designer
also incorporated a hot text into the Flash file to link to the next
page. I felt it better to have the move automatic (meta refresh)
rather than require a mouse click. So I needed to hide the hot
text.
Why not simply open up the .fla file in a Flash editor, remove the link,
and export a new .swf?

sherm--

--
Web Hosting by West Virginians, for West Virginians: http://wv-www.net
Cocoa programming in Perl: http://camelbones.sourceforge.net
Haines Brown
Guest
 
Posts: n/a
#8: Aug 21 '06

re: hiding part of a Flash image


Sherm Pendley <sherm@Sherm-Pendleys-Computer.localwrites:
Quote:
Haines Brown <brownh@teufel.hartford-hwp.comwrites:
>
Quote:
>A reasonable guess, but not the case in fact. The two Flash files were
>purchased by my wife for her web page (and it was I who paid for
>them). However, for her site's splash page, the original designer
>also incorporated a hot text into the Flash file to link to the next
>page. I felt it better to have the move automatic (meta refresh)
>rather than require a mouse click. So I needed to hide the hot
>text.
>
Why not simply open up the .fla file in a Flash editor, remove the link,
and export a new .swf?
sherm,

I don't have the original .fla file. Do you think the developer who
sold my wife the resulting .swf file is obliged to hand it over to his
client? I should think so, but don't know. If I had that file I could
use f4l (Flash for Linux), which I've installed, to rebuild the swf
file with the changes I need.

I tried out Flare (Linux), but it only produces a .flr script file,
not the original resources. If I can't get the fla resources from the
original developer it seems I have little choice but to pay to have
the two swf files decompiled.

--

Haines Brown
KB1GRM
ET1(SS) U.S.S. Irex SS-482
Closed Thread


Similar HTML / CSS bytes