User Profile

Collapse

Profile Sidebar

Collapse
Z1P2
Z1P2
Last Activity: Jun 26 '08, 08:53 AM
Joined: Sep 16 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Z1P2
    replied to Using VBS to open a program in XP
    I don't understand how that sets the specific window location and size on the desktop when the program is launched...
    See more | Go to post

    Leave a comment:


  • Z1P2
    started a topic Using VBS to open a program in XP

    Using VBS to open a program in XP

    Someone suggested a while back that I should use VBscript shell to open programs in windows XP and set them in specific locations on the desktop with specific window sizes. However, I have never worked with vbscript before, and do not understand it at all. I'm pretty quick to pick things up though, and if I saw an example of a VBS startup script, I could adapt it for my needs. Can anyone point me to a working vbs script that starts a program in...
    See more | Go to post

  • Z1P2
    started a topic Startup batch file

    Startup batch file

    Hello, I have a batch file on my computer that opens up all the programs that I need to use at work. The batch file works great, except that when it opens the program windows, it they are kind of scattered around and I have to spend a minute or two re-arranging their locations and sizes. Is there a way, through either the batch file commands, or through windows (XP), to make them open up in the location and size that I want?
    See more | Go to post

  • Z1P2
    started a topic float style in external css

    float style in external css

    This may be a stupid question, but I have ran a forum for a while on a free host and used the float styling inside the image tags to style images in the posts. Due to excessive spam and a lack of tools to fight it, I'm now moving my forum over to a phpbb forum (located at www.GeneralAqua ria.net) which does not support css styling of things like that from inside the posts. However, I have determined that I can use classes to call a style from the...
    See more | Go to post

  • Z1P2
    started a topic Open form result in new window

    Open form result in new window

    Hello, I have a donate via paypal button on my site that is actually made with a form. The form has this line in it that directs you to the paypal page:

    Code:
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" OnMouseOver="window.status='Make a donation to support this site'; return true" OnMouseOut="window.status='General Aquaria®'; return true">
    My only problem...
    See more | Go to post

  • Z1P2
    replied to Problem styling a scrollbar inside a frame
    I believe those scrollbars are controlled by the child and not the parent (with the exception of not allowing them via the scrolling="no" command in the parent.

    In the child you would put the styling in the body tag, and you could use something like this:

    Code:
    scrollbar-base-color: #000000; scrollbar-arrow-color: #FFFFFF; scrollbar-3dlight-color: #333333; scrollbar-darkshadow-color: #333333; scrollbar-face-color:
    ...
    See more | Go to post

    Leave a comment:


  • Z1P2
    replied to Object Expected, need help
    Ok, so I changed and simplified the code, everything works now with no errors, with only one problem. If I mouse out before the iframe has finished zooming in, it stays at it's zoomed in size until I re-mouseover and mouseout again. If it absolutely has to work like that, ok, but I'd prefer it not to. I need one command to get this part to work as well, I need an IF statement that checks to see if the mouse is still over the object. Does such...
    See more | Go to post

    Leave a comment:


  • Z1P2
    replied to Object Expected, need help
    Well, if I change just the height and width, then the contents of the frame won't shrink or grow with the frame, it will only change the viewable area. That's why I've got to change the zoom style somehow.

    The effect I'm going for here is to have a background image of (for example) a face, and the iframe will start out super-small, like around 2% of it's original size, and it will be placed over the pupil of the eye without borders,...
    See more | Go to post

    Leave a comment:


  • Z1P2
    replied to Links
    Ok, well neither of those really fit my needs... I could work around it by saving a seperate copy of my index page and renaming it, then linking to that and changing the src on the iframe on (for example) index2.htm

    That way I could use index.htm for most of my advertizing links, and index2.htm for those that are specifically supposed to go to that content. The only drawback is that in order to update the site, I'll have to update...
    See more | Go to post

    Leave a comment:


  • Z1P2
    replied to Object Expected, need help
    Thanks, I changed it to:

    Code:
    <html><head>
    
    <script type="text/javascript">
    
    function ZoomIn() {
      if (document.getElementById('MyIFrame').style.zoom!=' 100%') {
        newZoom= (parseInt(MyIFrame.style.zoom)+10)+'%';
        MyIFrame.style.zoom =newZoom;
        ZoomInID=window.setTimeout("ZoomIn()",1000);
      } else {
        window.clearTimeout(ZoomInID);
    ...
    See more | Go to post

    Leave a comment:


  • Z1P2
    started a topic Object Expected, need help

    Object Expected, need help

    Line 22 Char 1 says object expected in the following code. For the life of me I can't figure out what it is. I'm sure I'm just overlooking some stupid bit of formatting or something.


    Code:
    <html><head>
    
    <script type="text/javascript">
    
    function ZoomIn() {
    if document.getElementById('MyIFrame').style.zoom!='100%' {
      newZoom= parseInt(MyIFrame.style.zoom)+10+'%';
    ...
    See more | Go to post

  • Z1P2
    started a topic iframe gradual zoom

    iframe gradual zoom

    I would like to gradually resize an iframe in an onmouseover event.
    I can easily do it with an image, but when I try to do it with an iframe, it doesn't do anything. So first of all, is it possible to gradually zoom an iframe, and if so, what am I missing?


    Here is the script I am trying to manipulate, between the head tags:

    Code:
    <script language=JavaScript>
    
    /**** adjust these two
    ...
    See more | Go to post

  • Z1P2
    replied to Links
    Thanks for the reply, but that only works if I'm trying to link to it from the main page. The question was meant to be how to link to it from off-site. Sorry, I should have clarified that.

    For example, if I have www.mysitename.com and once I'm on that page, I click a link and it changes one of the iframes on that site... now I also have www.mysitename2.com and I want to put a link on there that links to mysitename.com and have it...
    See more | Go to post

    Leave a comment:


  • Z1P2
    started a topic Links

    Links

    Is it possible to link to a link on a web page?

    For example, I have a site that uses lots of iframes, and you actually surf the entire site within an iframe... only problem is I havn't figured out how to link to site and have it start at a different iframe.

    If so, what would that link look like?
    See more | Go to post

  • Z1P2
    replied to Protecting source code
    in PHP
    I just don't want people copying the site. A couple years ago I put up a site with some new features that wern't on any other similar sites, but within a month, everyone else had copied those features so their sites would "steal" the web traffic of people interrested in sites with those features.

    I am once again adding some new features that arn't on those other sites, and I would like to make it at least a little more difficult...
    See more | Go to post

    Leave a comment:


  • Z1P2
    replied to Protecting source code
    in PHP
    So then basically doing what I suggested wouldn't have any desirable effect?
    See more | Go to post

    Leave a comment:


  • Z1P2
    started a topic Protecting source code
    in PHP

    Protecting source code

    Hello, please forgive me for posting such a basic question. I have a website up already, that is not PHP. I don't know enough about PHP to re-do the whole thing in PHP, but I would like to protect the source code better than the disabled right click method. As I understand it, if the pages were in PHP surfers wouldn't be able to use the view source in the toolbar either. So what I'm wondering is this, if I had a very basic PHP page that did nothing...
    See more | Go to post

  • Z1P2
    replied to Changing an iframe
    Yes it does, and for the reference of others, if you are using a drop down form, it would look like this:

    Code:
    <FORM name="Whatever name"><SELECT size=1 name="URL" onChange="if(options[selectedIndex].value)iframe1.location.href=(options[selectedIndex].value)">
    See more | Go to post

    Leave a comment:


  • Z1P2
    started a topic Changing an iframe

    Changing an iframe

    Hello, Dumb question... I have a web page that uses a couple of iframes, and what I would like to do is have a link on the main page that changes an iframe without refreshing the main page. I know it's possible to have a link in one iframe affect another iframe without refreshing the parent because that's the way I've been doing it up til now, but can a link on the parent affect an iframe without refreshing it so that I can get rid of the iframes...
    See more | Go to post

  • Z1P2
    replied to multiline alert not working
    ohh, thank you very much. It works great now!
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...