Creative COW SIGN IN :: SPONSORS :: ADVERTISING :: ABOUT US :: CONTACT US
Creative COW's LinkedIn GroupCreative COW's Facebook PageCreative COW on TwitterCreative COW's Google+ PageCreative COW on YouTube
ADOBE DREAMWEAVER:HomeDreamweaver ForumDreamweaver TutorialsFAQAdobe FlashWeb Design

swf.file

COW Forums : Adobe Dreamweaver

<< PREVIOUS   •   FAQ   •   VIEW ALL   •   PRINT   •   NEXT >>
Share on Facebook
Victor DiGiovineswf.file
by on Dec 15, 2008 at 2:59:45 am

Flash animation is not showing up on the Web when uploaded but works in dreamweaver?

Thanks


Return to posts index
Reply   Like  

Abraham ChaffinRe: swf.file
by on Dec 15, 2008 at 5:45:31 pm

Please post the URL of the page in question so we can take a look. It could very well be that you haven't uploaded all the necessary files or that they have been uploaded into the wrong location.

Abraham


Return to posts index
Reply   Like  

Victor DiGiovineRe: swf.file
by on Dec 17, 2008 at 3:41:39 pm

Thank You Abraham, I went through all the files and I was in fact uploading them to the wrong place, however another problem came up, how can I directly edit a flash document when its given to me? It only opens up as a movie in flash and not in timeline editing mode.
Maybe you can help me out,
Thanks



Return to posts index
Reply   Like  


Abraham ChaffinRe: swf.file
by on Dec 17, 2008 at 5:01:41 pm

If you are only given the swf file you will not be able to open it and edit it in Flash. You need the fla file. It's kind of like someone giving you a composited jpg image with a bunch of text and over lapping images and wanting you to go back to the original Photoshop doc without the psd.

Abraham


Return to posts index
Reply   Like  

Victor DiGiovineRe: swf.file
by on Dec 18, 2008 at 11:58:20 pm

I see, How about this Abraham? I am just looking for a good source to learn more on these AP dividers in dreamweaver. When I use them, they appear in the correct location in dreamweaver but shift to a different position on the web, I remember layers from previous dreamweavers but these are a little different. Thanks for your help
Victor



Return to posts index
Reply   Like  

Abraham ChaffinRe: swf.file
by on Dec 19, 2008 at 4:15:21 pm

AP stands for absolute positioning.

You can read about absolute positioning here:
http://forums.creativecow.net/faq/adobedreamweaver#46

Another good tip to note is a page element with relative positioning gives you the control to absolutely position children elements inside of it.
Here's a great link for that:
http://css-tricks.com/absolute-positioning-inside-relative-positioning/



Abraham


Return to posts index
Reply   Like  


Victor DiGiovineRe: swf.file
by on Dec 19, 2008 at 5:59:51 pm

What would you reccommend to place text on top of an image in dreamweaver Abraham?
Thanks, Victor



Return to posts index
Reply   Like  

Abraham ChaffinRe: swf.file
by on Dec 19, 2008 at 6:15:24 pm

I would set the background image of a div to the image I wanted to overlay, set the width and height of the div to match the image, put the text you want to overlay the image in the div, set some padding of the div to push the text away from the edge. Code might be something like this:


<style>
.thedivclass{
background-image: url(imageurl.jpg);
width:200px;
height:200px;
background-repeat:no-repeat;
padding:10px;
}
</style>

<div class='thedivclass'>
text here to overlay
</div>


Abraham


Return to posts index
Reply   Like  

Victor DiGiovineRe: swf.file
by on Dec 19, 2008 at 6:41:12 pm

Why do my divider tags keep moving when I view them on the web. I position them correctly and then they move for no reason. I can't put the image in as a background image because then it will not print. This is very frustrating, I just want an image with text over it that will print. I put it in a cell and then put dividers over it for the text and it still didnt work; Thanks



Return to posts index
Reply   Like  


Abraham ChaffinRe: swf.file
by on Dec 19, 2008 at 6:46:17 pm

You could post the URL of the page you are having trouble with and include a screen shot of what you want it to look like or how it looks in Dreamweaver. It's hard to tell what code is wrong without looking at it.

Abraham


Return to posts index
Reply   Like  

Victor DiGiovineRe: swf.file
by on Dec 19, 2008 at 7:07:40 pm

https://tg8.com/news.dhtml?&usepage=newscard.html


is the url, no matter what i do, every time i put the dividers on the page, they show up in a different spot on the web?



Return to posts index
Reply   Like  

Abraham ChaffinRe: swf.file
by on Dec 19, 2008 at 7:08:47 pm

When I click on the link it redirects me to
https://tg8.com/index.dhtml
and I get nothing...

Abraham


Return to posts index
Reply   Like  


Victor DiGiovineRe: swf.file
by on Dec 19, 2008 at 7:14:05 pm

i don't know why? Thanks for your help anyway. I just cant get a grip on these AP dividers at all. I have a image and some text, I want the image behind the text and I want it to print. How would you do it?



Return to posts index
Reply   Like  

Abraham ChaffinRe: swf.file
by on Dec 19, 2008 at 7:28:54 pm

Containing Relative Positioned Div:
I would setup a relative positioned div to contain two absolute positioned divs. I would set the width of this div to restrain the text to whatever width might fit the overlay of the image.

Image AP Div:
One absolute positioned div inside of the relative positioned div would have a top and left position of 0,0 to place it in the direct top left corner of the relative positioned div, it would have the image inside of it and have a z-index smaller than that of the other absolute positioned div, this would make it be behind the text div.

Text AP Div:
The other absolute positioned div inside the relative positioned div would have a top and left position of something like 10,10 to place it slightly inside the top left corner of the containing div. Text would then be placed into it and the z-index would be greater than that of the image div, this would make it so that it would be on top of the image.

Here's code and example:




<div style="position:relative; width:300px;">
<div style="position:absolute; left:0px; top:0px; z-index:1;">
<img src="http://www.creativecow.net/docs/wrapper/images/cow_logo_t.png" />
</div>
<div style="position:absolute; left:10px; top:10px; z-index:10;">
<font color="#FF0000">This is text overlaying</font>
</div>
</div>








This is text overlaying the image and restrained to 300px wide because of the container...




Abraham


Return to posts index
Reply   Like  

Victor DiGiovineRe: swf.file
by on Dec 22, 2008 at 4:13:21 pm

Any suggestions on how to make my spry menu bar have different attributes. I am trying to give the menu round corners and adjust the overall look of the menu. The rounded corners are my biggest concern at this point.? Thanks



Return to posts index
Reply   Like  


Abraham ChaffinRe: swf.file
by on Dec 22, 2008 at 6:23:05 pm

The best way to do rounded corners is have a design with a set with and a no-repeat background image that has rounded corners. I haven't seen this done with a spry drop-down menu but I'm sure it could be done.

Abraham


Return to posts index
Reply   Like  

Victor DiGiovinecells
by on Dec 23, 2008 at 2:52:38 pm

I am trying to delete cells and tables in my dreamweaver cs3 and all i keep getting is a error message and then the application freezes and closes out every time. Any idea what this is about? thanks



Return to posts index
Reply   Like  

Abraham ChaffinRe: cells
by on Dec 23, 2008 at 4:09:22 pm

I would try cleaning the preferences file using the process in this thread:

http://forums.creativecow.net/thread/191/857307#857309



Abraham


Return to posts index
Reply   Like  


Victor DiGiovineRe: cells
by on Dec 23, 2008 at 7:12:34 pm

When I am creating a vertical navigation bar a white space is appearing where cells come together and it is making the table and navigation bar look divided. Any suggestions on why this might be happening? I have three cells with no padding on them and one image in each cell, where they meet i can't get rid of the white space?



Return to posts index
Reply   Like  

chris ferrerRe: cells
by on Dec 29, 2008 at 11:12:57 am

hi
i just want to ask if u have tried putting an png overlay to a swf movie under dreamweaver? cause im having so much trouble doing it im having a hard time hope u could help me tnx.



Return to posts index
Reply   Like  

Abraham ChaffinRe: cells
by on Dec 29, 2008 at 5:51:58 pm

For putting Flash elements under or over other elements you should check out this FAQ:
http://forums.creativecow.net/faq/adobedreamweaver#69
In combination with the one right above it:
http://forums.creativecow.net/faq/adobedreamweaver#68

You can also see a good demonstration of this on this page:
http://www.flashdesignerzone.com/tutorials/t1026.php



Abraham


Return to posts index
Reply   Like  


Soumyo MukherjeeRe: swf.file
by on Jan 20, 2010 at 12:26:05 pm

I have put three child DIVs under one DIV. I want the image, AdvHomeBkg.png, to appear underneath the text DIV as well as the transparent area of the image, AdvLogo.png. Right now it appears blank underneath them. How can I make the background image visible? Can you help?
Thanks with regards
Soumyo



Return to posts index
Reply   Like  

victor digiovineword spacing
by on Jan 5, 2009 at 4:43:11 pm

Any suggestions on why I can not get the word spacing to adjust in any way shape or form. The letter spacing works and the alignment does too but the word spacing will not work. Thanks



Return to posts index
Reply   Like  

Abraham ChaffinRe: word spacing
by on Jan 5, 2009 at 5:23:10 pm

In certain versions of Dreamweaver I have noticed this as well. That the word spacing will not actually preview properly while the letter spacing will. Though this is a problem when viewing in preview it should be a problem when you view the finished product or preview it in a browser.

Abraham


Return to posts index
Reply   Like  


victor digiovineRe: word spacing
by on Jan 5, 2009 at 5:28:23 pm

yes you are correct, it was not a problem on the live site, thanks




Return to posts index
Reply   Like  

Mike BontoRe: word spacing
by on Mar 3, 2009 at 4:32:02 pm

Hi,

I had a question regarding the HTML text overlay of an image that you had discussed a few months ago.

I am putting together an email. The email uses an image with text overlay. I have used a code similar to what you originally had suggested.

In general it works but I am having display issues with some email clients.

The image that has the text overlay displays fine in Yahoo and AOL.

However, in Hotmail, Gmail, Outlook, and Lotus Notes, the text displays but not the image.

Can you offer some suggestions as to how to adjust the code so the image will appear in all of these email clients.

I realize email clients react differently to HTML but is there something that can be adjusted that will work for all of them?

I used the background-image:url coding and put the padding parameters using a div style.


Thank you.


Return to posts index
Reply   Like  

<< PREVIOUS   •   VIEW ALL   •   PRINT   •   NEXT >>
Share on Facebook


FORUMSTUTORIALSMAGAZINESTOCKYARDVIDEOSPODCASTSEVENTSSERVICESNEWSLETTERNEWSBLOGS

Creative COW LinkedIn Group Creative COW Facebook Page Creative COW on Twitter
© 2013 CreativeCOW.net All rights are reserved. - Privacy Policy

[Top]