Flash Issue index.html - html

I know very little about flash but my news works website it written in this but not working and I've been asked to have a look. The problem is the login page is corrupted and so will not allow you to go past it but thats where most of the website is (My plan is to create a HTML copy of the site) The only html page I see is index.html and when on the page and you click a link, the address bar along the top still remains at index.html, does anyone know how I can get into the flash site (I have this offline) so I can edit the login page and thus copy the code/information.
Thanks for you're time
Ross

It's hard to tell what's wrong without any code, would you care to share the source code with us?
Also, some interpunction would help. It's very hard to make up what you're trying to say here, because everying is one big sentence.

Related

How to make many pages in vs code

So I made 200 line code for a website I'm making and then I made a button to open another page that i will code as well but here is the problem I don't know how to start another page in vs code please help I'm beginner at coding I tried searching in YouTube but nothing helped
It can be hard to learn how to start - but we've all been there. You can do it!
For a brief starter, in VSCode, you can try this, and start learning from this point.
In your first HTML file button, ideally you'll have HTML similar to this: <a href="/file2.html"/>. In VSCode, just create file2.html in the same directory as file1, and add some HTML. It should populate.

Downloading a webpage to computer doesn't fully work

I am trying to download my webpage which I made on WIX. When I use CTRL+S to save the complete webpage and I load the site from my computer, not everything works. Is there some code missing when you save the webpage like this?
The original site looks like this:
https://i.gyazo.com/c4465c93bfcfe19fb07876aed9791d93.mp4
The saved site looks like this:
https://i.gyazo.com/d42aa6bae9e31572e48e42ce8768e784.mp4
So the only thing that is different, is that the background isn't moving and the subscribe box at the bottom is missing at the saved page.
Sorry if this is not the place to ask this, but I thought it might has something to do with the code.
You can view the full html code at the original website (it's too much for the thread) https://jippie1912.wixsite.com/1912sites
well,luckily i got the solution for the problem,but might take too long if your site has a lot of pages.You have to go to all your site pages and download them,so this way you can fix this without any advanced code.Tell me if it worked

Share post on facebook, strange error

I need to implement a facebook share button on a website I am currently developing. The theory is simple and works with a simple link, e.g. https://www.facebook.com/share.php?u=https%3A%2F%2Freddit.com%2Fr%2Fall%2F. This works for me for random pages and my home page.
However, this does not work for all pages of that web site except the home page (/).
Example:
Page http://www.youmatch.global/approach/
Share link https://www.facebook.com/share.php?u=http%3A%2F%2Fwww.youmatch.global%2Fapproach%2F
The sharing dialog states "Object not found". I am already trying for two days but I have no clue what might be the problem.
Any ideas?
You may take look at this page to see what's wrong in your sharer : https://developers.facebook.com/tools/debug/sharing/

Site jumping instead of scrolling on first click

I am a noob on coding. I built my site using a template and modified it with Dreamweaver.
Everything is ok to me except one thing. When the page first loads my first click on anything jumps to that section instead of scrolling to it.
I spent a lot of time reading stuff and testing but still don't have a clue how to avoid it. My site is set to go "Dreamscradle.com" and I think think it should start with "Dreamscradle.com/index.html" How do I set it?
Any help will be welcome, Thanks.
This happens because you enter the site without index.html when clicking a link it will redirect to index.html and then add the anchor. You could rewrite your links without index.html to solve the issue.
for example:
Portfolio
To:
Portfolio

How to open an iframe from clicking an image

I'm wondering if anyone can help me. I'm hoping I can open an iFrame in the centre of my webpage from clicking a picture. So in effect the iframe would be hidden until the picture is clicked. I have a very small and simple upload form on another page that I would like to appear when the user needs to upload and click the picture. I've had a good look round on this site and google in general but not found what I'm looking for, or the basics weren't included because it's common knowledge for most people here. Would there also be a way of closing this when it's finished uploading too? The form currently diverts to the homepage when finished so It would be handy to have a close option as in the end (post successful upload) the iframe contents will be the same as the page it's displayed on.
The best/easiest I have come across has been on w3schools but I have read using html for iFrames is not widely accepted or it isn't the best option cross-browser.
I have been viewing and trying different code but without even the basic knowledge I can't get my head around it.
If anyone is able to help, please assume I'm 5 years old. I'm not daft but in terms of code I'm literally just starting.
Thanks in advance
You would need to add a javascript onclick function to your img tag which would open a new window upon a click. You would pass the window.open function the name of the html file you want to display. Something like this:
<img src="image.jpg" onclick="window.open('welcome.html')">