Enlarging an image on mouseover without using Flash

Enlarging an image on mouseover without using Flash
I use DW MX 2004 with Windows 2000
I want to create the following effect. I have two versions of
an image,
geyso_scr... (which is screen size) and geyso_sm (which is
small). On
mouse-over I want a larger window to open on top of my html
page (but
less than the full screen) and show the larger image file in
whatever
size I have created it.
One mouse-off I want to restore the original image.
I tried this with a straight image swap on the following
page:
http://www.tudo.co.uk/testing/hospiz_stiftung/shell/contents/vorstand/vorstand.html
see row 2, image 1, Peter von Geyso.
This works all right (on mouseover there is a shift of about
1 px) but
the screen sized image has been sized down to the original
image (sm image).
How can I conveniently get the large image hovering on top of
the
existing page?
Can someone recommend a tutorial which describes how this is
done?
Or is there a utility which does it?
On similar lines, a client wants to display a list of items
as text in
comparatively small font. On mouse-over he wants the
list-item in
question to become slightly larger (not only to change colour
etc). Can
that be done without converting the text into images.
Is there any tutorial for that?
(No point in arguing with the client that the text should be
made large
enough to read in the first place. I have tried that in
vain.)
Thanks for your help.
Adrian

netlace design wrote:
> Hey Adrian,
>
> Maybe this will work for you. Take a look here at this
demo
>
>
http://www.cssplay.co.uk/menu/magnify
Hi Netlace Design,
This looks interesting, but where do I get the code for this.
How is it
done without javascript.
Thanks,
Adrian

Similar Messages

  • Attached corresponding image in mouse without using event.target.name in actionscript 3

    Hi,
    AS3:
    How to get general id (or) name from xml loaded images. bcoz, i want to drag and drop that images in generic method. Now, i currently used the event.target.name for each one.
    So, code length was too large. See my code below.
    /*********loading images through xml********/
    var bg_container_mc:MovieClip
    var bg_bg_myXMLLoader:URLLoader = new URLLoader();
    bg_bg_myXMLLoader.load(new URLRequest("xml/backgroundimages.xml"));
    bg_bg_myXMLLoader.addEventListener(Event.COMPLETE, processXML_bg);
    function processXML_bg(e:Event):void {
              var bg_myXML:XML=new XML(e.target.data);
              columns_bg=bg_myXML.@COLUMNS;
              bg_my_x=bg_myXML.@XPOSITION;
              bg_my_y=bg_myXML.@YPOSITION;
              bg_my_thumb_width=bg_myXML.@WIDTH;
              bg_my_thumb_height=bg_myXML.@HEIGHT;
              bg_my_images=bg_myXML.IMAGE;
              bg_my_total=bg_my_images.length();
              bg_container_mc = new MovieClip();
              bg_container_mc.x=bg_my_x;
              bg_container_mc.y=bg_my_y;
              ContentHead.addChild(bg_container_mc);
              for (var i:Number = 0; i < bg_my_total; i++) {
                       var bg_thumb_url=bg_my_images[i].@THUMB;
                        var bg_thumb_loader = new Loader();
                       bg_thumb_loader.load(new URLRequest(bg_thumb_url));
                       bg_thumb_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded_bg);
                       bg_thumb_loader.name="bg_load"+i;
                       bg_thumb_loader.addEventListener(MouseEvent.MOUSE_DOWN, bg_down)
                       bg_thumb_loader.x = (bg_my_thumb_width-18)*bg_x_counter;
                       bg_thumb_loader.y = (bg_my_thumb_height-45)*bg_y_counter;
                       if (bg_x_counter+1<columns_bg) {
                                 bg_x_counter++;
                       } else {
                                 bg_x_counter=0;
                                 bg_y_counter++;
    function thumbLoaded_bg(e:Event):void {
              var my_thumb_bg:Loader=Loader(e.target.loader);
             var sprite:Sprite = new Sprite();
              var shape:Shape = new Shape();
              shape.graphics.lineStyle(1, 0x0098FF);
              shape.graphics.drawRect(e.target.loader.x-2, e.target.loader.y-2, e.target.loader.width+4, e.target.loader.height+4);
              sprite.addChild(shape);
              sprite.addChild(my_thumb_bg);
              sprite.x=4;
              bg_container_mc.addChild(sprite);
              my_thumb_bg.contentLoaderInfo.removeEventListener(Event.COMPLETE, thumbLoaded_bg);
    //  get name for each image. 
    I want to change this code in generic method. do needful.
    function bg_down(event:MouseEvent):void {
              var bg_name:String=new String(event.currentTarget.name);
              var bg_load:MovieClip=event.currentTarget as MovieClip;
              if (event.currentTarget.name=="bg_load0") {
                      var alaska_mc:alaska_png=new alaska_png();
                       addChild(alaska_mc);
                       alaska_mc.x=stage.mouseX;
                       alaska_mc.y=stage.mouseY;
                       alaska_mc.name="alaska_duplicate"+alaska_inc;
                       alaska_inc++;
                       alaska_mc.startDrag(false);
                      alaska_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
                       alaska_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load1") {
                       var lake_mc:lake_png=new lake_png();
                       addChild(lake_mc);
                       lake_mc.x=lake_mc.mouseX;
                       lake_mc.y=lake_mc.mouseY;
                       lake_mc.name="lake_duplicate"+lake_inc;
                       lake_inc++;
                       lake_mc.startDrag(false);
                       lake_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load2") {
                       var mountn_mc:mountn_png=new mountn_png();
                       addChild(mountn_mc);
                       mountn_mc.x=mountn_mc.mouseX;
                       mountn_mc.y=mountn_mc.mouseY;
                       mountn_mc.name="mountn_duplicate"+mountn_inc;
                       mountn_inc++;
                       mountn_mc.startDrag(false);
                       mountn_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load3") {
                       var town_mc:town_png=new town_png();
                       addChild(town_mc);
                       town_mc.x=town_mc.mouseX;
                       town_mc.y=town_mc.mouseY;
                       town_mc.name="town_duplicate"+town_inc;
                       town_inc++;
                       town_mc.startDrag(false);
                       town_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load4") {
                       var water_mc:water_png=new water_png();
                       addChild(water_mc);
                       water_mc.x=water_mc.mouseX;
                       water_mc.y=water_mc.mouseY;
                       water_mc.name="water_duplicate"+water_inc;
                       water_inc++;
                       water_mc.startDrag(false);
                      water_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load5") {
                       var city_mc:city_png=new city_png();
                       addChild(city_mc);
                       city_mc.x=city_mc.mouseX;
                       city_mc.y=city_mc.mouseY;
                       city_mc.name="city_duplicate"+city_inc;
                       city_inc++;
                       city_mc.startDrag(false);
                      city_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load6") {
                        var citywide_mc:citywide_png=new citywide_png();
                       addChild(citywide_mc);
                       citywide_mc.x=citywide_mc.mouseX;
                       citywide_mc.y=citywide_mc.mouseY;
                       citywide_mc.name="citywide_duplicate"+citywide_inc;
                       citywide_inc++;
                       citywide_mc.startDrag(false);
                      citywide_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load7") {
                       var downtown_mc:downtown_png=new downtown_png();
                       addChild(downtown_mc);
                       downtown_mc.x=downtown_mc.mouseX;
                       downtown_mc.y=downtown_mc.mouseY;
                       downtown_mc.name="downtown_duplicate"+downtown_inc;
                       downtown_inc++;
                       downtown_mc.startDrag(false);
                      downtown_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load8") {
                       var powerlines_mc:powerlines_png=new powerlines_png();
                       addChild(powerlines_mc);
                       powerlines_mc.x=powerlines_mc.mouseX;
                       powerlines_mc.y=powerlines_mc.mouseY;
                       powerlines_mc.name="powerlines_duplicate"+powerlines_inc;
                       powerlines_inc++;
                       powerlines_mc.startDrag(false);
                      powerlines_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load9") {
                       var tropical_mc:tropical_png=new tropical_png();
                       addChild(tropical_mc);
                       tropical_mc.x=tropical_mc.mouseX;
                       tropical_mc.y=tropical_mc.mouseY;
                       tropical_mc.name="tropical_duplicate"+tropical_inc;
                       tropical_inc++;
                       tropical_mc.startDrag(false);
                      tropical_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
              if (event.currentTarget.name=="bg_load10") {
                       var waters_mc:waters_png=new waters_png();
                       addChild(waters_mc);
                       waters_mc.x=waters_mc.mouseX;
                       waters_mc.y=waters_mc.mouseY;
                       waters_mc.name="waters_duplicate"+waterthumb_inc;
                       waterthumb_inc++;
                       waters_mc.startDrag(false);
                      waters_mc.addEventListener(MouseEvent.MOUSE_UP, stdrag);
    Please suggest me if any  one.
    Regards,
    Viji. S

    for each loader created, create a movieclip and add your loader to the movieclip.  assign all the properties you want to retrieve later to the movieclip and assign your event listeners to the movieclip.

  • Creating a backlit log without using Flash

    I've posted this in the Adobe Edge forum as I am not quite sure what program I need to use (or learn how to use) to create this effect:
    http://activeden.net/item/xml-text-effect-back-light/47739?WT.oss_phrase=bitfade&WT.oss_ra nk=5&WT.z_author=bitfade&WT.ac=search_list
    to my logo that I created in Adobe Photoshop.  The logo/banner can be viewed at this link:
    Home
    I have exported the various layers as png files into AE but don't see where or how to add this type of effect.  So far I have only figured out how to fade the logo in.  Am I using the wrong program?  If so, what should i be using.  If not, is there a tutorial available to show me how to add lighting effects?
    This is a whole new world to me, so any help is greatly appreciated.

    I'm rather a Luddite so I tend toward low-tech solutions.
    Have you considered a simple gif animation?
    For example I did this Streamside logo with only 19 frames.
    About Us :: Kards by Karen :: Handcrafted Greeting Cards
    Here's another on today's Google search page

  • Is it possible to use smartseek functionalities without FMS(flash media server)??

    Hi,
        Is it possible to use smart seek functionalities to play files local files without using flash media server(FMS).
        I am currently using videoDisplay components but can switch to netStream component if it is possible without FMS.
        As I have to seek frame by frame but the current seek() function doesnot provide that functionality.
        Any kind of suggestion is most welcome.
        Thanks in Advance.

    I'd like to revive this topic as I just purchased an ATV. I do like it but I am becoming very familiar with the limitations of the ATV.
    I used to have a Snyology NAS server but it did not serve/stream the iTunes well enough to my stereo. I have a lot of photos of my children as well as movies and wanted to see more of them so I purchased the ATV as I knew the Syno server/NAS would be bricking soon.
    Once the ATV is loaded it is fine for that content. But if there is other content on other computers well, they have to stream and the content on the ATV is not accessible to anything other than the stereo or TV that the ATV is connected to. So, finally, here is my question:
    Which NAS streams VERY WELL with the ATV? Correct me if I am wrong but the NAS has to have iTunes imbedded within the server; yes? Secondly, is the best solution for serving an ATV as well as having all media content accessible to all LAN computers a Mac Mini?
    So which is it? Please recommend an NAS that can serve iTunes media (music, photos, video) to an Apple TV or is the best solution a Mac Mini which acts like a NAS and streams all media content to the Apple TV and ATV will stream it to HDTV through HDMI , etc.
    The ATV is great with the High Def.., wide screen, Dolby 5.1, HDMI port , etc. Just need a way to have the media accessible to everyone on the LAN as well as serve/stream to an already purchased Apple TV.
    Thanks for the help,
    Cc

  • Was using Flash 8 on a PC now using Flash CS3 on MAC X and having problems

    Hello,
    I'm currently creating a photo gallery displaying thumbnails
    of the original main image.
    I was using Flash 8 on a PC and now am using that same file
    on a MAC OS X using Flash CS3. And now the thumbnails are not
    visible. The main image appears but the thumbnails do not.
    The SWF created with Flash 8 viewed properly but when I
    opened the fla in Flash CS3 the thumbnails stopped appearing and
    I'm not sure what to do?
    Any help or suggestions would be greatly appreciated!
    Thanks

    Whoops, maybe I posted this in the wrong forum

  • Launch image for iPhone 5 with Flash CS6

    How do I add the required iPhone 5, 4 inch screen launch images to my build using Flash CS6. I have targeted Air 3.8 beta and there is no support for bundling the necessary images. Do I need to edit the plist or app descriptor xml file or something? Do Adobe plan to accommodate these new Apple requirments in a future version of CS6 or AIR SDK?
    Up until now I have had no problems submitting binaries to the Appstore, but as of May 1st Apple reject any binaries that are not optimized for the 4 inch screen of the iPhone 5.
    Thanks.

    Hi,
    Thanks for your effort!!!Did exactly the same, but no result.I changed the version number in Flash in the airsettings to 2.1, and also tried (1.1, 2.1. 1.0.1)After that, put another version ready to upload. Select this version in the apploader.And than it tells me: This bundle is invalid. The value for key cfkbunleversion in the info.plist file must contain a higher version than that of the previously uploaded version.
    I do not want to update my app, but only the screens you see when buying the app in de store.And also the name of the developer. I changed my apple id from [email protected] into [email protected] thought if I run an update, the apple-id of the app will change.
    (I am not sure).
    Hope to hear from you.
    Newspaper want a interview because it's a creative app from the city, now I hope it will work in time...App name is: jabenjibbe
    Kind regards,Christa.
    Date: Sun, 4 Aug 2013 20:56:45 -0700
    From: [email protected]
    To: [email protected]
    Subject: Launch image for iPhone 5 with Flash CS6
        Re: Launch image for iPhone 5 with Flash CS6
        created by gdfsdrghdhdfhrthfghgfhgth in Flash Pro CC - General - View the full discussion
    Hey Christa,
    I'm not entirely sure what process you've gone through, but as far as uploading an update goes, it's much like uploading your original app.  You need to go to iTunes Connect first and log in, go to "Manage Your Apps" and then click on the app you want to upload an update for.  There'll be an option on the next page that says "Add a version".  You then enter the information that you need to for the updated app and click on "Save".  You'll then have the button you need to click on that says something like "Ready to Upload Binary" or something similar.
    Once you click on that, you need to open up Application Loader and then upload your updated app through that.  If you've entered the correct information in the steps above, you should be able to choose the new version number for your app from a list.  You then just submit it like you did originally.
    After that, you simply have to wait.  It's not instantaneous.  Submitting an update is much the same as when you submit an app for the first time.  It has to go through the whole review and approval process all over again.  So when you go back to iTunes Connect, you'll see for the app you've updated, there'll be a green light for the older version that's approved and currently on the App Store and an orange light for the update that's waiting approval.  Once the update has been successful, it will automatically replace the older version (if you chose that option earlier) and then you will only have the one green light, for the most recent version, on iTunes Connect and then people who have downloaded the app previously will get the Update alert in the App Store on their phone/device letting them know that there are updates available. 
    For me, the update process was reasonably quick.  It took anywhere between 3 and 5 days before the update became active on the App Store.  Hope this helps.
    Cheers,
    Hally
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5566190#5566190
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5566190#5566190
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5566190#5566190. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Flash Pro CC - General by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Use flash template for your Facebook Fan Page

    Because Facebook has changed many of their apps and pages, we must learn new methods of how to install a Facebook fanpage.
      Please click here online view PDF help , if your browser support:
      http://down.activetofocus.com/facebook/install_facebook_fan_template2.0.pdf
      You also can down the .zip file with the help pdf:
      http://down.activetofocus.com/facebook/install_facebook_fan_template2.0.zip
    Source From activetofocus team (activetofocus.com) , Thanks.

    I am interested in finding out if the text document that the Flash template uses can be modified.  These Flash templates always use a conventional text file that you can alter using Wordpad or similar.  There are references to variables such as &Name1=YourCompanyName.  You are simply supposed to go in and change the value of the company name and save the text file.  When you open the associated HTML in a browser the changes are evident.  I am not sure how this actually works?  The key is that normal folks with no Flash experience are supposed to be able to make a website from a template without using Flash software.  I made a change to the above code as follows:
    &Name1=<font face="trajan pro" color="black" size="60">Body Das</font>
    I have experimentsed with this and it accepts the font color and the font size but I never am able to get the actual font to work.  It shows up blank when I preview the HTML in a browser.  Again, not sure if there is a different font or styles tag that I could be using with the text document?

  • Help in making this GUI without using IDE (snapshot attached)

    [Layout image| [https://rapidshare.com/files/2954811682/layout.JPG]]
    hi, i am new java swing library and i want to create a layout just like a image posted above without using IDE.
    i need some idea/help regarding two issues which i m facing at the moment one how to set the size of the button and how im suppose to set the alignment of labels,textboxes and buttons according to the image here is the source code below :
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Font;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JCheckBox;
    import javax.swing.JComboBox;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JPasswordField;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.border.TitledBorder;
    public class Form extends JFrame {
    private JLabel lblUserName;
    private JLabel lblNewPassword;
    private JTextField txtUserName;
    private JPasswordField txtNewPassword;
    private JButton btnLogin;
    private JButton btnClear;
    private JPanel mainPanel;
    private JPanel centerPanel;
    public Form() {
    // initialize the components
    initComponents();
         // add the components
    addComponents();
         // add the listeners
    //addListeners();
    // display components
    displayComponents();
    private void initComponents() {
    getContentPane().setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10));
    mainPanel = new JPanel(new BorderLayout());
    centerPanel = new JPanel(new GridLayout(3, 4, 20, 5));
    lblUserName = new JLabel("Username : ");
    lblNewPassword = new JLabel("password : ");
    txtUserName = new JTextField(15);
    txtNewPassword = new JPasswordField(15);
    btnLogin = new JButton("Login");
    btnLogin.setPreferredSize(new Dimension(2,2));
    btnClear = new JButton("Clear");
    btnClear.setPreferredSize(new Dimension(2,2));
    private void addComponents() {
    centerPanel.add(lblUserName);
    centerPanel.add(txtUserName);
    centerPanel.add(new JLabel(""));
    centerPanel.add(lblNewPassword);
    centerPanel.add(txtNewPassword);
    centerPanel.add(new JLabel(""));
    centerPanel.add(new JLabel(""));
    centerPanel.add(btnLogin);
    centerPanel.add(btnClear);
    Font titleFont = new Font("San Serif",Font.PLAIN,12);
    Color titleColor = Color.blue;
    mainPanel.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Admin Login",TitledBorder.DEFAULT_JUSTIFICATION,TitledBorder.DEFAULT_POSITION,titleFont,titleColor));
    mainPanel.add(centerPanel, BorderLayout.CENTER);
    getContentPane().add(mainPanel);
    private void displayComponents() {
    setTitle("Form");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(600, 200);
    setVisible(true);
    public void actionPerformed_BtnUpdate(ActionEvent e) {
    JOptionPane.showMessageDialog(this, "Your profile has been updated successfully.");
    public void actionPerformed_BtnBrowse(ActionEvent e) {
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.showOpenDialog(this);
    public static void main(String[] args) {
    try {
    Form myForm = new Form();
         catch (Exception exception) {
    System.err.println("ERROR - " + exception.getMessage());
    Edited by: 932179 on May 4, 2012 1:30 PM
    Edited by: 932179 on May 4, 2012 1:30 PM

    Welcome to the forum.
    Take the list of +"All Known Implementing Classes"+ from here http://docs.oracle.com/javase/7/docs/api/java/awt/LayoutManager.html and find out what combination best fits your needs.
    I usually have some nested BorderLayouts and GridLayouts.
    When I need lables and input fields aligned I use GroupLayout (which I personally prefer over GridBagLayout...).
    Anyway, you may have got better answers if you postet this in the right place:
    Swing
    bye
    TPD

  • How to align OS between disks and flash on WAVE-574 without use Rescue CD

    The version OS installed on flash of WAVE-574 (4.4.5c.b4) mismatch.
    I don't know Why and How the version on disk is it different, is it possible after one disk replacement?
    Is it possible to align OS on WAVE-574 between flash and disks without using Rescue CD?
    WAVE-574#sh flash
    WAAS software version (disk-based code): WAAS-4.3.3-b14
    System image on flash:
    Version: 4.4.5c.b4
    System flash directory:
    System image: 201 sectors
    Bootloader, rescue image, and other reserved areas: 41 sectors
    256 sectors total, 14 sectors free.
    Thanks a lot for your help!

    John,
    You are missing the flash device which stores the sysimg.
    FLASH: not found
    FLASHDEV: (null)
    Try opening the device and re-seating the flash card reader and flash card, sometimes they can get knocked loose during shipping.
    Otherwise, you will need to contact TAC to get an RMA processed.
    Regards,
    Mike

  • Using flash to display images from sql server or file system

    hello,
    what methods and parameters of the urlloader class we have to use to display images in a flash player if possible..
    also movie should update everytime a new image is added to a database or file
    the images can either be in a file system or in a sql database (if possible)
    does flash comes with an object of this type or we have to create it.
    regards,

    i responded to your duplicate message 4 days ago:
    is it possible to insert and retrieve images from sql server using actionscript.
    you'll need server-side script to query your database and you can use the flash urlloader class to call your script.
    also  is it possible to create a flash scrolling gallery based on images  stored in a database and everytime an image is added it is displayed in  the gallery.
    load the data using the urlloader class and  then load the images.  periodically query the database for new images if  there's no direct way for flash to know a new image was added.

  • Frequent (inevitable?) crashes while USING the product (latest FF prod rel.) normal (even without Adobe Flash disabled)?

    Hi,
    I am quite happy with the way FF is more advanced than Chrome while handling >1 windows with >1 tabs open in. However, I am looking for (more) stability. Please note that I have opted to not use flash with this (always latest prod rel) browser and if I need to view a flash site, I use other browsers. However, while this helps with CPU usage and memory utilisation, the browser still ends up crashing even with no special plugins/extensions (bare minimum) installed (aside from vanilla/defaults):
    Submitted Crash Reports
    Report ID Date Submitted
    bp-1d1e0e04-9b4a-44b8-a184-562f02150417 4/17/2015 4:48 PM
    bp-05f8e5c4-a1af-4047-b4d1-a036d2150415 4/15/2015 7:23 AM
    bp-c8eadb8c-6fbb-45e7-9bfe-c762c2150414 4/14/2015 7:45 PM
    bp-a459da76-388f-44aa-b2fa-a1ebe2150409 4/9/2015 4:59 PM
    bp-bb5c6f0e-1b3e-4f17-913f-e55d82150417 3/21/2015 1:32 PM
    bp-d46bb67c-8ec7-424c-a6d9-ae8a92150321 3/21/2015 1:32 PM
    bp-609096f7-f582-491f-a435-c95072150317 3/17/2015 6:52 PM
    bp-cad2f8e5-cc7f-4ddb-9f84-519182150317 3/17/2015 1:51 PM
    bp-e6f488cc-71b0-47d3-ae8d-23d2c2150317 3/17/2015 12:41 PM
    bp-90e81406-5e29-4d5a-a143-5fc8a2150309 3/9/2015 3:54 AM
    bp-0d5d9287-1a28-48ac-88ec-4456a2150309 3/9/2015 3:41 AM
    bp-40cb93c1-ab6c-471c-83a2-73ce82150217 2/17/2015 8:04 PM
    bp-d843115c-5372-4e48-b721-e3c2b2150209 2/9/2015 5:38 PM
    bp-0aae5a69-caf3-44e4-ad8f-3749448386b8 1/19/2015 4:19 PM
    bp-05842690-5263-4bfa-a6ee-702892141228 12/28/2014 10:26 PM
    bp-a9dfe93d-1c81-45a4-9f86-c58a62141210 12/10/2014 1:36 AM
    bp-027c7e96-e5c1-49a3-a0d2-6b5602141118 11/18/2014 2:10 PM
    bp-84394ec2-afe0-448e-90a1-1a6582141108 11/8/2014 5:55 PM
    bp-f7062649-9b6b-4a01-aed5-fe89f8641b4a 10/31/2014 4:07 PM
    bp-2829a562-d08c-4b75-af59-2226d2141015 10/15/2014 9:08 PM
    bp-ef2d6c83-7295-491f-ac43-e111b2141011 10/11/2014 10:58 PM
    Could anyone help me out with this please?
    Much appreciated/great product!

    The 3 latest crash reports are somewhat diverse and I don't think point to one single problem:
    * Problem rendering canvas drawing, possible display driver incompatibility
    * Out of memory error with many possible causes
    * Out of memory in image decoding
    Could you try disabling Firefox from using hardware acceleration? New versions of Firefox sometimes become incompatible with existing graphics card/chipset driver software that wasn't used by enough testers to pick up the problem.
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    This takes effect the next time you exit Firefox and start it up again. Any difference?
    Since hardware acceleration improves the appearance of fonts and animations, you may want to check your computer manufacturer's website to see whether any graphics card/chipset driver updates are available for your system. Or maybe with Windows 10 you are limited to drivers from Microsoft??

  • How to watch flash based videos without adobe flash installed using Safari

    How do I watch flash based videos without adobe flash installed using Safari?

    Once you have Chrome installed, activate the Develop menu in Safari (go to Safari Preferences > Advanced > Show Develop Menu). You then will see under the Develop menu the Open Page With option and Chrome will be listed there.
    So each time you open a page with Safari requiring Flash, you use that menu option to open the same page in Chrome.

  • Any way to open new browser window without using image maps?

    Is there any way to open new browser window without using image maps? My code works fine in Firefox, but not in IE. There are 2 problems in IE: 1st is that the thumbnail images move up within their own borders & 2nd that when you click on an image it does open up a new browser window, but also redirects to the index page (in this case it's just a placeholder index page - the new one I've called index_new.html for the time being).
    Here is the link:
    http://www.susieharperdesigns.com/gallery_beads.html
    Any help is greatly appreciated.

    Your missing a value on the HREF.  In your code you have this:
    <area shape="rect" coords="-24,-9,106,144" href=" " onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    and it should be this:
    <area shape="rect" coords="-24,-9,106,144" href="javascript:void()" onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    If you fix the code on all your beads, it should work.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Embed flash file without using IFrame UI

    Hi all,
    Can any one tell me how i can embed flash file without using IFrame UI ?

    Hi
    To run a flash file you will definetely need a platform for which you need a shockwave player or a simple browser window. From webdynpro, the purpose of making it run through a IFrame is at runtime, the frame acts as a window for the flash file to run. Hence its the direct option of running it. Otherwise, you need to use a external window to invoke it seperetely in a browser window to run the file.
    If you have any specific issues, do let us know, or else its the best option @!
    thanks
    sathya

  • How to add byte[] array based Image to the SQL Server without using parameter

    how to add byte[] array based Image to the SQL Server without using parameter.I have a column in table with the type image in sql and i want to add image array to the sql image column like below:
    I want to add image (RESIM) to the procedur like shown above but sql accepts byte[] RESIMI like System.Drowing. I whant that  sql accepts byte [] array like sql  image type
    not using cmd.ParametersAdd() method
    here is Isle() method content

    SQL Server binary constants use a hexadecimal format:
    https://msdn.microsoft.com/en-us/library/ms179899.aspx
    You'll have to build that string from a byte array yourself:
    byte[] bytes = ...
    StringBuilder builder = new StringBuilder("0x", 2 + bytes.Length * 2);
    foreach (var b in bytes)
    builder.Append(b.ToString("X2"));
    string binhex = builder.ToString();
    That said, what you're trying to do - not using parameters - is the wrong thing to do. Not only it is insecure due to the risk of SQL injection but in the case of binary data is also inefficient since these hex strings are larger than the original byte[]
    data.

Maybe you are looking for