search for: flashes

Displaying 20 results from an estimated 5915 matches for "flashes".

Did you mean: slashes
2012 Sep 16
2
flash plugin
How do I get a flash plugin to work with firefox? I thought that I installed it correctly, but I have yet to see any flash videos through firefox. I keep being told that I need an additional plugin. When I folow directions, I'm told I already have it? At least once, I was told I needed to upgrade. In case it helps, here is the output of yum provides '*flash*' | grep -e lash -e dobe
2006 Jan 25
1
Flash CSS issues
I''m have issues in IE6 with my CSS for my flash[:notice] and flash[:error]. My CSS is as follows (basically copied from backpack''s CSS file for testing purposes): #Flash { text-align: left; border: 1px solid #ccc; padding: 5px 5px 5px 30px; font-size: 14px; margin: 0 auto 12px auto; margin-right: 7px; } .login #Flash { margin-top: 12px; font-size:
2006 Jun 01
5
flash not clearing after display
(Rails 1.1, Ruby 1.8.4) In the layout for one of my controllers, I have a tag to display a flash message (copied from AWDWR), like this: <div id="data"> <% if @flash[:notice] -%> <div id="notice"><%= @flash[:notice] %></div> <% end -%> <%= @content_for_layout %> </div> If the
2020 Jan 16
4
Need info on adobe flash player plugin 32 for CentOS7
On 01/16/2020 03:30 PM, Chris Adams wrote: > Once upon a time, Kay Schenk <kay.schenk at gmail.com> said: >> I kept getting messages that my old Flash Player 31 was obsolete so >> I went in search of an update. > Adobe stopped releasing Flash for Linux a while back. IIRC the only > "supported" Flash on Linux is distributed as a part of Google Chrome > (and
2006 Jul 31
2
Testing the flash.now
What''s the best way to test the flash when you use flash#now ? For example, if I set the flash in my controller: flash.now[:notice] = ''This will only show up on this action.'' How do I test it? Normally I would do: assert_equal ''This will only show up on this action.'', flash[:notice] But this doesn''t seem to work with flash.now. Any
2004 Apr 29
2
Flash on X100P does not really flash.
Problem: Flash on X100P does not flash. Phone line has Call Transfer. With this line plugged into a regular phone, it can receive a phone call. Then, depress the hook momentarily, release. Dialtone is now available. Dial a different number. Call is answered. Hook Flash again, now in a three way call. Hang up. The other two parties are still in communication. Now, plug same line into the X100P.
2006 May 02
2
flash not shown
I am using the following code (inspired by one of the books) to check if the user''s session should have timed out. # Check to see if the user has been inactive for longer than the # expiry period. If they have, reset the session. def check_timeout if session[:expires_at] != nil @time_left = (session[:expires_at] - Time.now).to_i unless @time_left > 0
2016 Apr 26
2
Firefox and Flash
On 04/26/2016 12:03 AM, Andreas Benzler wrote: > Hello every one I installed the official > flash plugin from adobe > > About Plugins tells me: > > Datei: libflashplayer.so > Pfad: /usr/lib64/flash-plugin/libflashplayer.so > Version: 11.2.202.577 > Status: Aktiviert (STATE_VULNERABLE_UPDATE_AVAILABLE) > Shockwave Flash 11.2 r202 > > But
2009 Apr 04
3
Having trouble installing flash player on centos 5.3 desktop machine
Hi, I'm having trouble getting the flash player installed onto my centos desktop. When i go to the adobe site, I click on the YUM for Linux version, then install it, and PC says "/tmp/adobe-release-i386-1.0-1.noarch-1.rpm is already installed" - but it's not working. So then tried downloading the .tar.gz for linux version, and PC asks me which program to open to
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
libswfdec/swfdec_as_interpret.c | 3 libswfdec/swfdec_as_strings.c | 14 libswfdec/swfdec_load_object.c | 178 +--- libswfdec/swfdec_load_object.h | 21 libswfdec/swfdec_load_object_as.c | 71 + libswfdec/swfdec_loader.c | 75 +
2013 Aug 29
0
Re: ext3 / ext4 on USB flash drive?
On Thu, Aug 29, 2013 at 12:56:35PM +0100, Mark Ballard wrote: > I think this is really an attempt at user feedback, rather than user > discussion. But there's no such thing as a user-feedback mail list. > > Nevertheless, others may find this pertinent: why doesn't mke2fs > handle USB's competently? And if it does, why doesn't it reassure me > so? And how can I
2011 Aug 28
3
rspec-rails render_views doesn't render layouts? / how to check flash isn't rendered
I''m trying to test that "static" pages (they''re ERB, but get cached), generated through rails, don''t render any stray flash notices left over by the authentication system (Devise) or wherever else. I''ve tried writing this controller spec, but it appears that response.body only renders the template, not its layouts? describe "so that static
2006 Jul 24
2
Flash problem with RoR? missed something?
I have tried to put a flash movie inside of my RoR page and it shows up with nothing on IEPC. It does very well on every other type of browser but does not work with IEPC. I made a folder - "flash" in my public directory and have had the one instance of it point there. Thus my flash directory is www.rails-app.com/flash/flash.swf Is there anything that anyone knows to help out?
2008 Aug 18
3
Problem copying files to flash drive
I had an interesting experience this weekend backing up some flash drives to another flash drive on my CentOS 5.2 home desktop. My son had two 256MB flash drives and one 1GB flash drive that he wanted backed up onto his newer 2GB flash drive. I used rsync to copy the two smaller ones to the big one without any trouble, but when I tried to backup the 1GB files to the 2GB drive, I started getting
2010 Nov 08
3
Flash plugin not working
Hi, I have a fresh install of CentOS 5.5, with a minimal GNOME desktop. I configured RPMForge as third party repo. I updated everything first, then installed flash-plugin. (And yes, I restarted Firefox... :oD). All I see when I try to see some things Flash on the Internet, like Youtube or the likes, I get... nothing. The space remains white. Sometimes a black square will appear, sometimes it
2006 May 02
3
CSS for flash messages
Hello all, I''m perplexed by the following: I''ve implemented flash messages in my application.rhtml with: <% for name in [:notice, :warning, :message] %> <% if flash[name] %> <%= "<p id=\"#{name}\" class=\"flash\">#{flash[name]}</p>" %> <% end %> <% end %> I''ve implemented CSS in
2009 Mar 29
5
Adobe Flash Install Woes
I am having a hell of a time getting adobe flash to work on a recent 5.2 install. >From rpm install: Running firefox as root -- I have verified there is a symlink in /usr/lib/mozilla/plugins that points to the actual plugin located in /usr/lib/flash-plugins nada. SoI then copied the plugin directly into /usr/lib/mozilla/plugins and eliminated the symlink from the equation. nada. I then
2020 Jan 16
2
Need info on adobe flash player plugin 32 for CentOS7
J Martin Rushton via CentOS wrote: > > On 16/01/2020 20:37, Steve Clark wrote: >> On 01/16/2020 03:30 PM, Chris Adams wrote: >>> Once upon a time, Kay Schenk <kay.schenk at gmail.com> said: >>>> I kept getting messages that my old Flash Player 31 was obsolete so >>>> I went in search of an update. >>> Adobe stopped releasing Flash for
2005 Aug 06
3
Macromedia Flash Loading Issues
I''ve discovered something very odd about the way Rails is handling Flash media. I am attempting to load a partial that contains the code for a flash adverstisment for the website. It was working ok when the code was in the page, but once I pulled it out to a partial (so I could use it on other pages) it stopped working. <%= render(:partial =>
2006 Feb 19
2
possible rails -> postgresql bug
Hi I have a problem accessing an array field in a Postgresql database. Here is the table definition. View "neil.flashing_codes" Column | Type | Modifiers -------------+-----------------------+----------- code | character varying(10) | description | text | folds | integer[] | View definition: SELECT