473,662 Members | 2,693 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

hiding part of a Flash image

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
Aug 17 '06 #1
7 1638
In article <87************ @teufel.hartfor d-hwp.com>,
Haines Brown <br****@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.

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?
Aug 18 '06 #2
On Fri, 18 Aug 2006 07:33:58 -0400, David Stone wrote:
In article <87************ @teufel.hartfor d-hwp.com>,
Haines Brown <br****@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.

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
Aug 18 '06 #3
Nije Nego <"nije\"nego"@n et.hrwrites:
On Fri, 18 Aug 2006 07:33:58 -0400, David Stone wrote:
>In article <87************ @teufel.hartfor d-hwp.com>,
Haines Brown <br****@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?

--

Haines Brown
KB1GRM
ET1(SS) U.S.S. Irex SS-482
Aug 19 '06 #4
Haines Brown wrote:
Nije Nego <"nije\"nego"@n et.hrwrites:
>On Fri, 18 Aug 2006 07:33:58 -0400, David Stone wrote:
>>In article <87************ @teufel.hartfor d-hwp.com>,
Haines Brown <br****@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
Aug 19 '06 #5
Haines Brown <br****@teufel. hartford-hwp.comwrote:
>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
Aug 19 '06 #6
Haines Brown <br****@teufel. hartford-hwp.comwrites:
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
Aug 19 '06 #7
Sherm Pendley <sh***@Sherm-Pendleys-Computer.localw rites:
Haines Brown <br****@teufel. hartford-hwp.comwrites:
>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
Aug 21 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
3121
by: Pjotr Wedersteers | last post by:
I am new to J(ava)Script, use PHP a lot and consider moving some stuff for a project over to the client side. Problem is part of the PHP code is copyrighted and the author would not be happy to see his work made available to the world. Guess he is entitled to that opinion. Is it possible to hide javascript and/or html data from the user or is the only way to make it hard to get by obscuring it through removing indentation, variable...
0
1377
by: Vladi | last post by:
Hello everybody, I have a asp.net 1.1 page which has the following controls: 4 Images whose src points to an image.aspx file which returns a different jpg from a DB 1 flash object on top of those which contains buttons with links embedded in them to another pages (each having the same layout, identical to the page I'm talking about). The transfer is realised with some url_get method in the flash. I don't know because I didn't make it and...
10
31692
by: FX | last post by:
I wanna publish a script on my site which allows me to hide image source. i have rough idea abt it. i`ll point src to some php page like: <img src="image.php"> & in tht php wat exactly shud be done so tht user doesnt come to know the real source location of image file upon clicking its properties. I've seen websites doing this. can somebody post the script for it? Thanx in advance
5
1597
by: Trapulo | last post by:
Hi, I've a big trouble with an asp.net page. Basically, the page has an swf that starts and downloads some data from an other asp.net page. The application works well on my testing IIS 6, but when I upload it on production server (an other IIS6), it cannot download anything. The application is in ASP.NET 2.0. The page with swf, the swf, and the page that renders data (as xml) are on the same domain and same web site. The site has form...
8
3930
by: Warren Post | last post by:
At <http://snow.prohosting.com/srcopan/dry/test.es.html>, you will see that the background image runs down the left margin. The right hand side of it is faded, watermark style, but it is one single image. my intention is for the header and text to appear to the right of the unfaded portion of the image, and on top of the watermarked portion. At most viewport widths it works as intended. However, if the viewport is narrowed enough to...
3
2473
by: dd | last post by:
Hi, I have some code that hides all Flash objects on a page. It's working fine on IE and Gecko but doesn't work on Safari. There are no errors (shown in the console) when it runs on Safari, and when I alert the properties they do show the correctly changed status, but the screen doesn't reflect that. It maybe a bug in the Flash player for Safari (I'm using player 9.0) which is just ignoring that it's been hidden. Here is the...
8
5887
by: Neo Geshel | last post by:
Greetings. BACKGROUND: My sites are pure XHTML 1.1 with CSS 2.1 for markup. My pages are delivered as application/xhtml+xml for all non-MS web clients, and as text/xml for all MS web clients (Internet Explorer). My flash content was originally brought in via the “flash satay” method, but I have since used some server-side magic do deliver one <objecttag
2
3369
by: Richard Maher | last post by:
Hi, I'm trying to use the Visibility Style attribute for a Div to effectively PopUp a lightweight window with some additional context-sensitive information, when a user mouses over a given field(s). The popping-up seems to work just fine; it's the tearing down that's giving me grief. If I stick a onmouseout event on the same input field that caused the onmouseover/pop-up, it starts to flicker 'cos the <divis placed for esthetically...
2
3733
elamberdor
by: elamberdor | last post by:
Hi All! Well, i'm modifying a dynamic map, with lat and long datapoints, my problem is it loads in text perfectly onto exact points I specify on the map, ..well now I want to load in icons(images) instead of text. (yes i'm being difficult) and i'd like the text to load into a static placeholder symbol instead. Problem is, I can get images to load in a separate file, text to load in a separate file, and text to appear in a static...
0
8435
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8345
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8857
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8768
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4181
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4348
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2763
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1754
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.