Iweb page with social media links - HOW??

I saw a page with a .me address so i think it is a IWB page that was only one page. A picture background and icons on the left for social media sites. When you click on the the information would show up on the right side of the page. How is that done in Iweb??

Web.me.com is not the .me TLD. It's the .com TLD.
http://en.wikipedia.org/wiki/.me
And web.me.com does not automatically means iWeb.
Look at the source.. Do you see :
<meta name="Generator" content="iWeb 3.0.2" />

Similar Messages

  • Latests update adds a new tab with social media links to exsisting home pages. How do I stop this?

    When I open Firefox, my homepages (4) are loaded, then after a slight delay, there a new tab appears with social media links and the new tab is active. I want to stop the new tab from opening!

    Uh-oh, you might have installed an unofficial bundle containing the update. If your download history indicates the source, can you report it here?
    Your "More system details" shows the MySearchDial extension. I recommend removing that, either from the Add-ons page (if possible) or from the Windows Control Panel.
    Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then find MySearchDial and remove it (or at least disable it).
    If necessary, open the Windows Control Panel, Uninstall a Program, and click the "Installed on" column heading to bring recent infections, er, additions, to the top.
    Any luck cleaning it up?

  • How to insert into 2 tables from the same page (with one button  link)

    Hi,
    I have the following 2 tables....
    Employees
    emp_id number not null
    name varchar2(30) not null
    email varchar2(50)
    hire_date date
    dept_id number
    PK = emp_id
    FK = dept_id
    Notes
    note_id number not null
    added_on date not null
    added_by varchar2(30) not null
    note varchar2(4000)
    emp_id number not null
    PK = note_id
    FK = emp_id
    I want to do an insert into both tables via the application and also via the same page (with one button link). I have made a form to add an employee with an add button - adding an employee is no problem.
    Now, on the same page, I have added a html text area in another region, where the user can write a note. But how do I get the note to insert into the Notes table when the user clicks the add button?
    In other words, when the user clicks 'add', the employee information should be inserted into the Employees table and the note should be inserted into the Notes table.
    How do I go about doing this?
    Thanks.

    Hi,
    These are my After Submit Processes...
    After Submit
    30     Process Row of NOTES     Automatic Row Processing (DML)     Unconditional
    30     Process Row of EMPLOYEES     Automatic Row Processing (DML)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    50     Insert into Tables     PL/SQL anonymous block     Conditional
    My pl/sql code is the same as posted earlier.
    Upon inserting data into the forms and clicking the add button, I get this error...
    ORA-06550: line 1, column 102: PL/SQL: ORA-00904: "NOTES": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table EMPLOYEES.
    Is there something wrong with the pl/sql code or is it something else?

  • How can I save a page with all the links for offline reading

    how can I save a page with all the links for offline reading

    Maybe '''Pocket''' is what you want?
    [https://addons.mozilla.org/en-US/firefox/addon/read-it-later/?src=search Pocket (Mozilla Addons)]

  • I'm looking into how apps use the cloud. Would you consider any app with social media access as uploading information to the cloud? e.g. being able to tweet through an app is the same as uploading data to the cloud

    I'm looking into how apps use the cloud. Would you consider any app with social media access as uploading information to the cloud? e.g. being able to tweet through an app is the same as uploading data to the cloud

    Most of us in this forum are users who volunteer on technical issues, and not Adobe employees although they do drop in from time to time. As users we simply have no control over activation and that's why you are not getting responses.
    If you havn't done so,you might try the Muse forums and see if you can get a staff member to look into it. Have your case numbers and phone transcripts handy.
    Last option is to keep calling customer service until you get someone who will help or ask for a supervisor.
    Hope this get resolved,
    Gene

  • Building an iWeb page with expandable thumbnails

    building an iWeb page with expandable thumbnails.  http://web.me.com/apocolibri/Site_2/Current_Exhibition.html
    <Title Edited by Host>

    Hey Old Toad,
    Here's what I'm referring to: http://www.lawrencebeck.com/lawrencebeck.com/Portfolios/Portfolios.html
    I built this page for my site last year and can't remember how I was able to have these thumbnails expand when I clicked on them.  This is what I'm trying to do with the new page.
    Thanks.

  • ORACLE EXPRESS: build a page with multiple forms linked to one table

    hi,
    im using oravle application express. APEX
    i would like to build a page with multiple forms linked to one table (orders) , the page has 4 from  each one with different order_id number (depending on filtering),  and if the order is prepared click yes for each order and this 'YES' should be UPDATED AND SAVED to each order number in the same table with the press of one button.
    i created all the form as (sql query)
    and create one update process
    (UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_1
    WHERE ORDER_ID =:P10_ORDER_ID_1;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_2
    WHERE ORDER_ID =:P10_ORDER_ID_2;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_3
    WHERE ORDER_ID =:P10_ORDER_ID_3;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_4
    WHERE ORDER_ID =:P10_ORDER_ID_4;
    i dont know really if i can do that, but it appear hat it actually saving according to order_id number , but not all the time some time it saved the value as "null".
    please guide me what is the correct way to do this.
    I READ THIS ONE
    http://stackoverflow.com/questions/7877396/apex-creating-a-page-with-multiple-forms-linked-to-multiple-related-tables
    BUT IT WAS FOR MULTIPLE INSERT
    thanks.

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • I keep getting the Firefox start page with Google search. How do I get my homepage back?

    When I click the Mozilla Firefox icon, instead of my homepage I get a starter page with Google search. How can I get rid of the starter page and get my homepage back?
    == This happened ==
    Every time Firefox opened
    == Started about a week and a half ago.

    Hello Linda.
    I fear your problem may be deeper than your homepage gone missing, but you can change your homepage easily by going into Tools > Options > General and entering the address you want in the "Home Page" field.
    I should warn you, however, that the version of Firefox you are using at the moment is outdated and is no longer supported. Please install the latest version for maximum speed, security and functionality. It's completely free, as always. You can get it through Firefox update service (Help > Check for updates...) or at www.getfirefox.com

  • Upload Iweb pages with FCKeditor

    Hi,
    can i upload html , css and Js using editors like FCKeditor?
    where should i embad the JS code ?
    yac

    can i upload html , css and Js using editors like FCKeditor?
    Never heard of that one. Most people upload iweb pages with a standard ftp client or a web editor which has an ftp app built in.
    http://www.pure-mac.com/ftp.html
    http://www.pure-mac.com/webed.html

  • New computer, how can I sync my old published iWeb page with new compuer?

    I had my old macbook stolen a year ago in Italy. I created and published an iWeb page to .mac on that computer. My problem is that I cannot figure out how I can sync my old page on .mac to my new computer so that I can continue to use it and upload pics. Any suggestions? Thanks!

    Hello,
    and welcome the Apple iWeb Discussion Forum.
    Basically you can't figure it out because there is no way to get published pages back into iWeb. iWeb lacks of any html import feature. The only thing you can do is rebuild it by copying and pasting content from the published one to the rebuilt in iWeb. However for photopages that isn't a good idea, it's better to rebuild them from scratch (iPhoto).
    Be sure to make a backup of the domain.sites2 file (where iWeb stores) its files from time to time
    http://alyeska.altervista.org/en/iWebBackupWebsite.html
    Regards,
    Cédric

  • Help! How to e-mail a PDF (from Pages) with active web links!

    I have been working on this for hours without any success! I would be so grateful for a brainy Apple wiz to help me out. I am creating a Pages document that has active web links in it. My goal is to e-mail my document with the active web links in it.
    So - If I export my Pages doc as a PDF to my desktop, the links work great! However - the moment I put that PDF into an email and send it the links become inactive. Is there any way to create a Pages document with web links > Export it as a PDF > Then mail with active (clickable) links? I have tried many times without success.
    If the answer to my question is no, does anyone have a tip for where I can create a PDF and mail it with active links? Will any of the Adobe programs work for this type of thing?
    Thanks so much!!
    Kristen

    Using Pages '09 v4.2.
    I just tested this. Assumption: You have the “Windows friendly attachments” checked in the attachments panel.
    Your Pages document is open. The web links are active. You want to get it into Mail.
    From the Pages menu bar, choose Share > Send Via Mail > PDF.
    Mail will open with a compose window. Your PDF will be attached as a full view document. You see the links present in the PDF.
    Now, click near the web links. This shows your PDF in blue. Now right-button click, and choose View as Icon from the pop-up panel.
    Now mail it to yourself on another account that Mail can open.
    You will see the web links in the PDF.
    Right-button click on a link and from the pop-up menu, choose Open with Safari.
    If you chose Quick Look, it would pop open the PDF and offer to open it further in your default PDF viewer. In my case, it is Adobe Reader.
    If Reader opens this PDF from the Mail attachment, the web links remain active.
    Does this solve your issue?

  • Social media links opening in the same muse window. I'm trying to find a way to get them to open in new tabs.  Anyone know how to fix this problem?

    I know that the settings for Muse are supposed to have links open in new windows but that is not happening.  I've unlinked and linked them again several times.  Actually all of the outside links open in the same Muse window. Help please!! I'm ready to connect the domain but can't bring myself to doing that until I get this fixed.
    Thanks
    Here's the link -  PET PRODUCTS

    Please send me the file at [email protected] with my name in subject line along with this forum link.
    I will have a look.
    Thanks,
    Sanjit

  • OPA Social Media Links (Facebook, Twitter, YouTube, LinkedIn)

    Just wanted to put the word out that anyone who would like to keep up to date on the latest OPA news is welcome to connect with us via social media. Links below.
    Twitter [https://twitter.com/OracleOPA]
    News, events, customer stories, links to new online content.
    YouTube [http://www.youtube.com/user/OraclePAVideos]
    Tutorials, Feature demos etc
    Facebook [http://www.facebook.com/pages/Oracle-Policy-Automation/365522920199101]
    Gossip, jokes and behind the scenes.
    LinkedIn [http://www.linkedin.com/groups/Oracle-Policy-Automation-3431282/about]
    OPA Community
    Keep in touch :-)
    Edited by: Fiona Guy on Jan 24, 2013 4:57 PM

    The OPA Jave code like almost any other out there has a public interface which is documented and a private implementation which isn't There are various ways of hiding the 'private' implementations and indeed the Java SDK do quite a good job at this but I think its fairly safe to say that API's that arn't documented in the JavaDoc aren't documented for a good reason.
    Most (but possibly not all) things you need to do are achievable through the public, documented API's.

  • Social media link in itunes

    Hi Apple
    I love your products
    but why when I hear a great track on my iphone in my library I cant just click to share that to my social media
    You could even have a link to the store so if my followers liked it they could buy it
    All the "radio" apps like pandora sound cloud etc have the feature
    Apple play nice and create a handshake option with the likes of facebook and twitter
    Thanks

    You are not addressing Apple here. This is a user to user support forum. If you want to tell Apple something, then go HERE, and click on the appropriate link.

  • Will iWeb page with total of 28 MB video (4 videos, 7 MB each) load okay?

    My general question is, what is the maximum file size of video for iWeb page that will load relatively quickly? My specific question is: on one page, I plan to have 4 separate videos of approx. 7 MB each.
    Will this page load at an adequate speed? Thank you!

    What do you consider OK? There are a lot of users out there with very slow internet connections which might give up before the videos loaded.
    There is a way to have multiple videos on a page and not have them load until the play button of them is selected. This demo page shows how: Opening Item in a New, Precisely Sized Window. This demo page has 9 videos added that way: PhotoPresenter Animated Slideshow Themes.
    OT

Maybe you are looking for

  • Since I upgraded to Firefox 6.0.1, Facebook pages will not load properly.

    I am using a Mac 10.6.6. Just updated Firefox this week. When attempting to connect with Safari, I am not having any loading issues.

  • Help with Adobe Premiere Pro and AME CS6

    Hi all, First off, i would like to state that i'm pretty inexperienced in video editing, so please keep that in mind when answering or questioning something.I will try to explain my question to the best of my abilities, but please answer in a 'simple

  • Autonomus AP config issues

    Hello, i'm configuring 3 AP 1131, with 2 profile Guest and Inoffice. the 3 AP are going to be connected to a 3560 and they are going to have Vlan and a 2811 is going to be configured as a DHCP.now all i can see when i search for available network is

  • GRC - SOD Conflict Management (SAP Role Substitution)

    Hi, I am looking to see how others handle SAP Role Substitution and SOD conflicts. For example, a person is going to be out on vacation for a few day and assigns their roles to another employees to continue with daily tasks....SOD risks result becaus

  • UML : Customizing default templates ?

    Hi, Can we customize the UML JavaDoc templates used by JDev. The current template has some limitations like not providing paragraph tags and list where needed and we have to go to the source code and manually edit them. It 'll be great if we can chan