No CS3 .swf  or spry in DW server files

(CS3 newbie...) I'm using CS3 and built a basic index page
with a Dreamweaver template. I have inserted buttons and spry
drop-down menu / jumpmenu and they show up on the local file. The
buttons work fine (change state and links okay) but the jumpmenu
just opens without linking. The problem is the same regardless of
whether I build with template or from blank html page.
On upload, none of the features can be viewed, much less
used. I have followed all threads here and directions by Adobe.
Any help would be great. The test buttons should appear at
the bottom 'under construction' area on the link below. Funny thing
is that my mouseover will prompt my browser into the 'hand link'
icon for cursor.
http://www.suhsd.k12.ca.us/rdrm/

> I wanted to ask all of you for your opinion. I had a
couple of replies.
> But no
> defintive answers. This is my objective: I wanted to
place in one row 6
> small
> images, then have those 6 images rotate to another set
of 6 images. On
> www.blossoms.com near the bottom of the page is exactly
what I am looking
> to
> accomplish. I know Dreamweaver CS cannot do this alone
unless I code it,
> which
> I have no experience with. I believe Fireworks or Flash
CS3 will allow me
> to do
> this job in Dreamweaver CS3.
First, note that those are sets of 6 images. Rather it's just
one image
(with 6 people in it).
So, any 'image rotator' script or SWF that uses the fade
effect you want
should work.
In the case of that site, they are using the jquery library
and,
specifically, the innerfade UI script:
http://medienfreunde.com/lab/innerfade/
The only think Fireworks could really do is make a large
animated GIF.
Fading animated GIFs are huge file-size wise, so that's not
the best option.
Flash could certainly do this as well. You could manually
build a SWF that
fades the images in and out, or use one of the many pre-built
'flash
slideshows' out there to accomplish the same thing.
-Darrel

Similar Messages

  • CS3/CS4 Performance; recommendations for LAN/Server Env ?

    Id like to hear from the admins (or users for that matter) dealing with a significant amount of Adobe CS3/CS4 users, in a LAN/Server environment.
    What are the specs of the machines (PC's) that run it well ?
    Are you using font managers ?
    Are you the users editing files located on the server ?
    Im running all machines well above Adobe spec, Server 03 domain, Gbit Lan, Citrix ASA router.
    The guys here are of course whining about Macs, but they also state that font manager software would help resource usage on the workstations. When the apps launch in the AM, performance is great, as the day wears on, machine performance lags, and PS or Illustrator will eat itself. Event viewer has no other details except for App Hang.  Often times, while trying to save the work back out to the server; but other times just during general use.
    Just wondering of there is something I could be doing to better to help these guys.
    Anyone have thoughts on this ?
    Keith

    How about some details on those machines? CS3 and CS4 are very resource hungry and I've found the best environment is Vista 64 with at 8 gigs of RAM (or more) a fast processor and fast harddrives.
    FWIW, it's not all that unusual to need to restart some of these applications after a lot of use.
    I know it's a pain but it certainly cures a world of ills when things start to slow down.
    BTW, that holds true on the Mac side as well.
    Bob

  • CS3でのswfの読み込み

    CS3のプロジェクトパネルでswfを読み込むと、
    72×72サイズ・1フレームのみ、の何も無い画像になって読み込まれてしまいます。
    AE7.0では読み込めたswfも全て同じ症状です。
    Flash側のパブリッシュ設定も色々いじってみましたが(プレイヤーのバージョン、圧縮を外す等)やはり出来ませんでした。
    一応QuickTimeを6.5に落としてもみましたが駄目でした。
    同じ症状の方いますか?
    また解決方法をご存知の方、宜しくお願いします。
    OS:WindousXP sp2
    CPU:pen4 3G
    メモリ:2G
    VGA:RADEON 9600PRO
    ソフト:AfterEffects CS3 8.0.0.298
        FLASH CS3 PRO 9.0

    VHS-Crew-さん
    >どんなファイルを読み込んでも
    「72×72サイズ・1フレームのみ、の何も無い画像」になってしまうのですか?
    サイズにかかわらず、1フレームのみでも複数フレームでも前述のように表示されてしまいます。
    更に、会社のNEC製デスクトップPC(pen4 3G・512mem・オンボードVGA)にAECS3体験版を入れて試してみましたが、まったく同じ症状が出てしまいました…
    知り合いからノートでも借りてきて再度検証して見ます。

  • Application server file path vaidation

    I have written the code for application server file path validation.
      DATA : l_fname TYPE filename-fileintern." type c.
      DATA : l_filpath TYPE filename-fileintern,
             l_filname(40) TYPE c.
    PARAMETER : p_sucfil LIKE rfpdo-rfbifile OBLIGATORY. " rlgrap-filename
    AT SELECTION-SCREEN ON p_sucfil.
    l_fname = p_sucfil.
    CALL FUNCTION 'FILE_GET_NAME'
      EXPORTING
      CLIENT                        = SY-MANDT
        logical_filename              = l_fname
       OPERATING_SYSTEM              = SY-OPSYS
      PARAMETER_1                   = ' '
      PARAMETER_2                   = ' '
      PARAMETER_3                   = ' '
      USE_PRESENTATION_SERVER       = ' '
       WITH_FILE_EXTENSION           = 'X'
      USE_BUFFER                    = ' '
      ELEMINATE_BLANKS              = 'X'
    IMPORTING
      EMERGENCY_FLAG                =
      FILE_FORMAT                   =
       FILE_NAME                     = l_filpath
    EXCEPTIONS
       FILE_NOT_FOUND                = 1
       OTHERS                        = 2
    IF sy-subrc <> 0.
      message 'Invalid file name' type 'E'.
    ENDIF.
    But always i will get Invalid file name.
    Y is it so.
    pls help me.

    Praveen,
    I have checked ur code and I found that if i give a logical file name from
    tran. FILE under folder 'Logical file name definition, cross client' then ur code works. Pl. check.
    Regards,
    Joy.
    DATA : l_fname TYPE filename-fileintern." type c.
    DATA : l_filpath TYPE filename-fileintern,
    l_filname(40) TYPE c.
    PARAMETER : p_sucfil LIKE rfpdo-rfbifile OBLIGATORY. " rlgrap-filename
    AT SELECTION-SCREEN ON p_sucfil.
      l_fname = p_sucfil.
      CALL FUNCTION 'FILE_GET_NAME'
      EXPORTING
      logical_filename = l_fname
    operating_system = sy-opsys
      with_file_extension = 'X'
      IMPORTING
      file_name = l_filpath
      EXCEPTIONS
      file_not_found = 1
      OTHERS = 2
      IF sy-subrc <> 0.
        MESSAGE 'Invalid file name' TYPE 'E'.
      ENDIF.

  • Validate  application server file

    Hi,
      I have to validate the application server file path on selection screen.
    I am using following code :
    form VALID_APP_FILEPATH   using    p_filpath TYPE FILENAME-FILEINTERN.
      data : l_fname(60).
      CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
          LOGICAL_FILENAME = p_filpath
          OPERATING_SYSTEM = SY-OPSYS
        IMPORTING
          FILE_NAME        = L_FNAME
        EXCEPTIONS
          FILE_NOT_FOUND   = 1
          OTHERS           = 2.
      IF SY-SUBRC ne 0.
          MESSAGE 'Enter the valid file path'(e01) TYPE 'E'.
      ENDIF.
    endform.                    " VALID_APP_FILEPATH
    but if i choose correct file path from F4 help also.
    It displays error message.
    Sy-subrc always equals 1.
    Help me out

    Hi,
    I have implemented the code mentioned by you and am not having any problems even when I use F4 to get the fle name.
    Pls recheck and get back if the error persists.
    Reward if found helpful.
    Warm Regards,
    R Adarsh

  • Login settings will not update local testing server files

    When uploading to web server from local testing server, changing login settings in the control panel does not update the local testing server files. Causing login on website not to function.
    It does however update the Connections file and login wizard form.
    What is the best way to change login settings before uploading site to web server?
    Dan

    Dan - I am having the same exact problem. I'm using the restrict access and user registration and login - when attempting to use the Update Record wizard to allow users to change their password or email address, it doesn't change the record.

  • In FTP server file not storing in proper order when 'FTP_R3_TO_SERVER'

    Dear ,
    when i used FTP_R3_TO_SERVER to download data in FTP server 
    i checked in FTP server  file is not storing in proper order in FTP server . plz help how to get the file in proper order .it urgent . full points must be given. i given code below .
    DATA : BEGIN OF iresult OCCURS 5,
    rec(450),
    END OF iresult ,
    DATA :
    dest LIKE rfcdes-rfcdest VALUE 'SAPFTP',
    compress TYPE c VALUE 'N',
    host(64) TYPE c.
    DATA: hdl TYPE i.
    DATA: BEGIN OF result OCCURS 0,
    line(100) TYPE c,
    END OF result.
    DATA : key TYPE i VALUE 26101957 ,
    dstlen TYPE i,
    blob_length TYPE i.
    host = p_host  .
    DESCRIBE FIELD p_password LENGTH dstlen IN CHARACTER MODE.
    CALL 'AB_RFC_X_SCRAMBLE_STRING'
    ID 'SOURCE' FIELD p_password ID 'KEY' FIELD key
    ID 'SCR' FIELD 'X' ID 'DESTINATION' FIELD p_password
    ID 'DSTLEN' FIELD dstlen.
    CALL FUNCTION 'FTP_CONNECT'
    EXPORTING
    user = p_user
    password = p_password
    host = host
    rfc_destination = dest
    IMPORTING
    handle = hdl
    EXCEPTIONS
    not_connected = 1
    OTHERS = 2.
    IF sy-subrc = 0.
    CONCATENATE 'cd' ftppath INTO ftppath SEPARATED BY space .
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = hdl
    command = ftppath
    TABLES
    data = result
    EXCEPTIONS
    command_error = 1
    tcpip_error = 2.
    IF sy-subrc = 0 .
    CLEAR result .
    REFRESH result .
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = hdl
    command = 'ascii'
    TABLES
    data = result
    EXCEPTIONS
    command_error = 1
    tcpip_error = 2.
    IF sy-subrc = 0 .
    DESCRIBE TABLE iresult LINES lines.
    blob_length = lines * width .
    clear : lines.
    Delete the existing file
    CONCATENATE 'del' ftpfile INTO delfile SEPARATED BY SPACE.
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = hdl
    command = delfile
    TABLES
    data = result
    EXCEPTIONS
    command_error = 1
    tcpip_error = 2.
    *End of deleting the existing file
    CALL FUNCTION 'FTP_R3_TO_SERVER'
    EXPORTING
    handle = hdl
    fname = ftpfile
    blob_length = blob_length
    TABLES
    blob = iresult
    EXCEPTIONS
    TCPIP_ERROR = 1
    COMMAND_ERROR = 2
    DATA_ERROR = 3
    OTHERS = 4.
    IF sy-subrc 0 .
    WRITE 'Error in writing file to ftp' .
    ELSE.
    WRITE 'File downloaded on the ftp server successfully'.
    ENDIF.
    ENDIF.
    ELSE.
    WRITE : 'Path on ftp not found : ' , ftppath .
    ENDIF.
    CALL FUNCTION 'FTP_DISCONNECT'
    EXPORTING
    handle = hdl.
    CALL FUNCTION 'RFC_CONNECTION_CLOSE'
    EXPORTING
    destination = 'SAPFTP'
    EXCEPTIONS
    OTHERS = 1.
    ELSE.
    WRITE 'Could not connect to ftp' .
    ENDIF.
    ENDFORM. " FTPFINANCEACCESS_DOWNLOAD
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF screen-name = 'PASSWORD'.
    screen-invisible = '1'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    Edited by: manoj kv on Feb 27, 2008 12:55 PM
    Edited by: manoj kv on Feb 28, 2008 5:37 AM
    Edited by: manoj kv on Feb 28, 2008 5:39 AM
    Edited by: manoj kv on Mar 5, 2008 2:15 PM
    Edited by: manoj kv on Mar 7, 2008 12:51 PM

    Hello,
    Did you try to put 'X' to the parameter CHARACTER_MODE.
    Hope it will help you
    Olivier

  • How to schedule the background job if report have Presentation server files

    Hi All,
    I have searched the forums and found , the way for the scheduling the background job if report selection screen have the presentation server file input.
    1. Using the Open data set method.
    And my client is not OK with Open dataset way, it there any other way to do this, As we are using the EXCEL file.
    Thanks and Regards,
    Bharani

    Hi,
    As said above it is generally not possible. Since your client most obviously doesn't like graphical background I would recomend storing data as till now, but show it with your own report in more userfriendly way. For example:
    - as ALV Grid
    - in excel with use of OLE either as embedded in SAP or new window (check transaction OLE for example)
    - with use of webdynpro
    BR
    Marcin Cholewczuk

  • Issue with the Maximum lenght string on application server file

    Hi,
    I have one internal table which cotains aroung 200 fields. The total lenght of the all fields is around 2000 charr.
    I am using open data, transfer and close data set to put my file on application server.
    I am looping at my internal table and then transfering the data on server file.
    The problem is that after generating the file on application server i couldnt see all the fields. i can see only around 500 char.
    not all the data.
    Does there is maximum limit on the number of char on application serevr.
    or there is complete record but we cant see,
    kindly help.

    Hi Sachin,
    As Rainer said you cannot see the full length of row in AL11. The visible length is restricted. If you want to re-confirm whether all data are in. Then download the file from application server to your local system and see the contents. It will be to 2000 characters which you passed.
    Hope this helps.

  • How can I access the Server file system without using any signed applet?

    Is it possible for me to run an applet on the client machine such that the client can view my server file system and perform uploading and downloading of files through the applet without signing the applet?

    Add the following in your java.policy file, your plug in accesses.
    grant {
    permission java.permission.AllPermission;

  • Error  while accessing the application server file

    Hello,
    When I try to load the data from CSV file to PSA , I am getting following error message
    "Error  while accessing the application server file"
    "Errors in source system"
    I gave the right file path
    I am not sure about this error message.
    Thanks,

    Hi ram,
    if you have more than one application server running in your BI system (see at transaction SM51) be aware that your infopackage will be executed on the right one. Each application server has its own file system and your job need to run on the server your file is stored on.
    Also check if the os user of the SAP system itself (<sid>adm on Unix) has rights to read that file.
    Bye
    Frank

  • SWF error- while generating the flash files.

    Post Author: [email protected]
    CA Forum: Xcelsius and Live Office
    Hi, in the old forum I came across the folowing topic: SWF error- while generating the flash files.
    As I have the same problem, I would like to know the solution / answer / meaning please. What do I have to change in order to let in function properly again.
    Thanks anyone.
    Femke
    (The post is from 3/6/2007)
    The following error is generated upon generating the flash files Any insight???SWF error- while generating the flash files.--ErrorSWF Function Overflow. The generated SWF will not function correctly because data dependencies go beyond SWF limits.--
    OK -

    Post Author: Andres
    CA Forum: Xcelsius and Live Office
    Hello.
    I'm having the same problem. It appeared after I made use of many cells (a table of 10x200 cells) with formulas inside them.
    Before that, while I was making my tests and only used a few cells and the .XLF file was 4Mb, I had no problem. Now that the .XLF file is 8Mb I see this error appearing (in Spanish):
    "Error
    Desbordamiento de la función SWF. El archivo SWF generado no funcionará correctamente ya que las dependencias de datos superan los límites de SWF."
    Any idea of how this could be resolved (appart from using less data)?
    Thanks in advance.

  • Application Server File

    Hi,
    Could any one please answer my question.
    How to archive application server file?.. What is the function module used for that?.
    And my second question..
    How to scan application directory.. after scanning I must be able to know how many files the source directory contians, and the file properties
    Thank you..

    1 . use CG3Z transaction or use OPEN dATASET statement
    2 . use FM EPS_GET_dIRECTORy_LISTING

  • Application Server : File writes only 255 characters

    Hi Friends,
    I am trying to writes data to application server file .
    My line size is 1100 charqacters.
    When I use open dataset for output in text mode encoding default
    and transfer contents to file.
    I am only able to write contents upto 255 characters.
    Whatever is beyond that I do not see it in AL11.
    Is there a way to write more than 255 characters.
    I tried CG3Y to view files but it also shows only 255 characters.
    Please help.

    Hi,
    Just find the string length.
    In 4.6C version there is a limit of 1500 characters i. e. U can transfer max of 1500 characters in a single transfer. For that we applied below solution. Check this it may help u.
      l_len = strlen( p_data ).
      DO.
        IF l_len LT 1500.
          TRANSFER p_data+l_offset(l_len) TO p_file.
          MOVE 0 TO l_len.
        ELSE.
          TRANSFER p_data+l_offset(1500) TO p_file.
          SUBTRACT 1500 FROM l_len.
          ADD 1500 TO l_offset.
        ENDIF.
        CHECK l_len EQ 0.
        EXIT.
      ENDDO.
    p_data has the content to be trasfered of around 6000 characters and the length is dynamic.
    Also download the data using CG3Y with BIN to .txt file and see.
    If problem is still there then paste ur code of OPEN DATASET, TRANSFER statements.
    Try to open the file in TEXT MODE.
    eg: OPEN DATASET l_file IN TEXT MODE.
    Thanks,
    Vinod.
    Edited by: Vinod Reddy Vemuru on Jul 25, 2008 12:34 PM

  • Application server file lentgh

    Hi,
    I am trying to read an application server file using open dataset in Binary Mode..
    I want to find the file length of the file read.(number of bytes transferred as in the GUI_Download FM parameter Filelength)
    How can i achieve it.
    Appreciate ur ideas.
    Rgds.
    stck

    Hello,
    Use the FM EPS_GET_FILE_ATTRIBUTES passing the file name and the directory name and get the file_size.
    Vikranth

Maybe you are looking for

  • Session Time out in ADF 11g

    Hi All, We have developed an application in ADF 11G and its working fine now , but we have a requirement to include session time out for our application. Can anyone suggest or give a link giving clear information regarding this. Thanks, Karthik

  • Can't view Macintosh HD from Boot Camp

    So I have updated completely on my Boot Camp partition and Mac partition. I am running Mac OS X Lion 10.7.1 and Boot Camp 3.3 with Windows 7 64 bit on a 2011 MacBook Pro 17". Initially, I was getting the BSOD for cache manager, and a disable of the A

  • Trying to focus in on a DateField component

    Has anyone ever had trouble sending keyboard focus to the DateField component? Try this: create a new Flash document and insert a TextInput component named textItem, a DateField component named dateItem and a ComboBox component named ComboItem. Then

  • Apple TV and HD content

    I brought the Apple TV recently and I think it is a fantastic product, works well..but the only disappointment is I can not purchase movies in HD, you can only rent in HD. The Australian Apple site is misleading and suggest selected movies will be in

  • Flash content in local webpages is displayed in small size afther windows 7 update.

    Since the latest update of Windows 7 / IE explorer 10 flash content in local webpages is displayed very small in internet explorer. To see the normal size I have to zoom in till 350 %. This occurs on two different laptops. Both have the most recent u