How does iWeb make 160 movies 300 for web page?

This isn't iWeb, but rather how iWeb does this:
When I export my GB3 enhanced podcast to iWeb I get a webpage with a 300x300 pixel "movie"
But it looks like GB3 is just exporting 160x160. (is that right?) and then iWeb is doing something to change the display size.
I'm looking for the html that will let me use the GB3 160x160 image and have it display on 300x300 on a non-iWeb page I have already.

iWeb lets you adjust the size of any graphical element, including quicktime movies, to any size.
==> www.DirtDoog.com <==</a>    
Place A Virtual Pin On Putt-Putt's GuestMap!

Similar Messages

  • How can I make my movies pro for mac work?

    How can I make my movies pro for mac work?
    I have downloaded it i click on the icon but I cant make it work

    Delete the app using this free utlity > Download AppCleaner for Mac
    Then re download the app using the same Apple ID it was originally purchased from. You won't be charged again.
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    If you still have problems, I located the app developer's website. Contact details for help here >   http://www.mymovies.dk/about.aspx

  • How does labview create a hyperlink in a web page?

    Hi
    I was wondering, how does labview create a hyperlink in a web page?
    Thank you.

    Hi,
    What do you wish to do?
    The most primitive way is to generate a .HTML file.
    Type your HTML codes (Using string constant) and save it using "Write Chars To File.vi" using a filename with extension .html
    Hope I am addressing your question.
    Cheers!
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com

  • How do i make a navigation bar for all pages

    Hi friends !
    I want the same navigation bar to appear on all the web pages of my website. (As these are the common things that all the webpages will have). But I didn't find any option to use the navigation bar as a template.
    Will I have to copy and paste the same navigation bar on all the pages (let's say 50 to 60 pages, I will have). It will be very tiresome and tedious job to do.
    And also if I make even a minor change in the navigation bar then I will have to change it in all 50-60 pages.
    What should I do ?
    Please help me in this regard.
    Imagine a 100 or 200 page site, perfectly functioning and on the air. Then, one day, you need to add or delete some button, or simply change a link. You need to change the menubar in ALL 200 pages, and then re-publish them all. Quite a work, ah ?
    Regards,
    Jtechmiami

    Although Dreamweaver Templates and Library items are suitable tools for doing this, they're tedious and cumbersome at best. They get old very quickly.
    By far the most efficient method is to set your navigation bar up as a Server Side Include (SSI).
    SSIs are not Dreamweaver specific, they're a general web technology available on any server.
    A good primer here
    http://www.projectseven.com/products/menusystems/pmm2/ug-examples/includes/index.htm
    Do you already have a hosting account? Does it have PHP available?
    jtechmiami wrote:
    Imagine a 100 or 200 page site, perfectly functioning and on the air. Then, one day, you need to add or delete some button, or simply change a link. You need to change the menubar in ALL 200 pages, and then re-publish them all. Quite a work, ah ?
    Not with SSIs. Simple sitewide menu updates take a few seconds.
    You edit a single text file locally (either button labels or a CSS rule for styling the button), upload (1-2 seconds) and every page on the site is instantly updated.
    Much better than DW Templates.

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified content? The only instructions I find are for the RSS in inspector for blogs or podcasts. All I want is for people to be able to search my site/web pages (that have no blogs or podcasts on them). This must be a common request... or am I crazy? How do I do that?
    Thanks for your help.

    I think I've answered my own question after a few hours of searching:
    http://services.google.com/searchcode2.html?accept=on
    Thank you Google.

  • How do I make a movie wait for a FLV cuepoint

    I'm trying to synch a "talking head" FLV with some graphics,
    so I simply want to get my movie to wait for a cuepoint to begin
    playing again. I'm making it Flash 7 compatible, so I'm using the
    older Media Display component.
    Is there a "stop" and "wait for cuepoint" that would work? If
    someone could give me the actionscript I should paste in the frame,
    it would be greatly appreciated, since I don't really know
    actionscript that well. Thanks.

    I'm sensing that you don't know much actionscript. If you
    want to do much that is really fun and cool you will need to learn
    some.
    Start with the help files. Everytime you use a new component
    or class go to the Actionscript Language Reference or the Component
    Dictionary. Don't try searching it will generally only confuse you
    more.
    This next bit is going to sound silly, but the differences
    are subtle and please take it in the manner it is offered.
    When you say you'd like to pause at a certain frame you mean
    a movieclip that you have, right?
    If you check all the information about the FLVs and the Media
    component you will find there is absolutely nothing that allows it
    to make a movieclip pause or play. But if you check the MovieClip
    class you will find there are the MovieClip.stop() and the
    MovieClip.play() methods. These are the only ways to get a
    movieclip to pause/stop and or play. There are no others.
    So you have most of the answer there in your second post. It
    is just worded a bit off.
    You need a movie to pause (for which you will use the
    MovieClip.stop() method) and when a cuepoint happens you will need
    to start the movie using MovieClip.play();
    If you check the MediaDisplay component directory there will
    be sample code for how to listen for a cuepoint. I'm still using
    Flash 7 so my help files are organized a bit differently, but what
    you are looking for is under Media.cuePoint.
    Notice the code at the bottom of the entry – READ the
    whole entry, even if you don't understand it all now, read it,
    outloud if it helps. You will need to have an instance of the
    playback component on the stage (in this example it is called
    myPlayback, but you could call it whatever you wanted, just make
    sure that both names are the same.
    I recommend trying this outside of your current project. Set
    up a simple new document, put an instance of the playback component
    on the stage, give it an instance name, assign an FLV to it, give
    it a cuepoint or two, and then add the listener code, just as it
    is. See how it works? Do you get the trace statements?
    Then you can develop it a little further. Add some named
    movieclip to your stage. Add a line myClip.stop(); Also notice that
    you can give your cuepoints names? Put a few in and call some start
    and some stop (or whatever you want.) Then instead of a trace in
    the cuepoint listener have something that says, "If the cuepoint is
    called start I should tell the movieclip to play and if the
    cuepoint is called stop I should tell the movieclip to stop/pause."
    I could easily write all this code out for you, but what
    would be the fun of that for you? Give it your best shot and post
    back as you accomplish things.

  • How does Adobe make their camera  profiles for ACR and Lightroom?

    I'm not interested in the proprietary algorithms , but I am curious as to the photographic mechanics and hardware tools used by  Adobe to make the various camera profiles as they differ markedly from the ones I make using the DNG Profile Editor.
    My methodology is to set an X-Rite 24 patch Color Checker target, light it evenly with electromic flash (with 0.1 stops from center to corners as mesured with a Sekonic L-758r Meter) and make a series of exposures bracketed in third of a stop increments around the meter reading in case the camera sensitivity differs from the meter's.
    I then process the raw files and convert them to the DNG format, select the best exposure and run it through the DNG Profile editor. My results differ from Adobe's generic profiles for that camera enough that that I don't thin kthe difference can be credited to the difference between a generic profile a specific camera.
    How do the different tools work in the DNG converter? Starting with the Options for "Base Tone Curve"? Is there a document a moderately color geeky person can understand that explains this?
    I thin kthe DNG Profile editor is a great and under usedtool. I wish more people knew about it.
    Thank you for your time and consideration.

    Someone who only eats sausage may not want to know how it's made.  Someone who creates things with food, a chef, a cook, or otherwise is thinking about a career in the food industry, might have a interest in such things.  Someone who is thinking of making sausage will want to know all the details.  Someone who is concerned with the public safety might want to know how sasauge is made.
    It would be nice for a sausage maker to give some hints about the process as compared to what each of us can do with the DNG Profile Editor and to the original poster's question, why are our profiles different from Adobe's?
    It is my experience that when I create a profile with the DNG Profile Editor, and then compute the color error for each of the 24 color patches of a CC24, using a program like Imatest, some colors are quite a bit off and some are very close, and the colors that are off, are not the same ones that are off when I compute the color error using one of the Adobe Standard or Camera Standard profiles.
    Is Adobe using more detailed and sophisticated color targets with hundreds of different colors, or if not, do the tools provide more feedback and allow more manual manipulation of the profile and so the differences are due to their judgement about which colors to make "right" and which ones to let have more error associated with them, that can be manipulated by hand instead of merely letting the DNG Profile Editor apparently distribute the error amongst the various colors with some sort of even-handed calculation.
    For example it is easy to imagine that someone tweaking a profile by hand with a live readout of the error of each of the colors plus an overall composite error, might put more emphasis on skin tones being right if they have a background in people photography, or more emphasis on bright colors being right if their experience is in textiles and the current trend in the US is bright colors--and a different emphasis when the trend is muted colors so there is cultrual bias and life-experience coloring a "standard" profile.
    In other words, how much of the difference between Adobe and our profiles are due to Adobe having different or better science, and how much of it is due to Adobe have different or better "artists" who decide what colors to make correct compared to others.

  • How can I make my movies eligible for upload to the cloud

    I have several DVD's that I have purchased and would like to add them to my iTunes collection on iCloud. Yet when I try to upload them to the cloud I get ineligible for the status on my iTunes files.

    iCloud doesn't store your movies (except those done with iMovie and uploaded to its Theater feature).

  • How do I make a publication interactive for web use?

    I have Design Premium CS5.5. I created a publication in In Design and would like to make it interactive (turn pages and search capability) and place it on my website. What software in my Design Premium package would I use to do this?

    There is no such thing. Web design has completely different requirements and fancies like page turns require at least some knowledge of JavaScript programming for instance as a search function would require a dynamic backend infrastructure based on PHP or similar. You basically have to rebuild it from scratch using native web techniques.
    Mylenium

  • How to position a flash movie within a web page?

    Hi guys.
    I have a flash movie that is going to be loaded within
    another flash movie via an xml list.
    How can I set the position to load the inserted movie to the
    center of the page?
    At the moment it loads in the top left hand corner.

    Hi there.
    Thanks for replying.
    the website in question is www,ridethespiral.net and if you
    click on pilot map you will see the error.
    The main (Background) flash file is from a template site so I
    didn't write the code.
    But I think this is it.
    //Function used to load external SWF files and call the
    loader MC -------------------------------------------
    function loadMovieClip (externalTarget:String,
    targetRoot:MovieClip) {
    var mcLoader:MovieClipLoader = new MovieClipLoader ();
    var listenerLoad:Object = new Object ();
    listenerLoad.onLoadStart = function (target:MovieClip) {
    loader._visible = true;
    ZigoEngine.doTween (loader,'_alpha',100,0.5,"easeOutExpo");
    //Loading Progress
    listenerLoad.onLoadProgress = function (target:MovieClip,
    bytesLoaded:Number, bytesTotal:Number):Void {
    percent = Math.round (bytesLoaded / bytesTotal * 100);
    loader.percentTxt.text = percent + "%";
    //On Load Complete
    listenerLoad.onLoadComplete = function
    (target:MovieClip):Void {
    ZigoEngine.doTween
    (loader,'_alpha',0,0.5,"easeOutExpo",0,function () {
    loader._visible = false;
    ZigoEngine.doTween
    (content_container,'_alpha',100,0.5,"easeOutExpo",0,function () {
    content_blocker._visible = false;
    mcLoader.addListener (listenerLoad);
    mcLoader.loadClip (externalTarget,targetRoot);

  • How do I make quicktime movies Fullscreen in iWeb?

    How do I make quicktime movies Fullscreen in iWeb? Can anyone help me please?

    You have to create a QTL file that opens the QT movie in the player. Based on the settings it opens in Full Screen.
    You may want to read this:
    [QuitTime Tutorials and more|http://www.apple.com/quicktime>
    [Launching QuickTime Player from a Text Link |http://developer.apple.com/documentation/QuickTime/QT4WebPage/samplechap/speci al-11.html]
    An alternative is to publish your movies to Vimeo and embed the movie in your page. These movies can play full screen.
    Or use DivX of Flash Video.
    Samples here: http://web.mac.com/wyodor/iFrame/

  • How can I make a bootable disk for Mountain Lion?

    How can I make a bootable disk for Mountain Lion?

    Make Your Own Mountain/Lion Installer
    1. After downloading Mountain/Lion you must first save the Install Mac OS X Mountain/Lion application. After Mountain/Lion downloads DO NOT click on the Install button. Go to your Applications folder and make a copy of the Mountain/Lion installer. Move the copy into your Downloads folder. Now you can click on the Install button. You must do this because the installer deletes itself automatically when it finishes installing.
    2. Get a USB flash drive that is at least 8 GBs. Prep this flash drive as follows:
    Open Disk Utility in your Utilities folder.
    After DU loads select your flash drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    Click on the Erase button. The format process can take up to an hour depending upon the flash drive size.
    3. Locate the saved Mountain/Lion installer in your Downloads folder. CTRL- or RIGHT-click on the installer and select Show Package Contents from the contextual menu. Double-click on the Contents folder to open it. Double-click on the SharedSupport folder. In this folder you will see a disc image named InstallESD.dmg.
    4. Plug in your freshly prepared USB flash drive. You are going to clone the content of the InstallESD.dmg disc image to the flash drive as follows:
    Double-click on the InstallESD.dmg file to mount it on your Desktop.
    Open Disk Utility.
    Select the USB flash drive from the left side list.
    Click on the Restore tab in the DU main window.
    Select the USB flash drive volume from the left side list and drag it to the Destination entry field.
    Drag the mounted disc icon from the Desktop into the Source entry field.
    Double-check you got it right, then click on the Restore button.
    When the clone is completed you have a fully bootable installer that you can use without having to re-download Mountain/Lion.
    Note: The term Mountain/Lion used above means Lion or Mountain Lion.

  • How do I make purchased apps, like numbers,keynote,pages,office pro, show up in "open in" function for email attachments?

    How do I make my purchased apps such as, Pages, Numbers, Keynote, Office Pro, available for opening attached documents in email in the"open in" function?

    Thanks for your reply.
    Anyway, here is what I am trying to do:
    It is for a context sensitive display. I am going to sprinkle command links throughout the system and each link will query the database for a specific string and bring out the results in a pop up window.
    I have a backing bean that does the query and a JSF form (that I am trying to pop up) that uses this bean to display the results.

  • How does this make any sense??

    My husband gets the three bureao FICO subscription....this is on his credit report under "negative factors" HOW does this make ANY sense?!? It has "too many credit accounts with balances" as a negative factor...he has one credit card.... You have too many credit accounts with balances.EquifaxThe FICO® Score considers the number of accounts on a credit report showing a balance.Generally speaking, carrying fewer accounts with balances is considered less risky.For credit cards , your credit report may still show a balance on those cards - even if they are paid off in full each month. The total balance on the last statement is generally the amount that is shown on a credit report. NUMBER OF YOUR ACCOUNTS CARRYING A BALANCE Equifax1 accountFICO High Achievers have an average of 3 credit accounts carrying a balance.

    I think they're trying to say that he doesn't have enough accounts and with only one reporting (with a balance of course), that's their common answer.

  • How does Sun make money from Java? Silly question.

    Hi,
    From what I have read about the J2SE licensing, we are able to download the SDK and develope commercial applications with it for free.
    Have I made a big mistake in my reading? How does Sun make any money from Java?
    Thanks very much.
    Prem.

    related topic
    a lot of companies package a free or trial version of software like
    Rational Rose
    TextPad
    VisualAgeForJava
    DreamWeaver
    etc.....
    the versions may be limited in many ways
    they want public and students to use it to become popular
    students get jobs and convince boss to buy enterprise edition
    they make money
    I didn't mention sun in the above list cause they are special!!!!!
    some other interesting topics include GNU liscence and
    COPYLEFT
    check it out

Maybe you are looking for