Help with using frames for animation

I am using frames to animate webpage using fireworks 4 (I
know, hopelessly outdated). I seem to have two different
collections of frames that interact- one for the main image, and
one for the slice I'm trying to animate as a GIF. I can't seem to
change the time delay for each frame when I'm editing the slice.
What can I do to make this work?

Yep you have answered your own question.
Choose export, file export and click the scale images option, and original options (assuming they are already jpegs).
(As you say exporting as webpage creates the page for you but can create images in two sizes (thumnails and main) which can be helpful. The downside the that the filenames for the images as numeric. 1.jpg, 2.jpg etc.)
While a longer process and with no direct control over file size and quality I prefer the file export option as above. It preserves filenames and quality is fine.
and do choose 'original' as you should avoid re-saving a jpeg as a jpeg (that causes a quality reduction)
You will need to manually bring the images into your web pages (save the exported images into your site folder and bring each one into your page individually) unless you are very clever with filenaming!
Hope this helps.
M.

Similar Messages

  • Help with using variable for name of table in PLSQL block...

    I am trying to use a variable for the name of a table but getting errors ...i am sure I am close to the correct form here but something is wrong. I sure would appreciate some help!
    DECLARE
    ln_month Number;
    ln_day Number;
    ln_year Number;
    ls_year VarChar2(4);
    ls_prev_table VarChar2(30);
    ls_cur_table VarChar2(30);
    ln_prev_year Number;
    ls_prev_year VarChar2(4);
    ln_prev_month Number;
    BEGIN
    Select To_Number(To_Char(sysdate, 'MM')) into ln_month from dual;
    Select To_Number(To_Char(sysdate, 'DD')) into ln_day from dual;
    Select To_Number(To_Char(sysdate, 'YYYY')) into ln_year from dual;
    If ln_month = 01 Then
    ls_cur_table := "T_CPRS_FDW_CUR_JAN_ACTUALS";
    ls_prev_table := "T_CPRS_FDW_PREV_DEC_ACTUALS";
    ln_prev_year := ln_year - 1;
    /***above is where I am trying to use variables for assignement to years and months tables***//// ln_prev_month := 12;
    End If;
    /*------MORE IF STATEMENTS FOR EACH MONTH ---OF --THE YEAR ...AND its the following 2 variable statements that the compiler doesnt like! */
    If ln_day < 20 Then
    Delete from :ls_prev_table;
    INSERT INTO :ls_prev_table /*(STUFF TO BE INSERTED GOES HERE)*/
    HELP PLEASE!
    null

    Hi,
    The parser does not under variables directly in dml statements.u need to form a statement and the parse and execute the same...
    so the soln is
    Declare
    lv_stmt varchar2(250);
    Begin
    lv_stmt := 'Delete from '&#0124; &#0124;ls_prev_table;
    execute immediate lv_stmt;
    -- Same is the case with the insert stmt--
    End;
    This should solve ur problem.
    u could also give a direct call like
    execute immediate 'Delete from '&#0124; &#0124;ls_prev_table ;
    Note: This statement "execute immediate" holds good for oracle versions 8.x and above which makes the stmt very simple. For lower version u need to use the dbms_sql package to parse and execute the statement which has a series of statements for the same.
    Kiran

  • Help with using photos for web

    I would like to use some photos I have stored in iphoto library, but I need to reduce them. Reading the help guide, it is indicate to export to web page. But in that case it opens automatically a new web page. How can I export to a page that I have already created?
    Moreover what I do not understand is how can I reduce the dimension of the photo without changing the quality? This can be done in iphoto with export?
    I am a little bit confused...
    thanks for help

    Yep you have answered your own question.
    Choose export, file export and click the scale images option, and original options (assuming they are already jpegs).
    (As you say exporting as webpage creates the page for you but can create images in two sizes (thumnails and main) which can be helpful. The downside the that the filenames for the images as numeric. 1.jpg, 2.jpg etc.)
    While a longer process and with no direct control over file size and quality I prefer the file export option as above. It preserves filenames and quality is fine.
    and do choose 'original' as you should avoid re-saving a jpeg as a jpeg (that causes a quality reduction)
    You will need to manually bring the images into your web pages (save the exported images into your site folder and bring each one into your page individually) unless you are very clever with filenaming!
    Hope this helps.
    M.

  • Help with using MACROS for mac

         I have a serious issue and not sure if Im in the right place. i just started school. I am try to using the riverpoint writer on my mac, but for some reason it keeps saying that it cant load visual basic for application. Has anyone had this problem and if so can you tell me how you resolved it. that you for your help in advance.

    I must say sir I went thru it trying to get something that worked with riverpoint writer. And guess what I had to do in order for it to work on my macbook. REINSTALL OFFICE FOR MACS, thats all. Now its up and running and I am please, after searchin and spending unneccesary money on products that I did not need after all. Thank you for steering me wrong, to where I almost gave up.

  • Help with Simple Applescript for Midipipe

    Hey all, I'm in desperate need of help with some Applescript for use in a program called Midipipe:
    http://web.mac.com/nicowald/SubtleSoft/MidiPipe.html
    I simply require an Applescript for Midipipe that filters out all OFF notes except for the most recently pressed key, or most recently pressed ON note. So for example, when multiple keys have been pressed, only the most recently pressed key will send an OFF note. I hope that is clear enough, i've had some major issues trying to get this work and my last hope is to hit the forums and find some help .. I've posted on some of the audio forums and i'm hoping someone here knows how to code this.
    Thanks so much!! .. Its for an upcomming show next week so i'm hoping someone can get me in the right direction to solving this.
    -Jes

    I try to help, but you'll need to apply your brain cells to get it working with what I've already explained (three times with what I offer below).  Try something like the following (I am renaming your buttons to ch1,ch2,ch3,ch4,ch5,ch6 so that the same functions can be shared by all buttons...
    // this assigns listeners to all 6 buttons
    for(var i:uint=1; i<7; i++){
              this["ch"+String(i)].addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint);
    // this processes any one of the 6 btns when they are clicked
    function fl_ClickToSeekToCuePoint_1(event:MouseEvent):void
        var btn = event.currentTarget;
        var cuePointInstance:Object = vid.findCuePoint(btn.name);
        vid.seek(cuePointInstance.time);
       resetButtons();    // this makes all buttons go back to normal
        btn.upState = btn.overState; // this makes the clicked button change states
    function resetButtons():void {
         for(var i:uint=1; i<7; i++){
              this["ch"+String(i)].upState =  this["ch"+String(i)].hitTestState;
    For this to work, your buttons need to have the same artwork in the hit frame as they do in the up frame.

  • HELP HELP HELP with adminstrator password for pavilion dv7 beats audio

    Hi. I need help with  adminstrator password for pavilion dv7 with window 7. I don't remember with is the  adminstrator password for pavilion dv7 beats audio. Is there anyway you can help me with this? once i enter 3 times is gives me this system disabled code: 52464663.  

    Hi
    Try this Key : 43542265 That should fix your issue 
    Hope this helps.
    ***** Click the KUDOS Thumbs UP (Like) on the left to say 'Thanks'*****
    ****Make it easier for other people to find solutions, by marking my answer “Accept as Solution”&"Kudos"if it solves your problem.****
    -VJ
    Although I am an HP Employee, I am speaking for myself and not for HP.

  • I still need help with the Dictionary for my Nokia...

    I still need help with the Dictionary for my Nokia 6680...
    Here's the error message I get when trying to open dictionary...
    "Dictionary word information missing. Install word database."
    Can someone please provide me a link the where I could download this dictionary for free?
    Thanks!
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

    oops, im sorry, i didnt realised i've already submitted it
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

  • How do i create an animation with one frame for each layer?

    I have 76 sequential images that i've loaded as layers using bridge, then aligned using photoshop.
    I would now like to create a 76 frame animation with one animation frame for each layer
    (the layers are in sequential order).
    is there an easy way to do this
    or do i have to create 76 frames (can duplicate multiple to speed it up)
    then set layer visibility for each frame?
    thanks
    bill w
    astro.whwiii.net

    thanks for all the replies
    got it
    here's a rough draft of 2 hours of sunshine
    http://whwastro.homestead.com/files/big/31-05-2014-prom-animation.gif
    -bill w
    astro.whwiii.net

  • Combining APEX help with a frame-like TOC html help system (I used DITA)

    Problem:
    The APEX page-oriented help system is bad at helping users find how to do something. I prefer to use a task-oriented help system for that, with a table of contents that users can browse around in. I like the DITA (Darwin Information Typing Architecture) system's topic based help with its ideas of tasks, concepts and references. But, I also like the context-based feel of a page-based help system and the way that the APEX help system automatically aggregates all of the item-based help on a page for you.
    My Solution:
    I'm no html genius, so this may be totally wrong, but what I did was to create a task oriented html user guide that also included a page based help TOC entry for each page. I then used iframes in the APEX help page to allow me to have a TOC always showing with links that controlled a content "pane," but still also display the automatically-generated item help for the page help is called from.
    * Downloaded the DITA open toolkit (http://sourceforge.net/projects/dita-ot ), full package distribution and installed using the user guide (http://dita-ot.sourceforge.net/doc/ot-userguide131/xhtml/ )
    * Downloaded and installed XMLmind XML editor free personal edition version ([http://www.xmlmind.com/xmleditor/download.shtml]). I'm not endorsing this thing, but it's free and it works great out of the box for editing DITA files.
    * Created an html user guide by modifying the garage sample that's included with the DITA open toolkit and publishing to xhtml (I also published to pdf2, by the way, to provide a printable user guide for my users to download...one of the nice things about DITA). I set up my files so that they would all be in a topics subfolder, rather than the standard task, concept, and reference folders of the example. I did this so that I wouldn't have to worry about linking to a different folder from APEX (more on that later). I made a concept topic for each page of my application with the filename "Concept_About_page_X.dita," where X is the APEX page number.
    * I run APEX using Oracle Application Server 10g, so I uploaded the files to a subdirectory of their own in the i/ folder on the OAS server. In my case this was APPSERVER_HOME/apache/apache/images/doc/MyAppHelp/
    * The DITA toolkit generates html pages that look for a CSS called commonltr.css, located at the same level as the index.html file. I copied my APEX theme's CSS file to that same place and renamed it commonltr.css (in my case that was APPSERVER_HOME/apache/apache/images/themes/theme_13/theme_V3.css). Now, the proper thing to do would be to configure DITA to point at the real location of the theme's CSS, I guess. But I didn't want to figure out how to do that at this point.
    * Now, in APEX, I deleted all of the page-level help text from my pages, since I had now duplicated this information into the DITA page concept topics. Instead, on each page I put
    * On the help page (the page that you create when you're first setting up Help in APEX, mine is page 50), I added the following iframe tags in the header text of the page: \\      &lt;iframe src="../../i/doc/gradevalhelp/index.html" width="40%" height="50%" align="left"&gt;&lt;/iframe&gt;&lt;iframe name="contentwin" src="../../i/doc/gradevalhelp/topics/Concept_About_page_&REQUEST..html" width="60%" height="50%" align="right"&gt;&lt;/iframe&gt;&lt;br&gt; \\      Note the &lt;br&gt; at the end. I had to put that in to prevent the item level help from printing over my content iframe. Again, someone who knows something about html could probably tell you the right way to do that. The DITA toolkit generates a base tag (&lt;base target="contentwin"/&gt;) in the head section of the index.html file, to make the target of the TOC links be the content frame. Notice how I use it to map the links in the first iframe to the second iframe on the APEX help page, by naming the second frame "contentwin". Notice how the &REQUEST. Substitution string is used to present the proper DITA html file. I also tried setting it up to use a calculated hidden item that looks up the page alias for the requesting page; this had the advantage of allowing me to name my DITA files using page alias instead of page number, but it was too slow.

    Look at all the apdiv's you have.  Those are absolutely positioned layers.  I'm assuming by your post that you are very new to Dreamweaver and HTML and CSS.  I would highly recommend not using absolutely positioned layers until you have a better grasp on HTML and CSS.
    Looking at your code I would suggest that you consider using one of Dreamweaver's built in, or downloadable templates as a starting point and work from there. 
    http://www.adobe.com/devnet/dreamweaver/articles/dreamweaver_custom_templates.html

  • Help with new computer for Photoshop Use ?

    I am going to upgrade my laptop (prefer using laptop for various reasons) and I have the choice of two laptops. Yeah one is more expensive and is a gaming laptop but I just want to know which will work best with Photoshop CS6
    The two laptops I have the choice of and I don't want any other suggestions please as I only have these to choose from are:
    HP Envy DV7
    (details here)
    Samsun Series 7 Gamer
    (details here)
    The specs might not say but they both come with Win8 64 Bit
    I know the Samsung is a high end gaming laptop but that dosent mean it will be great at photoshop and would the cheaper HP do photoshop just as well for less money ??
    I would greatly appreciate any help and advice
    thanks

    Honestly, one cannot hope to advise you reasonably on how best to run an application as complex as Photoshop without your having stated any of your needs or goals.  Pretty much any modern computer will be able to run Photoshop.  But...
    What kind of work products are you going to want to make with Photoshop?
    Big images? Small images? Huge images?
    Are you planning to do things that rely heavily on the GPU?  3D?
    Are you going to work with an external monitor?  Is color-management important to you?
    CS6_User wrote:
    would the cheaper HP do photoshop just as well
    That's a kind of meaningless question.
    It's akin to asking, "Would a Dodge take me to the store better than a Ford?"
    If you're considering doing serious Photoshop work I'd suggest reconsidering a desktop system.  Laptops are typically optimized for things other than what Photoshop needs.
    -Noel

  • Quality issues when importing still images as frames for animation

    hello,
    i've imported roughly 600 hand-drawn and scanned (600 dpi) images as frames for video. the images themselves are really crisp and perfectly how i want them to appear. i've imported each to play for 2 frames then move to the next. once done, i save this video file as an .avi. i then repeat the process in order to layer the video (using Calculations filter) over and over again, to fill up the screen with overlapped, layered animations. in theory, these layers should all remain crisp, just like the scanned images. i was under the impression that the standard Export... > Movie... .avi file is essentially lossless and is best for editing, however when my process is completed, the final product is muddy, grainy, and pixelated. i'm not sure where i am going wrong, as i've actually done this process before with success.
    is there a way to specific the working file as "high definition" or something similar so that the quality is just as crisp as the scanned images i am using as source
    any help is appreciated - i am completely self taught in video editing and it is really bugging me that the file output is not how i envisioned.
    thanks,
    DB

    I note you specified that the images were 600 dpi.  The dot per inch are an issue only for printing a hardcopy.  For video work, the issue is the pixel dimensions and the pixel aspect ratio. If your image is 600 pixels by 400 pixels with a PAR =1.0. If your sequence is 1440 x 1080 with a pixel ratio ratio of 1.33, then the images must be the same and PrPro must scale up the image.  You can get good images from imported stills in PrPro. I prefer to rescale my images using Photoshop.  I am told that the scaling algorithm in PrPro has been improved.  But regardless, if you are scaling up, you will see degradation becauae Prpro has to interpolate between pixels to fill the video frame.

  • Help with system upgrade for CS6

    Hello. I am hoping you can give me some advice on what to do (or buy) to improve my video editing system.  I am a bit of novice when it comes to the technical/hardware end of things and I’m having some issues with my current system. 
    I working in Adobe CS6 Master Suite on a Windows 7 Ultimate PC.  I mainly use Premiere Pro, After Effects, Photoshop, and Audition.  I create very complete animations and videos with many layers and effects (via Boris & Red Giant).  I also use Skype to record group video calls (with the program Evaer) for a reality T.V. recap show which I also edit with my Adobe suite.  However I have two main problems.
    When I render out a 20 minute premier pro project (with several HD video layers and effects) it takes almost 13 hours.  It seems like this is very long considering my high end components, and set up.  For example I run ONLY my OS off an SSD.  My programs are on another SSD.  The files I use for the video are on another HDD, and I render to another HDD.  I was told by keeping all the aspects on separate hard drives it would speed everything up.  Is that true?  I also am now reading that rendering to a SSD would speed things up.  Should I consider changing my workflow/hard drive set up that way? 
    My other problem is that when I record my Skype group calls of 4 people (with Evaer) to my SSD the audio is always off when I bring it into Premiere.  I don’t know if this is a problem with Evaer, a codec (it records it as H.264/MPEG-4 AVC Codec.  At 1280 X 720 and 30fps), that SSDs auto compress files, or that my system just cant handle it.  Plus Soundblaster & Nvida both seem to active as audio features on my system I don’t know if that effects anything.  Is there any advice any of you have on this issue as well?  Perhaps another program to record skype or group calls?
    Finally… all that aside.  Considering the work I am doing should I just upgrade my system to a better Mobo and graphics card.  I see a lot of people are recommending a dual processor work station.  If so what is a good motherboard, and processor(s) I should get if I build my own workstation?  I have about $4000.00 I could invest in building one if you think would greatly improve my work flow and render times.  I also have a quadro k5000 on the way, and id like to be able to use the memory I have already.
    I realize I am asking a lot of questions.  I would truly appreciate any help, advice or just a point in the right direction.  I have included my current system specs below incase that helps with any of my questions.  If you have any other questions or need more information just let me know.  Thank you again in advance for any help you can provide.
    -Eric
    MOTHERBOARD:
    Gigabyte G1.Assassin  http://www.gigabyte.com/products/product-page.aspx?pid=3752#ov
    PROCESSOR:
    Intel Core i7 X 980
    5 HARD DRIVES:
    (1) SATA II WD (WD15EADS-00P8B0) 3gb Hard Drive @ 1.5TB
    (2) OCZ SATA AGILITY II SSD drives @120GB: http://www.newegg.com/Product/Product.aspx?Item=N82E16820227543
    (2) Hitachi 6gb SATA III drives @2TB: http://www.newegg.com/Product/Product.aspx?Item=N82E16822145473
    3 DVD/CD/BLUERAY DRIVES:
    (1) SATA DVD DRIVE
    (1) SATA BlueRay Drive
    RAM:
    24GIGs of this ram: http://www.newegg.com/Product/Product.aspx?Item=N82E16820145321
    GRAPHICS:
    (1) NVIDIA GeForce GTX 680  http://www.geforce.com/hardware/desktop-gpus/geforce-gtx-680
    SOUND CARD:
    NONE DEDICATED: But Onboard Creative Soundblaster X-Fi Digital Audio Processor (20K2) with X-Fi Xtreme Fidelity™ and EAX® AHD 5.0™ Technologies built into MoBo.
    PLUS: NVIDIA High Definition Audio
    CONTROLLERS:
    Microsoft ISATAP Adapter
    Intel(R) ICH10R SATA AHCI Controller
    Realtek PCI GBE Family Controller
    Marvell 91xx SATA 6G Controller
    Renesas Electronics USB 3.0 Host Controller
    MY HARD DRIVE SETUP:
    *I also have a network server which I use to back up files, and access files across my other systems. 

    Eric,
    I would hardly call the Quadro card an upgrade to a GTX 680!
    Regarding getting more speed from a faster MB / CPU, since you already have a 6-core rig with 24GB of RAM I would think that any gains you would get would not be that dramatic.
    Check out your cpu usage (Task manager) and see how busy your cores are during a test render. I am guessing that the Boris and / or Red Giant effects could be jumping your projects from gaining the full multi-core capabilities of the Adobe software.
    Regards,
    Jim

  • Correct way of using LayeredPane for animation

    Hi,
    before I post my questions some background info (it has become quite a long story sorry for that, you can skip to the bottom if you want):
    i'm not an expert java programmer so I appologize for any stupid questions or remarks.
    Currently i'm implementing a road traffic simulation. Cars drive over roads, intersections etc. To make the movements/animation look smooth i've used doublebuffering or page flipping (I'm not sure while I used the getBufferStrategy() from a JFrame: strategy = frame.getBufferStrategy(); )
    To add my own JButtons created from .png file I've switched off the RepaintManager by creating a NullRepaintManager. The simulation thread is responsible for calling the repaint function, which is done every few milliseconds after the positions of the cars are updated. These buttons are added to the ContentPane of the frame which is made non-opaque to make the roadnetwork and cars visible (*i don't understand this)
    Btw I've 'borrowed' these ideas from 'developing games in java ' from Brackeen: http://www.brackeen.com/javagamebook/
    The roadnetwork and cars are drawn on the a Graphics2D by calling: (Graphics2D)strategy.getDrawGraphics(); first I draw an image of the roadnetwork to clear the old vehicle positions and then the new positions of the cars are drawn. after that the screen/frame is updated: strategy.show();
    This all works fine.
    The problems start when I want to have a popup JPanel to appear on the screen after I clicked somewhere on the roadnetwork. According to Brackeen this can be done by initializing a JPanel and add it to the LayeredPane of the JFrame and make it visible when needed. This does not work while the JPanel never pop's up and I don't understand why not, because the demo from brackeen works fine. When I add this JPanel to the contentPane it does popup but the buttons are shifted to the right which is not what i want.
    Also I want to add a JMenuBar to the frame, i thought I could simply used: frame.tsetJMenuBar(menuBar);
    however the menubar shows up next to my custom JButtons....
    ====>My Questions:
    What is the correct way to draw smooth animations inJava without slowing down the whole program when quite a large area has to be draw... this seems to happen e.g. in the Java demos: ..\jfc\Java2D
    How can I popup JPanels or internalFrames ontop of the animation?? probably by using the LayeredPane?
    I also want to add a JMenuBar in the normal position.
    Sorry for the long text and questions... but I'm struggling for almost two month with this now (using an increadible number of java books) and haven't solved it yet.
    Any suggestions are welcome Thanks in advance!!
    Rens

    It gets the first address from the pxelinux.0, another one is usually handed down after it boots, but sometimes it reuses it again. 
    Usually what happens on a diskless system is it tries to use the dhcpcd lease from the last diskless workstation (or possibly reuses the same one it gets from pxelinux.0).  But it has enough logic built into that it looks for another unique address for the next diskless workstation. 
    Do you have your pxeclient.cfg/default appended options set correctly to be ip=::::::dhcp? 
    Of course from the diskless wiki:
    label archxx
    kernel archxx/boot/vmlinuz-linux
    append init=/usr/lib/systemd/systemd initrd=archxx/boot/initramfs-linux.img root=/dev/nfs rootfstype=nfs nfsroot=xx.xx.xx.xx:/srv/tftp/archxx,v3,rsize=16384,wsize=16384 ip=::::::dhcp

  • Must I use frames for this?

    I have some external links that I'd like to keep within a
    site versus opening a new browser window (for branding purposes).
    Do I need to set up a page with frames to essentially bring those
    sites into my main content area?
    Thanks!
    Eric

    This is a multi-part message in MIME format.
    --------------050207030400080007010702
    Content-Type: text/plain; charset=ISO-8859-1; format=flowed
    Content-Transfer-Encoding: 7bit
    sorry, i left this part out of my last message, and just
    wanted to
    mention that i'm aware of the page history button next to the
    back
    button that allows you to choose which page to go back to,
    and use it
    often. but many people do not know about that handy option,
    and would
    instead just keep clicking the button until they get back to
    where they
    want to be.
    that's all!
    courtney (n h c) wrote:
    > sorry, but i disagree. what if the visitor is taken to
    the other site
    > and starts clicking around in that site? then they have
    to click the
    > back button who knows how many times to get back to the
    page they were
    > on to begin with. i, personally, would much rather just
    have to click
    > the close button once on the new tab or window, than
    click "back"
    > however many times it takes me to back to the original
    page.
    > obviously, everyone has their own preferences, but i'm
    gonna have to
    > go with one click over several on this one. not to
    mention, what if
    > the new site has some kind of form on it that they fill
    out? i doubt i
    > have to tell you what happens with a lot of forms when
    you try to
    > click back to where you were before the form.
    >
    > also, what if the visitor gets caught up in the new
    website and
    > forgets where they started in the first place? the back
    button won't
    > help then. they're just gone. and my company has lost a
    potential
    > customer. but if the new site is in a different tab or
    window, when
    > they close it they'll see my site again, and be all
    like, "oh yeah! i
    > was looking at this site before. guess i'll look at it
    some more."
    >
    > i guess i'm not so worried about people who don't notice
    when a new
    > window or tab is opening. it's fairly obvious when that
    happens. and
    > if it's that much of a concern, you can add an alert
    pop-up that lets
    > them know the link is opening a new window. i have a
    link on one of
    > the websites i work on that has an alert that says
    something like
    > "this link is opening a different website in a new
    window. close that
    > window to return to this site." i did this because
    having it open in
    > the same window was confusing people. they thought the
    new site was
    > part of ours.
    >
    > i'd be interested in other people's thoughts on this.
    >
    > Michael Fesser wrote:
    >> .oO(courtney (n h c))
    >>
    >>
    >>> yeah, that would probably be the only way to do
    it. but i'd recommend
    >>> just opening them in a new window. i've done it
    with frames before, and
    >>> it just doesn't work well. you're basically
    trying to fit one website
    >>> into another, and it generally looks horrible
    (not to mention the
    >>> various drawbacks involved in using frames in
    general). i understand the
    >>> desire to keep people on your site, but you can
    achieve that by having
    >>> the links open in a new window/tab, because your
    site will still be
    >>> there when the visitor closes the new
    window/tab.
    >>>
    >>
    >> It's an illusion that you can keep visitors on your
    own site if you open
    >> external links in a new window. People know how to
    use a "back" button -
    >> it's the second-most used function in a browser. New
    windows/tabs might
    >> even be confusing, because they break(!) this
    important function.
    >>
    >> Frames and the 'target' attribute are not allowed in
    all strict (X)HTML
    >> standards for good reasons. It's best to simply link
    to the other site,
    >> without trying to mess with how or where the browser
    will display it.
    >> Let the browser and the user decide such things.
    >>
    >> <a href="
    http://example.com">another
    site</a>
    >>
    >> That's it. Can't get easier.
    >>
    >> Micha
    >>
    --------------050207030400080007010702
    Content-Type: text/html; charset=ISO-8859-1
    Content-Transfer-Encoding: 7bit
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta content="text/html;charset=ISO-8859-1"
    http-equiv="Content-Type">
    </head>
    <body bgcolor="#ffffff" text="#000000">
    sorry, i left this part out of my last message, and just
    wanted to
    mention that i'm aware of the page history button next to the
    back
    button that allows you to choose which page to go back to,
    and use it
    often. but many people do not know about that handy option,
    and would
    instead just keep clicking the button until they get back to
    where they
    want to be.<br>
    <br>
    that's all!<br>
    <br>
    courtney (n h c) wrote:
    <blockquote cite="mid:[email protected]"
    type="cite">
    <meta content="text/html;charset=ISO-8859-1"
    http-equiv="Content-Type">
    <title></title>
    sorry, but i disagree. what if the visitor is taken to the
    other site
    and starts clicking around in that site? then they have to
    click the
    back button who knows how many times to get back to the page
    they were
    on to begin with. i, personally, would much rather just have
    to click
    the close button once on the new tab or window, than click
    "back"
    however many times it takes me to back to the original page.
    obviously,
    everyone has their own preferences, but i'm gonna have to go
    with one
    click over several on this one. not to mention, what if the
    new site
    has some kind of form on it that they fill out? i doubt i
    have to tell
    you what happens with a lot of forms when you try to click
    back to
    where you were before the form.<br>
    <br>
    also, what if the visitor gets caught up in the new website
    and forgets
    where they started in the first place? the back button won't
    help then.
    they're just gone. and my company has lost a potential
    customer. but if
    the new site is in a different tab or window, when they close
    it
    they'll see my site again, and be all like, "oh yeah! i was
    looking at
    this site before. guess i'll look at it some more."<br>
    <br>
    i guess i'm not so worried about people who don't notice when
    a new
    window or tab is opening. it's fairly obvious when that
    happens. and if
    it's that much of a concern, you can add an alert pop-up that
    lets them
    know the link is opening a new window. i have a link on one
    of the
    websites i work on that has an alert that says something like
    "this
    link is opening a different website in a new window. close
    that window
    to return to this site." i did this because having it open in
    the same
    window was confusing people. they thought the new site was
    part of
    ours. <br>
    <br>
    i'd be interested in other people's thoughts on
    this.<br>
    <br>
    Michael Fesser wrote:
    <blockquote
    cite="mid:[email protected]"
    type="cite">
    <pre wrap="">.oO(courtney (n h c))
    </pre>
    <blockquote type="cite">
    <pre wrap="">yeah, that would probably be the only way
    to do it. but i'd recommend
    just opening them in a new window. i've done it with frames
    before, and
    it just doesn't work well. you're basically trying to fit one
    website
    into another, and it generally looks horrible (not to mention
    the
    various drawbacks involved in using frames in general). i
    understand the
    desire to keep people on your site, but you can achieve that
    by having
    the links open in a new window/tab, because your site will
    still be
    there when the visitor closes the new window/tab.
    </pre>
    </blockquote>
    <pre wrap=""><!---->
    It's an illusion that you can keep visitors on your own site
    if you open
    external links in a new window. People know how to use a
    "back" button -
    it's the second-most used function in a browser. New
    windows/tabs might
    even be confusing, because they break(!) this important
    function.
    Frames and the 'target' attribute are not allowed in all
    strict (X)HTML
    standards for good reasons. It's best to simply link to the
    other site,
    without trying to mess with how or where the browser will
    display it.
    Let the browser and the user decide such things.
    &lt;a href=<a moz-do-not-send="true"
    class="moz-txt-link-rfc2396E"
    href="
    http://example.com">"http://example.com"</a>&gt;another
    site&lt;/a&gt;
    That's it. Can't get easier.
    Micha
    </pre>
    </blockquote>
    </blockquote>
    </body>
    </html>
    --------------050207030400080007010702--

  • Help with if statement for a beginner.

    Hello, I’m new to the dev lark and wondered if someone could point me in the right direction.
    I have the following (working!) app that lets users press a few buttons instead of typing console commands (please do not be too critical of it, it’s my first work prog).
    //DBS File send and Receive app 1.0
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.BorderLayout;
    import java.awt.FlowLayout;
    import java.awt.Font;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JCheckBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    import java.applet.Applet;
    public class Buttons extends JFrame
         public Buttons()
              super("DBS 2");          
              JTextArea myText = new JTextArea   ("Welcome to the DBS application." +
                                                           "\n" +
                                                           "\n\n1. If you have received an email informing you that the DBS is ready to dowload please press the \"Receive DBS\" button." +
                                                           "\n" +
                                                           "\n1. Once this has been Received successfully please press the \"Prep File\" button." +
                                                           "\n\n2. Once the files have been moved to their appropriate locations, please do the \"Load\" into PAS." +
                                                           "\n\n3. Once the \"Load\" is complete, do the \"Extract\"." +
                                                           "\n\n4. When the \"Extract\" has taken place please press the \"File Shuffle\" button." +
                                                           "\n\n5. When the files have been shuffled, please press the \"Send DBS\" Button." +
                                                           "\n\nJob done." +
                                                           "\n", 20,50);
              JPanel holdAll = new JPanel();
              JPanel topPanel = new JPanel();
              JPanel bottomPanel = new JPanel();
              JPanel middle1 = new JPanel();
              JPanel middle2 = new JPanel();
              JPanel middle3 = new JPanel();
              topPanel.setLayout(new FlowLayout());
              middle1.setLayout(new FlowLayout());
              middle2.setLayout(new FlowLayout());
              middle3.setLayout(new FlowLayout());
              bottomPanel.setLayout(new FlowLayout());
              myText.setBackground(new java.awt.Color(0, 0, 0));     
              myText.setForeground(new java.awt.Color(255,255,255));
              myText.setFont(new java.awt.Font("Times",0, 16));
              myText.setLineWrap(true);
              myText.setWrapStyleWord(true);
              holdAll.setLayout(new BorderLayout());
              topPanel.setBackground(new java.awt.Color(153, 101, 52));
              bottomPanel.setForeground(new java.awt.Color(153, 0, 52));
              holdAll.add(topPanel, BorderLayout.CENTER);
              topPanel.add(myText, BorderLayout.NORTH);
              setSize(700, 600);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              getContentPane().add(holdAll, BorderLayout.CENTER);
              Container c = getContentPane();
              c.setLayout(new FlowLayout());
              final JButton receiveDBS = new JButton("Receive DBS"); //marked as final as it is called in an Inner Class later
              final JButton filePrep = new JButton("Prep File");
              final JButton fileShuffle = new JButton("File Shuffle");
              final JButton sendDBS = new JButton("Send DBS");
              JButton exitButton = new JButton("Exit");
    //          JLabel statusbar = new JLabel("Text here");
              receiveDBS.setFont(new java.awt.Font("Arial", 0, 25));
              filePrep.setFont(new java.awt.Font("Arial", 0, 25));
              fileShuffle.setFont(new java.awt.Font("Arial", 0, 25));
              sendDBS.setFont(new java.awt.Font("Arial", 0, 25));
              exitButton.setBorderPainted ( false );
              exitButton.setMargin( new Insets ( 10, 10, 10, 10 ));
              exitButton.setToolTipText( "EXIT Button" );
              exitButton.setFont(new java.awt.Font("Arial", 0, 20));
              exitButton.setEnabled(true);  //Set to (false) to disable
              exitButton.setForeground(new java.awt.Color(0, 0, 0));
              exitButton.setHorizontalTextPosition(SwingConstants.CENTER); //Don't know what this does
              exitButton.setBounds(10, 30, 90, 50); //Don't know what this does
              exitButton.setBackground(new java.awt.Color(153, 101, 52));     
              topPanel.add(receiveDBS);
              middle1.add(filePrep);
              middle2.add(exitButton);
              middle3.add(fileShuffle);
              bottomPanel.add(sendDBS);
              receiveDBS.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == receiveDBS);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\ReceiveDBSfile.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              filePrep.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == filePrep);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\filePrep.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              exitButton.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        System.exit(0);
              fileShuffle.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == fileShuffle);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\fileShuffle.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              sendDBS.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == sendDBS);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\sendDBSFile.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              c.add(receiveDBS);
              c.add(filePrep);
              c.add(fileShuffle);
              c.add(sendDBS);
              c.add(exitButton);
    //          c.add(statusbar);
         public static void main(String args[])
              Buttons xyz = new Buttons();
              xyz.setVisible(true);
         }What I would like help with is the following…
    I would like output to either a JLabel or JTextArea to appear if a file appears on the network. Something along these lines…
    If file named nststrace*.* is in \\[network path] then output “Download successful, please proceed.”
    btw I have done my best to search this forum for something similar and had no luck, but I am looking forward to Encephalopathic’s answer as he/she has consistently made me laugh with posted responses (in a good way).
    Thanks in advance, Paul.

    Hospital_Apps_Monkey wrote:
    we're starting to get aquainted, but I think "best friend" could take a while as it is still as hard going as I recall, but I will persevere.Heh, it's not so bad! For example, if I had no idea how to test whether a file exists, I would just scan the big list of classes on the left for names that sound like they might include File operations. Hey look, File! Then I'd look at all of File's methods for something that tests whether it exists or not. Hey, exists! Then if I still couldn't figure out how to use it, I'd do a google search on that particular method.

Maybe you are looking for

  • Drill down to a fact detail

    I am trying to figure out how to drill down from a dimension heirarchy to a fact detail. It just does seem to work. I have Manager ---Project manager Then projects facts The totals by project manager work well, but I tried creating another level belo

  • Connection recv error in jolt connection

    Hi, We have Java GUI client connecting to the Tuxedo server thru Jolt. When we try to do some operation that connects to server after the GUI is idle for a about an hour we get Jolt error "Connection recv error" , sometimes we also get the error "Con

  • Looking to sell my iPad Air - 16GB - CHEAP

    So i recently purchased the new MacBook on my Amex at 0% interest  And I really dont have use for my Ipad Air now. Ive had it about a year and love it. Basically used it for netflix and web surfing. I have the original box and its been in an otterbox

  • CcBPM manually cancel error flows

    Hello, I'm testing a new BPM process and I'm using SXMB_MONI_BPE --> "Restart Processes after Error" to restart the messages in bulk after a new change. Now I have about 10.000 messages wich do not have to be restarted and should get a "Manually Canc

  • Can't login after 10.5.6 upgrade

    Yesterday I upgraded my iMac 2 GHz to OS 10.5.6. It worked fine in the beginning, but today the Mac started to behave slow and strange (couldn't click on anything). I had to force quit. But then I couldn't login again. When the login window appears,