Need help - flash objects

Hi, I'm beiginner & I'm using dreamweaver 8, in box, where I can crate new flash button, I chose button style, type text and when I push OK pop-up window with error: <"button1.swf" is an invalid filename. Please enter a different name> and there is no matter what kind of filename I write always pop-up this error... what I need to do?

Start by validating your HTML code.  You have numerous code validation errors on line 230 caused by UPPER case tags.  XHTML doc types, need lower case tags.  After you fix your code errors, republish your page.
HTML Validator - http://validator.w3.org
CSS Validator - http://jigsaw.w3.org/css-validator/ 
HTML & CSS Tutorials - http://w3schools.com/
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • Need help FLASH not launching and not uninstalling "licensing for this product has stopped working".

    Need help FLASH not launching and not uninstalling "licensing for this product has stopped working" and " you can only install one adobe product at a time please complete the other installation"  Flash was working absolutely fine before, I have no idea why this happened.

    I am having similar problem.  Can't open any of CS3 programs after trying to download Dreamweaver Trial, which wouldn't work because "couldn't remove DLM extention" error message.  So now I can not run Illustrator, Photoshop, or even Adobe Reader.  These are properly licensed for about a year. I get "License for product has stopped working".  Have 2 pending cases open with Adobe support (one for Dreamweaver trial, one for license problem) since 8/3 with NO ANSWERS - It says answers within 1-3 business days.  Was on phone support hold today for over 3 hours before line went dead with no help.  What is up with adobe support?  Can anyone help?

  • BIOS doesnt recognize SATA connected Hard Drive- need help flashing bios from bootable USB

    hi
    I have an envy laptop running InsydeH20 bios rev f14.
    the bios doesn't recognize the internally connected hdd/ssd.
    I have heard that with insyde bios', sometimes you have to unlock 'secret capabilities' to recognize hardware incl internal hdd.
    but I am just trying to reflash my bios.
    the problem is that I cant get into windows because it doesn't recognize my hard drive and windows doesn't allow insallation to usb connected drives.
    I downloaded the patch from hp.com for my product and it actually has an option for making a bootable USB for use on the actual system, and I did this. the instructions are to just restart my computer with the bootable usb. I have tried Legacy support on and off, neither updates bios.
    I highly doubt it has anything to do with the physical sata connector.
    basically I need to flash my bios from bootable usb. I have done some research about making a bootable dos usb etc etc but I don't know what program to even run and how..
    this is a link to my product:
    http://h10025.www1.hp.com/ewfrf/wc/product?cc=ca&dlc=en&lc=en&os=4132&product=5400031&sw_lang=
    Pleeeeeaaseee someone help!!!!!!!!!!!!!!!!!!
    Thanks!!

    hi
    I need to flash the bios of my system. the bios is not recognizing hardware and cannot boot into windows to run the bios flash for windows.
    on my other comp I ran the bios update patch and chose ' install to bootable usb ' so that I could use it on my system.
    cannot run on my laptop. tried booting from the media. tried allowing 'legacy' compatibility.
    im running insydeH2O rev f14 right now.
    here is a link to my system:
    http://h10025.www1.hp.com/ewfrf/wc/product?cc=ca&dlc=en&lc=en&os=4132&product=5400031&sw_lang=
    thanks to anyone who can help!!!!!!!!!!!!!!

  • Need Help converting objects in a TreeMap to String

    This app counts the number of times a word occurs in a document. I used a HashMap to store the key and value. The I sorted them using TreeMap. Now I need to return the key (String) and value (Integer Object) so they may be print like this -- 'key: value'.
    Example:
    that: 3
    This mean the word 'that' appeared 3 times in the document. Below is my toString() method. TreeMap sorts everything for me but I cant return 'map' because it is not a String. So I iterated through each key and value in the map. But now I dont know how to put all the iterations into 1 String value. I would greatly appreciate any help. Code below.
    Thanks in advance.
    public String toString() {
    Object key = null;
    Object value = null;
    map = new TreeMap(map);
    Set getKeys = map.keySet();
    Iterator iterKeys = getKeys.iterator();
    while (iterKeys.hasNext()) {
    key = (String)iterKeys.next();
    value = map.get(key))
    return; // i need to return a String here
    } // end toString()
    } // end class

    I dont remember posting to the "new Java forum", but I might have. My browser locked up on me so I am not sure what happened. If I did please excuse my double post.
    Are you familar with a way to solve my problem?

  • Need help on object array, please.

    Hello. I'm trying to write a program that stores student id numbers and their names into an array, and then prints them in numerical order. What I did was create an object called DSCC and put it in an array, but I'm having problems. Everytime I run this I get a null pointer exception, here is my code.
    public class Main {
      public Main() {
      public void getStudenInfo(String Number1, String Name, int Number){
        Number1 = JOptionPane.showInputDialog("Enter student number, 999 to quit");
        Number = Integer.parseInt(Number1);
        if(Number != 999){
          Name = JOptionPane.showInputDialog("Enter student name");
      public void putInArray(DSCC ded[], String na, int nu){
          ded[0].studentname = na;
          ded[0].studentnumber = nu;
           System.out.println(ded[0]);
      public void printList(){
      public static void main(String[] args) {
        String name = "";
        String number1 = "";
        int number = 0;
        DSCC[] array = new DSCC[10];
        Main main1 = new Main();
        DSCC d = new DSCC();
         main1.getStudenInfo(number1, name, number);
         while(number != 999){
            main1.putInArray(array, name, number);
            main1.printList();
            main1.getStudenInfo(number1, name, number);
    public class DSCC {
        String studentname;
        String number1;
        int studentnumber;
        public DSCC() {
    }

    There are a couple things i don't get about the code here but let me point out some thing that definately don't work.
    The function getStudentInfo(...) does not change the value of its parameters Number1, Name and Number. You will need to redesign this method to get the entered values. I suggest breaking it up into three functions that return the value that the JOptionPane, like :
    public String getStudentName(){
         return JOptionPane.showInputDialog("Enter Student Name :");
    }And then replace the calls to getStudenInfo() with the three calls.
    Also the array you make is not populated, which is probably the reason for the for the NPE. For example,
    DSCC[] array = new DSCC[10];
    //here come an NullPointerException
    array[0].studentName = "Joe";
    //can't do this... array[0] == null,  studentName does not exist!This happens in your code, though it is split up into different methods. If you trace through you will see that when you call the method putInArray(...) , the array's values are still null. For a fully intialized array, it should be:
    DSCC[] array = new DSCC[10];
    for(int i = 0; i < 10; i++) {
         array[0] = new DSCC();
    array[0].studentName = "Joe";So at some point you need to initialize the values of the array.
    Hope that helps....

  • Need HELP with objects and classes problem (program compiles)

    Alright guys, it is a homework problem but I have definitely put in the work. I believe I have everything right except for the toString method in my Line class. The program compiles and runs but I am not getting the right outcome and I am missing parts. I will post my problems after the code. I will post the assignment (sorry, its long) also. If anyone could help I would appreciate it. It is due on Monday so I am strapped for time.
    Assignment:
    -There are two ways to uniquely determine a line represented by the equation y=ax+b, where a is the slope and b is the yIntercept.
    a)two diffrent points
    b)a point and a slope
    !!!write a program that consists of three classes:
    1)Point class: all data MUST be private
    a)MUST contain the following methods:
    a1)public Point(double x, double y)
    a2)public double x ()
    a3public double y ()
    a4)public String toString () : that returns the point in the format "(x,y)"
    2)Line class: all data MUST be private
    b)MUST contain the following methods:
    b1)public Line (Point point1, Point point2)
    b2)public Line (Point point1, double slope)
    b3)public String toString() : that returns the a text description for the line is y=ax+b format
    3)Point2Line class
    c1)reads the coordinates of a point and a slope and displays the line equation
    c2)reads the coordinates of another point (if the same points, prompt the user to change points) and displays the line equation
    ***I will worry about the user input later, right now I am using set coordinates
    What is expected when the program is ran: example
    please input x coordinate of the 1st point: 5
    please input y coordinate of the 1st point: -4
    please input slope: -2
    the equation of the 1st line is: y = -2.0x+6.0
    please input x coordinate of the 2nd point: 5
    please input y coordinate of the 2nd point: -4
    it needs to be a diffrent point from (5.0,-4.0)
    please input x coordinate of the 2nd point: -1
    please input y coordinate of the 2nd point: 2
    the equation of the 2nd line is: y = -1.0x +1.0
    CODE::
    public class Point{
         private double x = 0;
         private double y = 0;
         public Point(){
         public Point(double x, double y){
              this.x = x;
              this.y = y;
         public double getX(){
              return x;
         public double setX(){
              return this.x;
         public double getY(){
              return y;
         public double setY(){
              return this.y;
         public String toString(){
              return "The point is " + this.x + ", " + this.y;
    public class Line
         private double x = 0;
         private double y = 0;
         private double m = 0;
         private double x2 = 0;
         private double y2 = 0;
         public Line()
         public Line (Point point1, Point point2)
              this.x = point1.getX();
              this.y = point1.getY();
              this.x2 = point2.getX();
              this.y2 = point2.getY();
              this.m = slope(point1, point2);
         public Line (Point point1, double slope)
              this.x = point1.getX();
              this.y = point1.getY();
         public double slope(Point point1, Point point2)//finds slope
              double m1 = (point1.getY() - point2.getY())/(point1.getX() - point2.getX());
              return m1;
         public String toString()
              double temp = this.x- this.x2;
              return this.y + " = " +temp + "" + "(" + this.m + ")" + " " + "+ " + this.y2;
              //y-y1=m(x-x1)
    public class Point2Line
         public static void main(String[]args)
              Point p = new Point(3, -3);
              Point x = new Point(10, 7);
              Line l = new Line(p, x);
              System.out.println(l.toString());
    }My problems:
    I dont have the right outcome due to I don't know how to set up the toString in the Line class.
    I don't know where to put if statements for if the points are the same and you need to prompt the user to put in a different 2nd point
    I don't know where to put in if statements for the special cases such as if the line the user puts in is a horizontal or vertical line (such as x=4.7 or y=3.4)
    Edited by: ta.barber on Apr 20, 2008 9:44 AM
    Edited by: ta.barber on Apr 20, 2008 9:46 AM
    Edited by: ta.barber on Apr 20, 2008 10:04 AM

    Sorry guys, I was just trying to be thorough with the assignment. Its not that if the number is valid, its that you cannot put in the same coordinated twice.
    public class Line
         private double x = 0;
         private double y = 0;
         private double m = 0;
         private double x2 = 0;
         private double y2 = 0;
         public Line()
         public Line (Point point1, Point point2)
              this.x = point1.getX();
              this.y = point1.getY();
              this.x2 = point2.getX();
              this.y2 = point2.getY();
              this.m = slope(point1, point2);
         public Line (Point point1, double slope)
              this.x = point1.getX();
              this.y = point1.getY();
         public double slope(Point point1, Point point2)//finds slope
              double m1 = (point1.getY() - point2.getY())/(point1.getX() - point2.getX());
              return m1;
         public String toString()
              double temp = this.x- this.x2;
              return this.y + " = " +temp + "" + "(" + this.m + ")" + " " + "+ " + this.y2;
              //y-y1=m(x-x1)
    public class Point2Line
         public static void main(String[]args)
              Point p = new Point(3, -3);
              Point x = new Point(10, 7);
              Line l = new Line(p, x);
              System.out.println(l.toString());
    }The problem is in these lines of code.
    public double slope(Point point1, Point point2) //if this method finds the slope than how would i use the the two coordinates plus "m1" to
              double m1 = (point1.getY() - point2.getY())/(point1.getX() - point2.getX());
              return m1;
         public String toString()
              double temp = this.x- this.x2;
              return this.y + " = " +temp + "" + "(" + this.m + ")" + " " + "+ " + this.y2;
              //y-y1=m(x-x1)
         }if slope method finds the slope than how would i use the the two coordinates + "m1" to create a the line in toString?

  • Need help placing objects in JPanel

          public SimpleTab()
                ButtonGroup group = new ButtonGroup();
                group.add(videoandaudio);
                group.add(audioonly);
                group.add(videoonly);
                videoandaudio.setSelected(true);    
                JFrame frame1 = new JFrame("project");
                frame1.setSize(1000, 700);
                JLabel urllabel = new JLabel("URL");
                JLabel songlabel = new JLabel ("Enter Song");
                JLabel artistlabel = new JLabel ("Enter Artist");
                JLabel crop1label = new JLabel ("Start Time");
                JLabel crop2label = new JLabel ("Stop Time");
                url.setColumns(25);
                GridBagLayout gbl;
                GridBagConstraints gbc;
                JEditorPane jep;
                gbl=new GridBagLayout();
                gbc=new GridBagConstraints();
                p.setBounds(0,0,30,600);
                p.setLayout(gbl);
                gbc.gridx=0;
                gbc.gridy=-20;
                gbl.setConstraints(urllabel,gbc);
                gbc.gridx=0;       
                gbc.gridy=0;
                gbc.weightx=0.0;
                gbl.setConstraints(urllabel,gbc);
                p.add(urllabel);
                gbc.gridx=10;
                gbc.gridy=0;
                gbc.weightx=1.0;
                gbl.setConstraints(url,gbc);
                p.add(url);
                gbc.gridx=0;
                gbc.gridy=20;
                gbc.weightx=0.0;
                gbl.setConstraints(artistlabel,gbc);
                p.add(artistlabel);
                gbc.gridx=10;
                gbc.gridy=20;
                gbc.weightx=1.0;
                gbl.setConstraints(artist,gbc);
                p.add(artist,gbc);
                gbc.gridx=0;
                gbc.gridy=40;
                gbc.weightx=0.0;
                gbl.setConstraints(songlabel,gbc);
                p.add(songlabel);
                gbc.gridx=10;
                gbc.gridy=40;
                gbc.weightx=0;
                gbl.setConstraints(song,gbc);
                p.add(song,gbc);
                gbc.gridx=0;
                gbc.gridy=60;
                gbc.weightx=0.0;       
                gbl.setConstraints(crop1label,gbc);
                p.add(crop1label,gbc);
                gbc.gridx=10;
                gbc.gridy=60;
                gbc.weightx=1.0; 
                gbl.setConstraints(crop1,gbc);
                p.add(crop1,gbc);
                gbc.gridx=0;
                gbc.gridy=80;
                gbc.weightx=0.0;
                gbl.setConstraints(crop2label,gbc);
                p.add(crop2label);
                gbc.gridx=10;
                gbc.gridy=80;
                gbc.weightx=1.0;
                gbl.setConstraints(crop2,gbc);
                p.add(crop2,gbc);
                gbc.gridx=0;
                gbc.gridy=110;
                gbc.weightx=0.0;
                jPanel1.setBorder(BorderFactory.createEtchedBorder());
                jPanel1.setBounds(new Rectangle(70, 40, 10, 200));
                gbc.gridy = 0;
                gbl.setConstraints(videoandaudio, gbc);
                jPanel1.add(videoandaudio);
                gbc.gridy = 20;
                gbl.setConstraints(audioonly, gbc);
                jPanel1.add(audioonly);
                gbc.gridy = 40;
                gbl.setConstraints(videoonly, gbc);
                jPanel1.add(videoonly);
                gbc.gridx = 0;
                gbc.gridy = 190;
                gbl.setConstraints(jPanel1, gbc);
                p.add(jPanel1);
                DownloadsTableModel1.addColumn("Video File");
                DownloadsTableModel1.addColumn("Status");
                DownloadsTable.getColumnModel().getColumn(0).setPreferredWidth(200);
                DownloadsTable.getColumnModel().getColumn(1).setPreferredWidth(200);
                DownloadsTable.setColumnSelectionAllowed(false);
                DownloadsTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                DownloadsTable.setDefaultRenderer(Object.class, new DownloadsTableCellRenderer());
                JScrollPane jScrollPane1 = new JScrollPane();           
                jScrollPane1.setBounds(new Rectangle(10, 130, 400, 90));
                jScrollPane1.getViewport().add(DownloadsTable);
                gbc.gridx = 0;
                gbc.gridy = 210;
                gbl.setConstraints(jScrollPane1,gbc);
                p.add(jScrollPane1);
                gbc.gridx=1;
                gbc.gridy=230;
                gbc.weightx=0.0;
                JButton downloadbutton = new JButton();
                downloadbutton.setText("Download");
                gbl.setConstraints(downloadbutton,gbc);
                p.add(downloadbutton);
                JButton pausebutton = new JButton();
                pausebutton.setText("Freeze");
                gbc.gridx = 2;
                gbc.gridy = 230;
                gbl.setConstraints(pausebutton,gbc);
                p.add(pausebutton);
                JButton cancelbutton = new JButton();
                cancelbutton.setText("Cancel");
                gbc.gridx = 3;
                gbc.gridy = 230;
                gbl.setConstraints(cancelbutton, gbc);
                p.add(cancelbutton);
                frame1.add(p);
                frame1.show();
          }[http://www.geocities.com/justinknag/jjjjunit.jpg]
    I need to center the radio buttons, as well as the table. Also, I need to create some space in between everything.

    You know that you can nest JPanels, each with its own layout, you don't have to try to have everything placed in one JPanel that uses a single grand layout manager. I recommend that you read the Sun tutorial on layout managers, and try playing with them til you figure out what will work best. As it is all I see is an attempt to dump everything in one panel with GridBagLayout.
    Also, you would do well to clean up the code, to refactor it into several methods, otherwise it will become a spaghetti code mess.
    Good luck!
    Edit: Here's what I got when I did this:
    [flickr pic|http://farm4.static.flickr.com/3155/2906451640_8deedd7aa3_o.jpg]
    I used
    BoxLayout over-all for the main panel
    A combination of BorderLayout and GridLayout for the top panel
    gridlayout for the next radiobutton panel
    jscrollpane for the jtable
    and gridlayout for the buttons
    I avoided GridBagLayout, because I truly despise it.
    YMMV of course.
    Edited by: Encephalopathic on Oct 1, 2008 7:35 PM

  • Need help in Object-Relational Mapping

    I'm writing a simple two-tiered business application with Swing application on the client side and a DBMS on the server side. To make my client code more maintainable, I decided to create Business Objects instead of having my client accessing the database directly via SQL. For simplicity, I'm not using any features from the J2EE framework, and the Business Objects will be hosted on the client side, with one-to-one mapping to tables in the database. Since this is my first attempt in Object-Relational Mapping, I'm faced with the following problems:
    1. What kind of methods are appropriate for business objects? For example, if I have a Machine and Employee entity. A Machine is owned by an employee, and this is represented in the DB by storing the employee ID (not the name) as a foreign key in the Machine table. Let's say in the user interface I have a table that needs to display the list of Machines, but instead of displaying the owner employee's ID, I want to display the owner employee's name by doing a join select. Should the findMachines() method always perform a join select to get owner's name and store it in the Machine object which is returned, or should findMachines() simply return the owner's ID so the UI will need to make another SQL call (through the Employee object) to get the employee's name? The latter is more elegant, but would it be horribly inefficient if there are lots of machines to be displayed (and for each machine we make a separate select call to get the owner's name).

    Business objects should be separate from how they're persisted.
    When you say object-relational mapping, do you mean a tool like Hibernate? Or are you writing your own persistence layer using JDBC and SQL?
    I'd recommend that you read about the Data Access Object pattern and keep the persistence code out of the business objects themselves:
    http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html
    url=http://www-106.ibm.com/developerworks/java/library/j-dao/

  • CAF-GP: Need help restoring objects from trash

    Hi All,
    I've accidentally deleted a whole lot of development objects from GP Design Time (most of them from Life and Work Events - US folder), unaware of copying as copies and references. I spent hours restoring almost all of them to their original folders except for a few.
    Could someone please help me identify, with the help of a reference portal, the original location of the following objects - as to where they belong in Public Folders?
    Please find a screenshot of my trash here.
    http://www.sendspace.com/file/omdo3o
    I greatly appreciate any help. Please let me know if more info is required.
    Cheers,
    Rajit

    I could restore most of the objects to their locations except some of them I believe to be copies.

  • Need help regarding Objects ...

    hi All,
    I am new in SAP so kinda struggling however i've been learning alot with your posts & replies.. hope my query will help someone else too. My issue is
    I've created an Object class using SU21, say name of the object class: Z_12 & in that i've created an object called Z_Test. Now i wanna know how do i put transactions in this particular Object.
    Eagerly waiting for ur response !!
    regards,
    Manji

    Hi Sham,
    Transaction can be secured in two ways.
    --> using the default s_tcode check
    --> By assigning an auth.object to the transaction.
    Goto Se93--> enter the transaction code and click on the change button and assign the auth.object in the auth.object field.
    Regards,
    Ashok

  • Need help flash cs3

    Hi all,
    I have a very basic 5 rotating images with a simple script to link to a company website when a person click on the pictures.
    My question is when i have uploaded it onto my website it works for a few days perfectly, then all i get is a white blank square where the flash ad should be. I have to rename the .swf file then upload it again and it works fine again for a few days.
    I have other flash ads on my website and they all work fine except for this one. I cant keep changing it every few days as it is driving me crazy.
    Any help would be greatly appreciated.
    Thanks
    Ken

    By the way if you read pc magazines norton internet security
    came 2nd last in the detetion rate! (Luckily for me it came with a
    6month trial of kasperspy!! No more norton for me). All the big
    brands were at the bottom of the list and ill try to take a pic of
    it. So there MIGHT be a virus, who knows?

  • Need Help, Flash Froze

    Flash is frozen, not responding and I was a few hours into
    making something, is there any way to either unfreeze it or does
    flash have a recovery system or anything?

    Have you not saved in hours? You should save every 15 minutes
    at the absolute longest, in case your computer crashes on you.
    The only way to unfreeze Flash is to wait it out. You can go
    into your task manager and turn off unnecessary tasks with the hope
    that the entire system doesn't crash, and that Flash will finish
    whatever it needed and unfreeze, or you can just wait. After a
    time, though, you are better off just forcing it to close, and
    eating the lost work.
    Flash does not have a recovery system, to my knowledge, and
    it is something that they have needed to add for several
    versions.

  • Need help on object type(complex)

    Hi All,
    i have an object type account_t as
    create type account_t as object (accountnumber number(30),
    holdername varchar2(20),
    currentamount number(20),
    minimalamount number(20),
    status varchar2(10),
    member procedure setcurrentamount(v_amount number),
    member function getcurrentamount return number,
    member procedure setstatus(v_status boolean),
    member function getstatus return varchar2,
    member procedure setholdername(v_holdername varchar2),
    member function getholdername return varchar2);
    i create another type accountmanager_t as
    create type accountmanager_t as object (
    depositamount number(30),
    withdrawalamount number(30),
    v_accountt account_t,
    member function deposit(d_accountt account_t,d_transno number default 1) return account_t,
    member function withdraw(w_accountt account_t,w_transno number default 2) return account_t);
    Accountmanager_t body as :
    create or replace type body accountmanager_t as
    member function deposit(d_accountt account_t,d_transno number default 1) return account_t as
    begin
    return self.amount+self.depositamount;
    end deposit;
    member function withdraw(w_accountt account_t,w_transno number default 2) return account_t as
    begin
    if self.status='OPEN' then
    if (currentamount-self.withdrawalamount) < minimalamount then
    if (currentamount-self.withdrawalamount) <> 0 then
    status:='CLOSED';
    return self.currentamount-self.withdrawalamount;
    end if;
    end if;
    myprint('No Sufficient funds for Withdrawal');
    return self.currentamount;
    end if;
    myprint('No withdrawal for closed account');
    return self.currentamount;
    end withdraw;
    end;
    i get the errors as :
    4/3 PL/SQL: Statement ignored
    4/15 PLS-00302: component 'AMOUNT' must be declared
    8/3 PL/SQL: Statement ignored
    8/11 PLS-00302: component 'STATUS' must be declared
    19/3 PL/SQL: Statement ignored
    19/15 PLS-00302: component 'CURRENTAMOUNT' must be declared
    SQL>
    How to pass the values of these variables from account_t type to accountmanager_t type?
    Any help??
    Regards,
    s.

    return self.amount+self.depositamount;I counld not find any amount field in your type definitions
    if self.status='OPEN' thenIs it w_accountt.status ?? since there is no status field in accountmanager_t type
    return self.currentamount-self.withdrawalamount;same comments for currentamount
    member function deposit(d_accountt account_t,d_transno number default 1) return account_t asWhere as your return expression is a number??

  • Still need help - Anchoring Objects

    I posted earlier and thought that my problem is fixed but it isn't. This time I have a screen shot so that you can see the problem better.
    Here is what it looks like when I anchor this photo to the text below it! I'm not exactly sure whether it has to do with word wrap or anchoring. I tried making the text box smaller but it doesn't help! If I anchor it to the text above it then it will pull the object into mid air!
    Does anyone use Anchored objects or is it more hassel than it's worth?
    Thank you for your help!

    Here's some new screen shots in helping explain my delema. I'm wanting to anchor this object to the paragraph below it, but when I do that it brings a line of text up behind/above the object.
    Then I anchored the object to the paragraph below it. You can see the text on the below picture moved up above the image when I anchored it! I don't want that text up there. When I try shrinking the text box, it just moves the image down with it.
    I'm wondering if on object can only be anchored to something above it, and if it isn't anchored to something above it than it brings whatever it's anchored to above the object?
    Thank you for your help!

  • Need help Flashing to MSI's new Bios revsion for the MSI GT70 0NC

    MSI just came out with a new bios revision for the MSI GT70 0NC I was wanting to know which bios revision is for my MSI notebook?

    Hello again my friend, yes it's me again. Here's a screenshot from our last bios flash you helped me out with. Remember I have Windows 8 and still used the MSI flashing tool because I have the older MSI GT70 0NC So I was wanting to know which of the new ones I can obtain and download for my notebook again.

Maybe you are looking for

  • Multiple production clusters on the same network? just change UDP port?

    If I want multiple production clusters on the same network do I just make sure each cluster is on it's own multicast port? or are other changes required? Thanks, Andrew

  • 'yyyy/MM/dd'

    I want to sort my one of the field to this and I am just wondering if this is right 'yyyy/MM/dd' can I do this ? to_char(to_date({BOND.EFFECT_DT}),"yyyy/MM/dd")

  • Is It Possible To Start a Process Flow on Receipt of an Email?

    Hi Does anyone know if you can trigger the start of a process flow once an email has been received? thanks ...

  • Trapcode missing in adobe after effects cs4?

    am using adobe after effects cs4..  i cant find 'trapcode' option in effects what shall i do to use it?

  • Pan Tool

    We  have 2 issues for years. 1. Panning - Why we can not pan canvas without tabing F button ? We want to pan canvas freely on default screen. 2. Color selection - Why we have to insert 3rd party applications for color selection? We want same color se